All Downloads are FREE. Search and download functionalities are using the official Maven repository.

testcases.ntriples.manifest.ttl Maven / Gradle / Ivy

The newest version!
# N-Triples Syntax tests

@prefix rdf:     .
@prefix rdfs:     .
@prefix mf:  .
@prefix qt:      .

@prefix rdft:    .

<>  rdf:type mf:Manifest ;
    mf:name "N-Triples tests" ;
    mf:entries
    (
    <#nt-syntax-file-01>
    <#nt-syntax-file-02>
    <#nt-syntax-file-03>
    <#nt-syntax-uri-01>
    <#nt-syntax-uri-02>
    <#nt-syntax-uri-03>
    <#nt-syntax-uri-04>
    <#nt-syntax-string-01>
    <#nt-syntax-string-02>
    <#nt-syntax-string-03>
    <#nt-syntax-str-esc-01>
    <#nt-syntax-str-esc-02>
    <#nt-syntax-str-esc-03>
    <#nt-syntax-bnode-01>
    <#nt-syntax-bnode-02>
    <#nt-syntax-bnode-03>
    <#nt-syntax-datatypes-01>
    <#nt-syntax-datatypes-02>
    <#nt-syntax-bad-uri-01>
    <#nt-syntax-bad-uri-02>
    <#nt-syntax-bad-uri-03>
    <#nt-syntax-bad-uri-04>
    <#nt-syntax-bad-uri-05>
    <#nt-syntax-bad-uri-06>
    <#nt-syntax-bad-uri-07>
    <#nt-syntax-bad-uri-08>
    <#nt-syntax-bad-uri-09>
    <#nt-syntax-bad-prefix-01>
    <#nt-syntax-bad-base-01>
    <#nt-syntax-bad-struct-01>
    <#nt-syntax-bad-struct-02>
    <#nt-syntax-bad-lang-01>
    <#nt-syntax-bad-esc-01>
    <#nt-syntax-bad-esc-02>
    <#nt-syntax-bad-esc-03>
    <#nt-syntax-bad-string-01>
    <#nt-syntax-bad-string-02>
    <#nt-syntax-bad-string-03>
    <#nt-syntax-bad-string-04>
    <#nt-syntax-bad-string-05>
    <#nt-syntax-bad-string-06>
    <#nt-syntax-bad-string-07>
    <#nt-syntax-bad-num-01>
    <#nt-syntax-bad-num-02>
    <#nt-syntax-bad-num-03>
    <#nt-syntax-subm-01>
    <#comment_following_triple>
    <#literal>
    <#literal_all_controls>
    <#literal_all_punctuation>
    <#literal_ascii_boundaries>
    <#literal_with_2_dquotes>
    <#literal_with_2_squotes>
    <#literal_with_BACKSPACE>
    <#literal_with_CARRIAGE_RETURN>
    <#literal_with_CHARACTER_TABULATION>
    <#literal_with_dquote>
    <#literal_with_FORM_FEED>
    <#literal_with_LINE_FEED>
    <#literal_with_numeric_escape4>
    <#literal_with_numeric_escape8>
    <#literal_with_REVERSE_SOLIDUS>
    <#literal_with_REVERSE_SOLIDUS2>
    <#literal_with_squote>
    <#literal_with_UTF8_boundaries>
    <#langtagged_string>
    <#lantag_with_subtag>
    <#minimal_whitespace>
    ) .

<#nt-syntax-file-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-file-01" ;
   rdfs:comment "Empty file" ;
   mf:action     ;
   .

<#nt-syntax-file-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-file-02" ;
   rdfs:comment "Only comment" ;
   mf:action     ;
   .

<#nt-syntax-file-03> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-file-03" ;
   rdfs:comment "One comment, one empty line" ;
   mf:action     ;
   .

<#nt-syntax-uri-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-uri-01" ;
   rdfs:comment "Only IRIs" ;
   mf:action     ;
   .

