Exemple #1
0
def test_load_turtle(tmpdir):
    tmpfile = tmpdir.join('subjects.ttl')
    tmpfile.write("""
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix yso: <http://www.yso.fi/onto/yso/> .
@prefix owl: <http://www.w3.org/2002/07/owl#>.

yso:p8993
    a skos:Concept ;
    skos:prefLabel "hylyt"@fi, "shipwrecks (objects)"@en, "vrak"@sv ;
    skos:related yso:p8869 .

yso:p9285
    a skos:Concept ;
    owl:deprecated true ;
    skos:broader yso:p4624 ;
    skos:prefLabel "Neolithic period"@en, "neoliittinen kausi"@fi,
        "neolitisk tid"@sv .
    """)

    corpus = SubjectFileSKOS(str(tmpfile), 'fi')
    subjects = list(corpus.subjects)
    assert len(subjects) == 1  # one of the concepts was deprecated
    assert subjects[0].uri == 'http://www.yso.fi/onto/yso/p8993'
    assert subjects[0].label == 'hylyt'
    assert subjects[0].notation is None
Exemple #2
0
def test_load_turtle_with_notation(tmpdir):
    tmpfile = tmpdir.join('subjects.ttl')
    tmpfile.write("""
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix yso: <http://www.yso.fi/onto/yso/> .
@prefix owl: <http://www.w3.org/2002/07/owl#>.

yso:p8993
    a skos:Concept ;
    skos:prefLabel "hylyt"@fi, "shipwrecks (objects)"@en, "vrak"@sv ;
    skos:notation "42.42" ;
    skos:related yso:p8869 .
    """)

    corpus = SubjectFileSKOS(str(tmpfile), 'fi')
    subjects = list(corpus.subjects)
    assert subjects[0].uri == 'http://www.yso.fi/onto/yso/p8993'
    assert subjects[0].label == 'hylyt'
    assert subjects[0].notation == '42.42'
Exemple #3
0
def test_recognize_rdfxml():
    assert SubjectFileSKOS.is_rdf_file('subjects.rdf')
Exemple #4
0
def test_recognize_turtle():
    assert SubjectFileSKOS.is_rdf_file('subjects.ttl')
Exemple #5
0
def test_recognize_noext():
    assert not SubjectFileSKOS.is_rdf_file('subjects')
Exemple #6
0
def test_recognize_tsv():
    assert not SubjectFileSKOS.is_rdf_file('subjects.tsv')
Exemple #7
0
def test_recognize_nt():
    assert SubjectFileSKOS.is_rdf_file('subjects.nt')