aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-01-09 16:44:16 -0800
committerBryan Newbold <bnewbold@archive.org>2020-01-09 16:44:19 -0800
commit56d33e58a6c385a4bffb6d27992b6708da55c360 (patch)
treef4077119d1ec3b4fe976aa2e0395ae948d4a3f35
parent38e635105a658850399847aa23a5bd5325b0d616 (diff)
downloadsandcrawler-56d33e58a6c385a4bffb6d27992b6708da55c360.tar.gz
sandcrawler-56d33e58a6c385a4bffb6d27992b6708da55c360.zip
add ingest test file
Forgot to commit earlier!
-rw-r--r--python/tests/test_ingest.py120
1 files changed, 120 insertions, 0 deletions
diff --git a/python/tests/test_ingest.py b/python/tests/test_ingest.py
new file mode 100644
index 0000000..8692b21
--- /dev/null
+++ b/python/tests/test_ingest.py
@@ -0,0 +1,120 @@
+
+import json
+import pytest
+import responses
+
+from sandcrawler import *
+from test_wayback import *
+from test_savepagenow import *
+from test_grobid import REAL_TEI_XML
+
+
+@pytest.fixture
+def ingest_worker(wayback_client, spn_client):
+ grobid_client = GrobidClient(
+ host_url="http://localhost:8070",
+ )
+ worker = IngestFileWorker(
+ wayback_client=wayback_client,
+ spn_client=spn_client,
+ grobid_client=grobid_client,
+ )
+ return worker
+
+@pytest.fixture
+def ingest_worker_pdf(wayback_client_pdf, spn_client):
+ grobid_client = GrobidClient(
+ host_url="http://localhost:8070",
+ )
+ worker = IngestFileWorker(
+ wayback_client=wayback_client_pdf,
+ spn_client=spn_client,
+ grobid_client=grobid_client,
+ )
+ return worker
+
+
+@responses.activate
+def test_ingest_success(ingest_worker_pdf):
+
+ with open('tests/files/dummy.pdf', 'rb') as f:
+ pdf_bytes = f.read()
+
+ request = {
+ 'ingest_type': 'pdf',
+ 'base_url': "http://dummy-host/",
+ }
+ responses.add(responses.POST,
+ 'http://dummy-spnv2/save',
+ status=200,
+ body=json.dumps({"url": TARGET, "job_id": JOB_ID}))
+ responses.add(responses.GET,
+ 'http://dummy-spnv2/save/status/' + JOB_ID,
+ status=200,
+ body=json.dumps(PENDING_BODY))
+ responses.add(responses.GET,
+ 'http://dummy-spnv2/save/status/' + JOB_ID,
+ status=200,
+ body=json.dumps(SUCCESS_BODY))
+ responses.add(responses.GET,
+ 'http://dummy-cdx/cdx',
+ status=200,
+ body=json.dumps(CDX_SPN_HIT))
+ responses.add(responses.GET,
+ 'https://web.archive.org/web/{}id_/{}'.format("20180326070330", TARGET + "/redirect"),
+ status=200,
+ headers={"X-Archive-Src": "liveweb-whatever.warc.gz"},
+ body=pdf_bytes)
+ responses.add(responses.POST,
+ 'http://localhost:8070/api/processFulltextDocument', status=200,
+ body=REAL_TEI_XML, content_type='text/xml')
+
+ resp = ingest_worker_pdf.process(request)
+
+ print(resp)
+ assert resp['hit'] == True
+ assert resp['status'] == "success"
+ assert resp['request'] == request
+ assert resp['file_meta']['size_bytes']
+ assert resp['grobid']
+ assert not 'tei_xml' in resp['grobid']
+ assert resp['terminal']
+
+@responses.activate
+def test_ingest_landing(ingest_worker):
+
+ request = {
+ 'ingest_type': 'pdf',
+ 'base_url': "http://dummy-host/",
+ }
+ responses.add(responses.POST,
+ 'http://dummy-spnv2/save',
+ status=200,
+ body=json.dumps({"url": TARGET, "job_id": JOB_ID}))
+ responses.add(responses.GET,
+ 'http://dummy-spnv2/save/status/' + JOB_ID,
+ status=200,
+ body=json.dumps(PENDING_BODY))
+ responses.add(responses.GET,
+ 'http://dummy-spnv2/save/status/' + JOB_ID,
+ status=200,
+ body=json.dumps(SUCCESS_BODY))
+ responses.add(responses.GET,
+ 'http://dummy-cdx/cdx',
+ status=200,
+ body=json.dumps(CDX_SPN_HIT))
+ responses.add(responses.GET,
+ 'https://web.archive.org/web/{}id_/{}'.format("20180326070330", TARGET + "/redirect"),
+ status=200,
+ headers={"X-Archive-Src": "liveweb-whatever.warc.gz"},
+ body=WARC_BODY)
+
+ resp = ingest_worker.process(request)
+
+ print(resp)
+ assert resp['hit'] == False
+ assert resp['status'] == "wrong-mimetype"
+ assert resp['request'] == request
+ assert 'grobid' not in resp
+ assert resp['terminal']
+