diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-06-30 18:09:05 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-06-30 18:09:05 +0200 |
commit | 68ce6b089e3405faf0b12cde5e33a67e1cb6e372 (patch) | |
tree | 408dc923a2f4be649736298689aca88247672fa6 /python/tests | |
parent | cc6361e2b87c5ed7af82be8e0c79ddb1f91af1ce (diff) | |
download | fatcat-68ce6b089e3405faf0b12cde5e33a67e1cb6e372.tar.gz fatcat-68ce6b089e3405faf0b12cde5e33a67e1cb6e372.zip |
datacite: improve license mapping
via "missed potential license", refs #58
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/import_datacite.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/tests/import_datacite.py b/python/tests/import_datacite.py index afee06cc..20c1eaf8 100644 --- a/python/tests/import_datacite.py +++ b/python/tests/import_datacite.py @@ -340,6 +340,20 @@ def test_lookup_license_slug(): Case('http://onlinelibrary.wiley.com/termsAndConditions', 'WILEY'), Case('https://publikationen.bibliothek.kit.edu/kitopen-lizenz', 'KIT-OPEN'), Case('http://journals.sagepub.com/page/policies/text-and-data-mining-license', 'SAGE-TDM'), + Case('https://creativecommons.org/publicdomain/mark/1.0/deed.de', 'CC-PUBLICDOMAIN'), + Case('http://creativecommons.org/publicdomain/mark/1.0', 'CC-PUBLICDOMAIN'), + Case('https://creativecommons.org/publicdomain/mark/1.0', 'CC-PUBLICDOMAIN'), + Case('https://creativecommons.org/publicdomain/mark/1.0/', 'CC-PUBLICDOMAIN'), + Case('https://creativecommons.org/publicdomain/mark/1.0/deed.de', 'CC-PUBLICDOMAIN'), + Case('https://creativecommons.org/share-your-work/public-domain/cc0/', 'CC-0'), + Case('http://spdx.org/licenses/CC0-1.0.json', 'CC-0'), + Case('http://spdx.org/licenses/CC-BY-1.0.json', 'CC-BY'), + Case('http://spdx.org/licenses/CC-BY-4.0.json', 'CC-BY'), + Case('http://spdx.org/licenses/CC-BY-NC-4.0.json', 'CC-BY-NC'), + Case('http://spdx.org/licenses/CC-BY-SA-3.0.json', 'CC-BY-SA'), + Case('http://spdx.org/licenses/CC-BY-SA-4.0.json', 'CC-BY-SA'), + Case('http://spdx.org/licenses/MIT.json', 'MIT'), + Case('http://spdx.org/licenses/OGL-Canada-2.0.json', 'OGL-CANADA'), ] for c in cases: |