diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-15 21:47:00 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-08-15 21:47:00 -0700 |
commit | 4c11f65f202ef8f71bfd640232ed30ccd6f4c3a4 (patch) | |
tree | cfa76395e59cbcf0c05f5eb79af2e2013f231080 /python/tests/importer.py | |
parent | 18821fcbfa9eb38ee0fb0b065d6642b461fed021 (diff) | |
download | fatcat-4c11f65f202ef8f71bfd640232ed30ccd6f4c3a4.tar.gz fatcat-4c11f65f202ef8f71bfd640232ed30ccd6f4c3a4.zip |
improve handling of invalid identifiers
Diffstat (limited to 'python/tests/importer.py')
-rw-r--r-- | python/tests/importer.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/python/tests/importer.py b/python/tests/importer.py index 190acbed..4d49e794 100644 --- a/python/tests/importer.py +++ b/python/tests/importer.py @@ -13,3 +13,23 @@ def test_issnl_mapping_lookup(): assert fi.issn2issnl('9999-0027') == None assert fi.lookup_issnl('9999-9999') == None + +def test_identifiers(): + + with open('tests/files/ISSN-to-ISSN-L.snip.txt', 'r') as issn_file: + fi = FatcatImporter("http://localhost:9411/v0", issn_file) + + assert fi.is_issnl("1234-5678") == True + assert fi.is_issnl("1234-5678.") == False + assert fi.is_issnl("12345678") == False + assert fi.is_issnl("1-2345678") == False + + assert fi.is_doi("10.1234/56789") == True + assert fi.is_doi("101234/56789") == False + assert fi.is_doi("10.1234_56789") == False + + assert fi.is_orcid("0000-0003-3118-6591") == True + assert fi.is_orcid("0000-00x3-3118-659") == False + assert fi.is_orcid("0000-00033118-659") == False + assert fi.is_orcid("0000-0003-3118-659.") == False + |