<#nt-syntax-uri-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-uri-02" ;
   rdfs:comment "IRIs with Unicode escape" ;
   mf:action     ;
   .

<#nt-syntax-uri-03> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-uri-03" ;
   rdfs:comment "IRIs with long Unicode escape" ;
   mf:action     ;
   .

<#nt-syntax-uri-04> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-uri-04" ;
   rdfs:comment "Legal IRIs" ;
   mf:action     ;
   .

<#nt-syntax-string-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-string-01" ;
   rdfs:comment "string literal" ;
   mf:action     ;
   .

<#nt-syntax-string-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-string-02" ;
   rdfs:comment "langString literal" ;
   mf:action     ;
   .

<#nt-syntax-string-03> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-string-03" ;
   rdfs:comment "langString literal with region" ;
   mf:action     ;
   .

<#nt-syntax-str-esc-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-str-esc-01" ;
   rdfs:comment "string literal with escaped newline" ;
   mf:action     ;
   .

<#nt-syntax-str-esc-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-str-esc-02" ;
   rdfs:comment "string literal with Unicode escape" ;
   mf:action     ;
   .

<#nt-syntax-str-esc-03> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-str-esc-03" ;
   rdfs:comment "string literal with long Unicode escape" ;
   mf:action     ;
   .

<#nt-syntax-bnode-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-bnode-01" ;
   rdfs:comment "bnode subject" ;
   mf:action     ;
   .

<#nt-syntax-bnode-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-bnode-02" ;
   rdfs:comment "bnode object" ;
   mf:action     ;
   .

<#nt-syntax-bnode-03> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-bnode-03" ;
   rdfs:comment "Blank node labels may start with a digit" ;
   mf:action     ;
   .

<#nt-syntax-datatypes-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-datatypes-01" ;
   rdfs:comment "xsd:byte literal" ;
   mf:action     ;
   .

<#nt-syntax-datatypes-02> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-datatypes-02" ;
   rdfs:comment "integer as xsd:string" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-01" ;
   rdfs:comment "Bad IRI : space (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-02> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-02" ;
   rdfs:comment "Bad IRI : bad escape (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-03> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-03" ;
   rdfs:comment "Bad IRI : bad long escape (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-04> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-04" ;
   rdfs:comment "Bad IRI : character escapes not allowed (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-05> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-05" ;
   rdfs:comment "Bad IRI : character escapes not allowed (2) (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-06> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-06" ;
   rdfs:comment "Bad IRI : relative IRI not allowed in subject (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-07> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-07" ;
   rdfs:comment "Bad IRI : relative IRI not allowed in predicate (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-08> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-08" ;
   rdfs:comment "Bad IRI : relative IRI not allowed in object (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-uri-09> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-uri-09" ;
   rdfs:comment "Bad IRI : relative IRI not allowed in datatype (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-prefix-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-prefix-01" ;
   rdfs:comment "@prefix not allowed in n-triples (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-base-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-base-01" ;
   rdfs:comment "@base not allowed in N-Triples (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-struct-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-struct-01" ;
   rdfs:comment "N-Triples does not have objectList (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-struct-02> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-struct-02" ;
   rdfs:comment "N-Triples does not have predicateObjectList (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-lang-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-lang-01" ;
   rdfs:comment "langString with bad lang (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-esc-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-esc-01" ;
   rdfs:comment "Bad string escape (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-esc-02> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-esc-02" ;
   rdfs:comment "Bad string escape (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-esc-03> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-esc-03" ;
   rdfs:comment "Bad string escape (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-01" ;
   rdfs:comment "mismatching string literal open/close (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-02> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-02" ;
   rdfs:comment "mismatching string literal open/close (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-03> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-03" ;
   rdfs:comment "single quotes (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-04> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-04" ;
   rdfs:comment "long single string literal (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-05> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-05" ;
   rdfs:comment "long double string literal (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-06> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-06" ;
   rdfs:comment "string literal with no end (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-string-07> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-string-07" ;
   rdfs:comment "string literal with no start (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-num-01> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-num-01" ;
   rdfs:comment "no numbers in N-Triples (integer) (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-num-02> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-num-02" ;
   rdfs:comment "no numbers in N-Triples (decimal) (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-bad-num-03> rdf:type rdft:TestNTriplesNegativeSyntax ;
   mf:name    "nt-syntax-bad-num-03" ;
   rdfs:comment "no numbers in N-Triples (float) (negative test)" ;
   mf:action     ;
   .

