From 7df8189fe0c234bbf391653e73cd7c122c3a3d4f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 18 Jul 2018 19:05:52 -0700 Subject: fix orcid name parsing And add test --- python/tests/orcid.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'python/tests/orcid.py') 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" -- cgit v1.2.3