コード例 #1
0
def test_authors_schema():
    schema = LatexSchema()
    record = {
        'control_number': '1',
        'authors': [
            {
                'full_name': 'Castle, Frank',
            },
            {
                'full_name': 'Smith, John',
            },
            {
                'full_name': 'Black, Joe Jr.',
            },
            {
                'full_name': 'Jimmy',
            },
        ],
    }
    expected = [
        'F.~Castle',
        'J.~Smith',
        'J.~Black, Jr.',
        'Jimmy'
    ]
    result = json.loads(schema.dumps(record).data)
    assert expected == result['authors']
コード例 #2
0
def test_publication_info_schema():
    schema = LatexSchema()
    record = {
        'control_number':
        '1',
        'publication_info': [{
            'journal_title': 'Phys.Rev.A',
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'artid': '17920',
            'year': '2014'
        }],
    }
    expected = {
        'journal_title': 'Phys.\\ Rev.\\ A',
        'journal_volume': '58',
        'page_start': '500',
        'page_end': '593',
        'page_range': '500-593',
        'artid': '17920',
        'year': '2014'
    }
    result = json.loads(schema.dumps(record).data)
    assert expected == result['publication_info']
コード例 #3
0
def test_schema_takes_control_number_when_texkeys_not_present():
    schema = LatexSchema()
    record = {
        'control_number': '123456',
    }
    expected = '123456'
    result = json.loads(schema.dumps(record).data)
    assert expected == result['texkeys']
コード例 #4
0
def test_schema_takes_control_number_when_texkeys_not_present():
    schema = LatexSchema()
    record = {
        'control_number': '123456',
    }
    expected = '123456'
    result = json.loads(schema.dumps(record).data)
    assert expected == result['texkeys']
コード例 #5
0
def test_publication_info_does_not_generate_page_range_with_page_end():
    schema = LatexSchema()
    record = {
        'control_number': '1',
        'publication_info': [{
            'journal_title': 'Phys.Rev.A',
            'journal_volume': '58',
            'page_end': '500',
            'artid': '17920',
            'year': '2014'
        }],
    }
    expected = {
        'journal_title': 'Phys.\\ Rev.\\ A',
        'journal_volume': '58',
        'page_end': '500',
        'artid': '17920',
        'year': '2014'
    }
    result = json.loads(schema.dumps(record).data)
    assert expected == result['publication_info']
コード例 #6
0
def test_publication_info_without_journal_title_schema():
    schema = LatexSchema()
    record = {
        'control_number': '1',
        'publication_info': [{
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'artid': '17920',
            'year': '2014'
        }],
    }
    expected = {
        'journal_volume': '58',
        'page_start': '500',
        'page_end': '593',
        'page_range': '500-593',
        'artid': '17920',
        'year': '2014'
    }
    result = json.loads(schema.dumps(record).data)
    assert expected == result['publication_info']
コード例 #7
0
def test_authors_schema():
    schema = LatexSchema()
    record = {
        'control_number':
        '1',
        'authors': [
            {
                'full_name': 'Castle, Frank',
            },
            {
                'full_name': 'Smith, John',
            },
            {
                'full_name': 'Black, Joe Jr.',
            },
            {
                'full_name': 'Jimmy',
            },
        ],
    }
    expected = ['F.~Castle', 'J.~Smith', 'J.~Black, Jr.', 'Jimmy']
    result = json.loads(schema.dumps(record).data)
    assert expected == result['authors']
コード例 #8
0
def test_full_schema():
    TODAY = "19 Dec 1994"
    schema = LatexSchema()
    record = {
        'texkeys': [
            'a123bx'
        ],
        'titles': [
            {
                'title': 'Jessica Jones',
            },
        ],
        'authors': [
            {
                'full_name': 'Castle, Frank',
            },
            {
                'full_name': 'Smith, John',
            },
            {
                'full_name': 'Black, Joe Jr.',
            },
            {
                'full_name': 'Jimmy',
            },
        ],
        'collaborations': [{
            'value': 'LHCb',
        }],
        'dois': [
            {
                'value': '10.1088/1361-6633/aa5514',
            },
        ],
        'arxiv_eprints': [
            {
                'value': '1607.06746',
                'categories': ['hep-th']
            },
        ],
        'publication_info': [{
            'journal_title': 'Phys.Rev.A',
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'artid': '17920',
            'year': '2014'
        }],
        'report_numbers': [{
            'value': 'DESY-17-036'
        }]
    }
    expected = {
        'texkeys': 'a123bx',
        'titles': [
            {
                'title': 'Jessica Jones',
            },
        ],
        'authors': [
            'F.~Castle',
            'J.~Smith',
            'J.~Black, Jr.',
            'Jimmy'
        ],
        'collaborations': [
            'LHCb'
        ],
        'dois': [
            {
                'value': '10.1088/1361-6633/aa5514',
            },
        ],
        'arxiv_eprints': [
            {
                'value': '1607.06746',
                'categories': ['hep-th']
            },
        ],
        'publication_info': {
            'journal_title': 'Phys.\\ Rev.\\ A',
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'page_range': '500-593',
            'artid': '17920',
            'year': '2014'
        },
        'report_numbers': [{
            'value': 'DESY-17-036'
        }],
        'today': TODAY
    }
    result = json.loads(schema.dumps(record).data)
    assert expected == result
コード例 #9
0
def test_full_schema():
    TODAY = "19 Dec 1994"
    schema = LatexSchema()
    record = {
        'texkeys': ['a123bx'],
        'titles': [
            {
                'title': 'Jessica Jones',
            },
        ],
        'authors': [
            {
                'full_name': 'Castle, Frank',
            },
            {
                'full_name': 'Smith, John',
            },
            {
                'full_name': 'Black, Joe Jr.',
            },
            {
                'full_name': 'Jimmy',
            },
        ],
        'collaborations': [{
            'value': 'LHCb',
        }],
        'dois': [
            {
                'value': '10.1088/1361-6633/aa5514',
            },
        ],
        'arxiv_eprints': [
            {
                'value': '1607.06746',
                'categories': ['hep-th']
            },
        ],
        'publication_info': [{
            'journal_title': 'Phys.Rev.A',
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'artid': '17920',
            'year': '2014'
        }],
        'report_numbers': [{
            'value': 'DESY-17-036'
        }]
    }
    expected = {
        'texkeys': 'a123bx',
        'titles': [
            {
                'title': 'Jessica Jones',
            },
        ],
        'authors': ['F.~Castle', 'J.~Smith', 'J.~Black, Jr.', 'Jimmy'],
        'collaborations': ['LHCb'],
        'dois': [
            {
                'value': '10.1088/1361-6633/aa5514',
            },
        ],
        'arxiv_eprints': [
            {
                'value': '1607.06746',
                'categories': ['hep-th']
            },
        ],
        'publication_info': {
            'journal_title': 'Phys.\\ Rev.\\ A',
            'journal_volume': '58',
            'page_start': '500',
            'page_end': '593',
            'page_range': '500-593',
            'artid': '17920',
            'year': '2014'
        },
        'report_numbers': [{
            'value': 'DESY-17-036'
        }],
        'today': TODAY
    }
    result = json.loads(schema.dumps(record).data)
    assert expected == result