<#nt-syntax-subm-01> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "nt-syntax-subm-01" ;
   rdfs:comment "Submission test from Original RDF Test Cases" ;
   mf:action     ;
   .

<#comment_following_triple> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "comment_following_triple" ;
   rdfs:comment "Tests comments after a triple" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_ascii_boundaries> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_ascii_boundaries" ;
   rdfs:comment "literal_ascii_boundaries '\\x00\\x26\\x28...'" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_UTF8_boundaries> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_UTF8_boundaries" ;
   rdfs:comment "literal_with_UTF8_boundaries '\\x80\\x7ff\\x800\\xfff...'" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_all_controls> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_all_controls" ;
   rdfs:comment "literal_all_controls '\\x00\\x01\\x02\\x03\\x04...'" ;
   rdft:approval rdft:Approved ;
   mf:action    ;
   .

<#literal_all_punctuation> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_all_punctuation" ;
   rdfs:comment "literal_all_punctuation '!\"#$%&()...'" ;
   rdft:approval rdft:Approved ;
   mf:action     ;
   .

<#literal_with_squote> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_squote" ;
   rdfs:comment "literal with squote \"x'y\"" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_2_squotes> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_2_squotes" ;
   rdfs:comment "literal with 2 squotes \"x''y\"" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal" ;
   rdfs:comment "literal \"\"\"x\"\"\"" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_dquote> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_dquote" ;
   rdfs:comment 'literal with dquote "x\"y"' ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_2_dquotes> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_2_dquotes" ;
   rdfs:comment "literal with 2 squotes \"\"\"a\"\"b\"\"\"" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_REVERSE_SOLIDUS2> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name    "literal_with_REVERSE_SOLIDUS2" ;
   rdfs:comment "REVERSE SOLIDUS at end of literal" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_CHARACTER_TABULATION> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_CHARACTER_TABULATION" ;
   rdfs:comment "literal with CHARACTER TABULATION" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_BACKSPACE> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_BACKSPACE" ;
   rdfs:comment "literal with BACKSPACE" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_LINE_FEED> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_LINE_FEED" ;
   rdfs:comment "literal with LINE FEED" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_CARRIAGE_RETURN> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_CARRIAGE_RETURN" ;
   rdfs:comment "literal with CARRIAGE RETURN" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_FORM_FEED> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_FORM_FEED" ;
   rdfs:comment "literal with FORM FEED" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_REVERSE_SOLIDUS> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_REVERSE_SOLIDUS" ;
   rdfs:comment "literal with REVERSE SOLIDUS" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_numeric_escape4> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_numeric_escape4" ;
   rdfs:comment "literal with numeric escape4 \\u" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#literal_with_numeric_escape8> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "literal_with_numeric_escape8" ;
   rdfs:comment "literal with numeric escape8 \\U" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#langtagged_string> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "langtagged_string" ;
   rdfs:comment "langtagged string \"x\"@en" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#lantag_with_subtag> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "lantag_with_subtag" ;
   rdfs:comment "lantag with subtag \"x\"@en-us" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .

<#minimal_whitespace> rdf:type rdft:TestNTriplesPositiveSyntax ;
   mf:name      "minimal_whitespace" ;
   rdfs:comment "tests absense of whitespace between subject, predicate, object and end-of-statement" ;
   rdft:approval rdft:Proposed ;
   mf:action     ;
   .




© 2015 - 2024 Weber Informatics LLC | Privacy Policy