diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-29 19:27:35 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-07-30 23:45:30 -0700 |
commit | 69e281deaf601b39e8ef51d603e3e5e16dc71777 (patch) | |
tree | 8e57b02b35b1a87041f607225fae4beba943b450 /python/tests/transform_toml.py | |
parent | 79ebac108ece33e77b53cfd18a370dd728baa702 (diff) | |
download | fatcat-69e281deaf601b39e8ef51d603e3e5e16dc71777.tar.gz fatcat-69e281deaf601b39e8ef51d603e3e5e16dc71777.zip |
basic toml transform helper
Diffstat (limited to 'python/tests/transform_toml.py')
-rw-r--r-- | python/tests/transform_toml.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/python/tests/transform_toml.py b/python/tests/transform_toml.py new file mode 100644 index 00000000..d12ba027 --- /dev/null +++ b/python/tests/transform_toml.py @@ -0,0 +1,22 @@ + +import json + +from fatcat_tools import * +from fatcat_openapi_client import * +from import_crossref import crossref_importer +from fixtures import * + + +def test_basic_toml(crossref_importer): + with open('tests/files/crossref-works.single.json', 'r') as f: + # not a single line + raw = json.loads(f.read()) + r = crossref_importer.parse_record(raw) + r.state = 'active' + toml_str = entity_to_toml(r) + r2 = entity_from_toml(toml_str, ReleaseEntity) + assert r == r2 + + toml_str = entity_to_toml(r, pop_fields=['ident', 'revision', 'blah', 'extra']) + r3 = entity_from_toml(toml_str, ReleaseEntity) + assert r != r3 |