From af2ffc0cea2d03a86f3ecf6c8dd0bd106a19b851 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 14 Jan 2020 17:15:01 -0800 Subject: tests: don't use localhost as a responses mock host --- python/tests/test_grobid.py | 8 ++++---- python/tests/test_ingest.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'python') diff --git a/python/tests/test_grobid.py b/python/tests/test_grobid.py index 24ea40e..36d90ef 100644 --- a/python/tests/test_grobid.py +++ b/python/tests/test_grobid.py @@ -15,7 +15,7 @@ with open('tests/files/23b29ea36382680716be08fc71aa81bd226e8a85.xml', 'rb') as f @pytest.fixture def grobid_client(): client = GrobidClient( - host_url="http://localhost:8070", + host_url="http://dummy-grobid", ) return client @@ -24,7 +24,7 @@ def test_grobid_503(grobid_client): status = b'{"status": "done broke due to 503"}' responses.add(responses.POST, - 'http://localhost:8070/api/processFulltextDocument', status=503, + 'http://dummy-grobid/api/processFulltextDocument', status=503, body=status) resp = grobid_client.process_fulltext(FAKE_PDF_BYTES) @@ -39,7 +39,7 @@ def test_grobid_503(grobid_client): def test_grobid_success(grobid_client): responses.add(responses.POST, - 'http://localhost:8070/api/processFulltextDocument', status=200, + 'http://dummy-grobid/api/processFulltextDocument', status=200, body=REAL_TEI_XML, content_type='text/xml') resp = grobid_client.process_fulltext(FAKE_PDF_BYTES) @@ -60,7 +60,7 @@ def test_grobid_worker_cdx(grobid_client, wayback_client): worker = GrobidWorker(grobid_client, wayback_client, sink=sink) responses.add(responses.POST, - 'http://localhost:8070/api/processFulltextDocument', status=200, + 'http://dummy-grobid/api/processFulltextDocument', status=200, body=REAL_TEI_XML, content_type='text/xml') with open('tests/files/example.cdx', 'r') as cdx_file: diff --git a/python/tests/test_ingest.py b/python/tests/test_ingest.py index f5599e9..5c2a621 100644 --- a/python/tests/test_ingest.py +++ b/python/tests/test_ingest.py @@ -12,7 +12,7 @@ from test_grobid import REAL_TEI_XML @pytest.fixture def ingest_worker(wayback_client, spn_client): grobid_client = GrobidClient( - host_url="http://localhost:8070", + host_url="http://dummy-grobid", ) worker = IngestFileWorker( wayback_client=wayback_client, @@ -66,7 +66,7 @@ def test_ingest_success(ingest_worker_pdf): headers={"X-Archive-Src": "liveweb-whatever.warc.gz"}, body=pdf_bytes) responses.add(responses.POST, - 'http://localhost:8070/api/processFulltextDocument', status=200, + 'http://dummy-grobid/api/processFulltextDocument', status=200, body=REAL_TEI_XML, content_type='text/xml') resp = ingest_worker_pdf.process(request) -- cgit v1.2.3