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

import pytest
from fatcat.issn_importer 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)