diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 11:32:41 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 11:32:41 -0800 |
commit | 279b22e30d9b590838268f5f5acdaa1110ee593a (patch) | |
tree | c9965a089be1b8ef607573ea9261c0c378c0ab47 /python/tests/orcid.py | |
parent | 7ebda2e051b51e49544ab75673b19ec5f27d9d45 (diff) | |
download | fatcat-279b22e30d9b590838268f5f5acdaa1110ee593a.tar.gz fatcat-279b22e30d9b590838268f5f5acdaa1110ee593a.zip |
shuffle around fatcat_tools layout
Diffstat (limited to 'python/tests/orcid.py')
-rw-r--r-- | python/tests/orcid.py | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/python/tests/orcid.py b/python/tests/orcid.py deleted file mode 100644 index f8228cc0..00000000 --- a/python/tests/orcid.py +++ /dev/null @@ -1,37 +0,0 @@ - -import json -import pytest -from fatcat_tools.orcid_importer import FatcatOrcidImporter - - -@pytest.fixture(scope="function") -def orcid_importer(): - yield FatcatOrcidImporter("http://localhost:9411/v0") - -# TODO: use API to check that entities actually created... -def test_orcid_importer_batch(orcid_importer): - with open('tests/files/0000-0001-8254-7103.json', 'r') as f: - orcid_importer.process_batch(f) - -def test_orcid_importer_badid(orcid_importer): - with open('tests/files/0000-0001-8254-710X.json', 'r') as f: - orcid_importer.process_batch(f) - -def test_orcid_importer(orcid_importer): - with open('tests/files/0000-0001-8254-7103.json', 'r') as f: - orcid_importer.process_source(f) - -def test_orcid_importer_x(orcid_importer): - with open('tests/files/0000-0003-3953-765X.json', 'r') as f: - orcid_importer.process_source(f) - c = orcid_importer.api.lookup_creator(orcid="0000-0003-3953-765X") - assert c is not None - -def test_orcid_dict_parse(orcid_importer): - with open('tests/files/0000-0001-8254-7103.json', 'r') as f: - raw = json.loads(f.readline()) - c = orcid_importer.parse_orcid_dict(raw) - assert c.given_name == "Man-Hui" - assert c.surname == "Li" - assert c.display_name == "Man-Hui Li" - assert c.orcid == "0000-0001-8254-7103" |