diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 14:59:38 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-08 14:59:38 -0800 |
commit | 8c930ded07b6a668bc1721ef98312d9259c06b59 (patch) | |
tree | ce31708556d17d7165a64f15d0dac78d881e80bc /python/tests/import_matched.py | |
parent | d1862ea4a6dcb781713ffc54bdc4bd7d7cdbdb9e (diff) | |
download | fatcat-8c930ded07b6a668bc1721ef98312d9259c06b59.tar.gz fatcat-8c930ded07b6a668bc1721ef98312d9259c06b59.zip |
importers and tests all use new api-passing
Diffstat (limited to 'python/tests/import_matched.py')
-rw-r--r-- | python/tests/import_matched.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/python/tests/import_matched.py b/python/tests/import_matched.py index 46a9ef85..080674ac 100644 --- a/python/tests/import_matched.py +++ b/python/tests/import_matched.py @@ -2,11 +2,12 @@ import json import pytest from fatcat_tools.importers import MatchedImporter +from fixtures import api @pytest.fixture(scope="function") -def matched_importer(): - yield MatchedImporter("http://localhost:9411/v0") +def matched_importer(api): + yield MatchedImporter(api) # TODO: use API to check that entities actually created... def test_matched_importer_batch(matched_importer): @@ -17,6 +18,14 @@ def test_matched_importer(matched_importer): with open('tests/files/example_matched.json', 'r') as f: matched_importer.process_source(f) + # fetch most recent editgroup + changes = matched_importer.api.get_changelog(limit=1) + eg = changes[0].editgroup + assert eg.description + assert "file-to-release" in eg.description.lower() + assert eg.extra['git_rev'] + assert "fatcat_tools.MatchedImporter" in eg.extra['agent'] + def test_matched_dict_parse(matched_importer): with open('tests/files/example_matched.json', 'r') as f: raw = json.loads(f.readline()) |