aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/transform_tests.py
blob: 18522eff1c84403c2bd6b504a7a3dd62423d6679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

import json
import pytest
from fatcat_tools import *

from import_crossref import crossref_importer

def test_elasticsearch_convert(crossref_importer):
    with open('tests/files/crossref-works.single.json', 'r') as f:
        # not a single line
        raw = json.loads(f.read())
        (r, c) = crossref_importer.parse_crossref_dict(raw)
    r.state = 'active'
    release_to_elasticsearch(r)