aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/import_issn.py
blob: f45747edc802bc36df035a0714fb356c1a5e2b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

import pytest
from fatcat_tools.importers.issn import FatcatIssnImporter


@pytest.fixture(scope="function")
def issn_importer():
    yield FatcatIssnImporter("http://localhost:9411/v0")

# TODO: use API to check that entities actually created...
def test_issn_importer_batch(issn_importer):
    with open('tests/files/journal_extra_metadata.snip.csv', 'r') as f:
        issn_importer.process_csv_batch(f)

def test_issn_importer(issn_importer):
    with open('tests/files/journal_extra_metadata.snip.csv', 'r') as f:
        issn_importer.process_csv_source(f)