Ejemplo n.º 1
0
async def test_send(mock_client):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport
    transport = AsyncioHTTPTransport(urlparse('http://localhost:9999'))

    mock_client.status = 202
    mock_client.headers = {'Location': 'http://example.com/foo'}
    transport.client = mock_client

    url = await transport.send(b'data', {'a': 'b'}, timeout=2)
    assert url == 'http://example.com/foo'
    assert mock_client.args == ('http://localhost:9999', )
    assert mock_client.kwargs == {'headers': {'a': 'b'}, 'data': b'data'}
Ejemplo n.º 2
0
async def test_send_timeout(mock_client):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport
    from elasticapm.transport.base import TransportException

    transport = AsyncioHTTPTransport(urlparse('http://localhost:9999'))

    mock_client.config.server_timeout = 0.1
    transport.client = mock_client

    with pytest.raises(TransportException) as excinfo:
        await transport.send(b'data', {}, timeout=0.0001)
    assert 'Connection to APM Server timed out' in str(excinfo.value)
Ejemplo n.º 3
0
async def test_send(mock_client):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport

    transport = AsyncioHTTPTransport(urlparse("http://localhost:9999"))

    mock_client.status = 202
    mock_client.headers = {"Location": "http://example.com/foo"}
    transport.client = mock_client

    url = await transport.send(b"data", {"a": "b"}, timeout=2)
    assert url == "http://example.com/foo"
    assert mock_client.args == ("http://localhost:9999", )
    assert mock_client.kwargs == {"headers": {"a": "b"}, "data": b"data"}
Ejemplo n.º 4
0
async def test_send_not_found(mock_client):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport
    from elasticapm.transport.base import TransportException

    transport = AsyncioHTTPTransport(urlparse('http://localhost:9999'))

    mock_client.status = 404
    mock_client.headers = {}
    mock_client.body = b'Not Found'
    transport.client = mock_client

    with pytest.raises(TransportException) as excinfo:
        await transport.send(b'data', {}, timeout=2)
    assert 'Not Found' in str(excinfo.value)
    assert excinfo.value.data == b'data'
Ejemplo n.º 5
0
async def test_ssl_verify_disable(httpsserver):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport

    httpsserver.serve_content(code=202, content='', headers={'Location': 'http://example.com/foo'})
    transport = AsyncioHTTPTransport(urlparse(httpsserver.url), verify_server_cert=False)
    url = await transport.send(b'x', {})
    assert url == 'http://example.com/foo'
Ejemplo n.º 6
0
async def test_ssl_verify_fails(httpsserver):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport
    from elasticapm.transport.base import TransportException

    httpsserver.serve_content(code=202, content='', headers={'Location': 'http://example.com/foo'})
    transport = AsyncioHTTPTransport(urlparse(httpsserver.url))
    with pytest.raises(TransportException) as exc_info:
        await transport.send(b'x', {})
    assert 'CERTIFICATE_VERIFY_FAILED' in str(exc_info)
Ejemplo n.º 7
0
async def test_ssl_verify_disable(waiting_httpsserver):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport

    waiting_httpsserver.serve_content(
        code=202, content="", headers={"Location": "http://example.com/foo"})
    transport = AsyncioHTTPTransport(urlparse(waiting_httpsserver.url),
                                     verify_server_cert=False)
    url = await transport.send(b"x", {})
    assert url == "http://example.com/foo"
Ejemplo n.º 8
0
async def test_ssl_verify_fails(waiting_httpsserver):
    from elasticapm.transport.asyncio import AsyncioHTTPTransport
    from elasticapm.transport.base import TransportException

    waiting_httpsserver.serve_content(
        code=202, content="", headers={"Location": "http://example.com/foo"})
    transport = AsyncioHTTPTransport(urlparse(waiting_httpsserver.url))
    with pytest.raises(TransportException) as exc_info:
        await transport.send(b"x", {})
    assert "CERTIFICATE_VERIFY_FAILED" in str(exc_info)