aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/orcid.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/orcid.py')
-rw-r--r--python/tests/orcid.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/python/tests/orcid.py b/python/tests/orcid.py
index d0e99cfc..00748972 100644
--- a/python/tests/orcid.py
+++ b/python/tests/orcid.py
@@ -1,4 +1,5 @@
+import json
import pytest
from fatcat.orcid_importer import FatcatOrcidImporter
@@ -15,3 +16,12 @@ def test_orcid_importer_batch(orcid_importer):
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_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"