aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/import_matched.py
blob: 46a9ef852f66a29300ecd2f2ae41e3d831e4a566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

import json
import pytest
from fatcat_tools.importers import MatchedImporter


@pytest.fixture(scope="function")
def matched_importer():
    yield MatchedImporter("http://localhost:9411/v0")

# TODO: use API to check that entities actually created...
def test_matched_importer_batch(matched_importer):
    with open('tests/files/example_matched.json', 'r') as f:
        matched_importer.process_batch(f)

def test_matched_importer(matched_importer):
    with open('tests/files/example_matched.json', 'r') as f:
        matched_importer.process_source(f)

def test_matched_dict_parse(matched_importer):
    with open('tests/files/example_matched.json', 'r') as f:
        raw = json.loads(f.readline())
        f = matched_importer.parse_matched_dict(raw)
        assert f.sha1 == "00242a192acc258bdfdb151943419437f440c313"
        assert f.md5 == "f4de91152c7ab9fdc2a128f962faebff"
        assert f.mimetype == "application/pdf"
        assert f.size == 255629
        assert len(f.urls) == 2
        for u in f.urls:
            if u.rel == "web":
                assert u.url.startswith("http://journals.plos.org")
            if u.rel == "webarchive":
                assert u.url.startswith("https://web.archive.org/")
        assert len(f.release_ids) == 1