gkellogg-reddy 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +2 -0
- data/.gitignore +9 -0
- data/.gitmodules +3 -0
- data/History.txt +66 -0
- data/README.rdoc +107 -0
- data/Rakefile +96 -0
- data/VERSION +1 -0
- data/bin/reddy +59 -0
- data/lib/reddy.rb +62 -0
- data/lib/reddy/bnode.rb +101 -0
- data/lib/reddy/conjunctive_graph.rb +47 -0
- data/lib/reddy/exceptions.rb +11 -0
- data/lib/reddy/graph.rb +327 -0
- data/lib/reddy/literal.rb +340 -0
- data/lib/reddy/n3_grammar.rb +2171 -0
- data/lib/reddy/n3_grammar.treetop +143 -0
- data/lib/reddy/n3parser.rb +151 -0
- data/lib/reddy/namespace.rb +82 -0
- data/lib/reddy/nokogiri_hacks.rb +8 -0
- data/lib/reddy/parser.rb +127 -0
- data/lib/reddy/rdfaparser.rb +398 -0
- data/lib/reddy/rdfxmlparser.rb +529 -0
- data/lib/reddy/store/abstract_store.rb +64 -0
- data/lib/reddy/store/list_store.rb +61 -0
- data/lib/reddy/store/memory_store.rb +349 -0
- data/lib/reddy/string_hacks.rb +108 -0
- data/lib/reddy/triple.rb +144 -0
- data/lib/reddy/uriref.rb +95 -0
- data/script/console +10 -0
- data/spec/bnode_spec.rb +58 -0
- data/spec/conjunctive_graph_spec.rb +59 -0
- data/spec/graph_spec.rb +390 -0
- data/spec/literal_spec.rb +314 -0
- data/spec/matchers.rb +148 -0
- data/spec/n3parser_spec.rb +229 -0
- data/spec/namespaces_spec.rb +66 -0
- data/spec/ntriples/test.nt +78 -0
- data/spec/parser_spec.rb +29 -0
- data/spec/rdfa-triples/0001.nt +1 -0
- data/spec/rdfa-triples/0006.nt +2 -0
- data/spec/rdfa-triples/0007.nt +3 -0
- data/spec/rdfa-triples/0008.nt +1 -0
- data/spec/rdfa-triples/0009.nt +1 -0
- data/spec/rdfa-triples/0010.nt +2 -0
- data/spec/rdfa-triples/0011.nt +3 -0
- data/spec/rdfa-triples/0012.nt +1 -0
- data/spec/rdfa-triples/0013.nt +1 -0
- data/spec/rdfa-triples/0014.nt +1 -0
- data/spec/rdfa-triples/0015.nt +2 -0
- data/spec/rdfa-triples/0017.nt +3 -0
- data/spec/rdfa-triples/0018.nt +1 -0
- data/spec/rdfa-triples/0019.nt +1 -0
- data/spec/rdfa-triples/0020.nt +1 -0
- data/spec/rdfa-triples/0021.nt +1 -0
- data/spec/rdfa-triples/0023.nt +1 -0
- data/spec/rdfa-triples/0025.nt +2 -0
- data/spec/rdfa-triples/0026.nt +1 -0
- data/spec/rdfa-triples/0027.nt +1 -0
- data/spec/rdfa-triples/0029.nt +1 -0
- data/spec/rdfa-triples/0030.nt +1 -0
- data/spec/rdfa-triples/0031.nt +1 -0
- data/spec/rdfa-triples/0032.nt +1 -0
- data/spec/rdfa-triples/0033.nt +2 -0
- data/spec/rdfa-triples/0034.nt +1 -0
- data/spec/rdfa-triples/0035.nt +1 -0
- data/spec/rdfa-triples/0036.nt +1 -0
- data/spec/rdfa-triples/0037.nt +1 -0
- data/spec/rdfa-triples/0038.nt +1 -0
- data/spec/rdfa-triples/0039.nt +1 -0
- data/spec/rdfa-triples/0040.nt +1 -0
- data/spec/rdfa-triples/0041.nt +1 -0
- data/spec/rdfa-triples/0042.nt +0 -0
- data/spec/rdfa-triples/0046.nt +3 -0
- data/spec/rdfa-triples/0047.nt +3 -0
- data/spec/rdfa-triples/0048.nt +3 -0
- data/spec/rdfa-triples/0049.nt +2 -0
- data/spec/rdfa-triples/0050.nt +2 -0
- data/spec/rdfa-triples/0051.nt +2 -0
- data/spec/rdfa-triples/0052.nt +1 -0
- data/spec/rdfa-triples/0053.nt +2 -0
- data/spec/rdfa-triples/0054.nt +2 -0
- data/spec/rdfa-triples/0055.nt +2 -0
- data/spec/rdfa-triples/0056.nt +3 -0
- data/spec/rdfa-triples/0057.nt +4 -0
- data/spec/rdfa-triples/0058.nt +6 -0
- data/spec/rdfa-triples/0059.nt +6 -0
- data/spec/rdfa-triples/0060.nt +2 -0
- data/spec/rdfa-triples/0061.nt +1 -0
- data/spec/rdfa-triples/0062.nt +1 -0
- data/spec/rdfa-triples/0063.nt +1 -0
- data/spec/rdfa-triples/0064.nt +1 -0
- data/spec/rdfa-triples/0065.nt +3 -0
- data/spec/rdfa-triples/0066.nt +1 -0
- data/spec/rdfa-triples/0067.nt +1 -0
- data/spec/rdfa-triples/0068.nt +1 -0
- data/spec/rdfa-triples/0069.nt +1 -0
- data/spec/rdfa-triples/0070.nt +1 -0
- data/spec/rdfa-triples/0071.nt +1 -0
- data/spec/rdfa-triples/0072.nt +1 -0
- data/spec/rdfa-triples/0073.nt +1 -0
- data/spec/rdfa-triples/0074.nt +1 -0
- data/spec/rdfa-triples/0075.nt +1 -0
- data/spec/rdfa-triples/0076.nt +23 -0
- data/spec/rdfa-triples/0077.nt +23 -0
- data/spec/rdfa-triples/0078.nt +6 -0
- data/spec/rdfa-triples/0079.nt +3 -0
- data/spec/rdfa-triples/0080.nt +1 -0
- data/spec/rdfa-triples/0081.nt +6 -0
- data/spec/rdfa-triples/0082.nt +8 -0
- data/spec/rdfa-triples/0083.nt +6 -0
- data/spec/rdfa-triples/0084.nt +8 -0
- data/spec/rdfa-triples/0085.nt +4 -0
- data/spec/rdfa-triples/0086.nt +0 -0
- data/spec/rdfa-triples/0087.nt +23 -0
- data/spec/rdfa-triples/0088.nt +3 -0
- data/spec/rdfa-triples/0089.nt +1 -0
- data/spec/rdfa-triples/0090.nt +1 -0
- data/spec/rdfa-triples/0091.nt +3 -0
- data/spec/rdfa-triples/0092.nt +3 -0
- data/spec/rdfa-triples/0093.nt +2 -0
- data/spec/rdfa-triples/0094.nt +3 -0
- data/spec/rdfa-triples/0099.nt +1 -0
- data/spec/rdfa-triples/0100.nt +3 -0
- data/spec/rdfa-triples/0101.nt +3 -0
- data/spec/rdfa-triples/0102.nt +1 -0
- data/spec/rdfa-triples/0103.nt +1 -0
- data/spec/rdfa-triples/0104.nt +3 -0
- data/spec/rdfa-triples/0105.nt +1 -0
- data/spec/rdfa-triples/0106.nt +1 -0
- data/spec/rdfa-triples/0107.nt +0 -0
- data/spec/rdfa-triples/0108.nt +1 -0
- data/spec/rdfa-triples/0109.nt +1 -0
- data/spec/rdfa-triples/0110.nt +1 -0
- data/spec/rdfa-triples/0111.nt +2 -0
- data/spec/rdfa-triples/0112.nt +1 -0
- data/spec/rdfa-triples/0113.nt +2 -0
- data/spec/rdfa-triples/0114.nt +3 -0
- data/spec/rdfa-triples/0115.nt +4 -0
- data/spec/rdfa-triples/0116.nt +2 -0
- data/spec/rdfa-triples/0117.nt +2 -0
- data/spec/rdfa-triples/0118.nt +1 -0
- data/spec/rdfa-triples/0119.nt +1 -0
- data/spec/rdfa-triples/0120.nt +1 -0
- data/spec/rdfa-triples/0121.nt +2 -0
- data/spec/rdfa-triples/0122.nt +1 -0
- data/spec/rdfa-triples/0123.nt +3 -0
- data/spec/rdfa-triples/0124.nt +4 -0
- data/spec/rdfa-triples/0125.nt +1 -0
- data/spec/rdfa-triples/0126.nt +3 -0
- data/spec/rdfa-triples/1001.nt +6 -0
- data/spec/rdfa_helper.rb +189 -0
- data/spec/rdfa_parser_spec.rb +130 -0
- data/spec/rdfcore/Manifest.rdf +5395 -0
- data/spec/rdfcore/amp-in-url/test001.nt +16 -0
- data/spec/rdfcore/amp-in-url/test001.rdf +40 -0
- data/spec/rdfcore/datatypes-intensional/test001.nt +18 -0
- data/spec/rdfcore/datatypes-intensional/test002.nt +18 -0
- data/spec/rdfcore/datatypes/test001.nt +15 -0
- data/spec/rdfcore/datatypes/test001.rdf +29 -0
- data/spec/rdfcore/datatypes/test002.nt +14 -0
- data/spec/rdfcore/datatypes/test002.rdf +27 -0
- data/spec/rdfcore/datatypes/test002b.nt +17 -0
- data/spec/rdfcore/datatypes/test003a.nt +16 -0
- data/spec/rdfcore/datatypes/test003b.nt +16 -0
- data/spec/rdfcore/datatypes/test005a.nt +16 -0
- data/spec/rdfcore/datatypes/test005b.nt +16 -0
- data/spec/rdfcore/datatypes/test006.nt +17 -0
- data/spec/rdfcore/datatypes/test008a.nt +15 -0
- data/spec/rdfcore/datatypes/test008b.nt +15 -0
- data/spec/rdfcore/datatypes/test009a.nt +15 -0
- data/spec/rdfcore/datatypes/test009b.nt +15 -0
- data/spec/rdfcore/datatypes/test010.nt +17 -0
- data/spec/rdfcore/datatypes/test011a.nt +17 -0
- data/spec/rdfcore/datatypes/test011b.nt +17 -0
- data/spec/rdfcore/horst-01/test001.rdf +38 -0
- data/spec/rdfcore/horst-01/test002.rdf +39 -0
- data/spec/rdfcore/horst-01/test003.rdf +40 -0
- data/spec/rdfcore/horst-01/test004.rdf +42 -0
- data/spec/rdfcore/pfps-10/test001a.nt +14 -0
- data/spec/rdfcore/pfps-10/test001b.nt +15 -0
- data/spec/rdfcore/rdf-charmod-literals/test001.nt +15 -0
- data/spec/rdfcore/rdf-charmod-literals/test001.rdf +34 -0
- data/spec/rdfcore/rdf-charmod-uris/test001.nt +14 -0
- data/spec/rdfcore/rdf-charmod-uris/test001.rdf +34 -0
- data/spec/rdfcore/rdf-charmod-uris/test002.nt +15 -0
- data/spec/rdfcore/rdf-charmod-uris/test002.rdf +33 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf +27 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf +34 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.nt +17 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf +27 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.nt +19 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf +37 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.nt +18 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf +29 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.nt +29 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf +33 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.nt +40 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf +28 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.nt +20 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf +32 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.nt +15 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf +28 -0
- data/spec/rdfcore/rdf-element-not-mandatory/test001.nt +10 -0
- data/spec/rdfcore/rdf-element-not-mandatory/test001.rdf +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.rdf +35 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.rdf +35 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.rdf +34 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.rdf +32 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.rdf +32 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.rdf +38 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.rdf +42 -0
- data/spec/rdfcore/rdfms-abouteach/error001.rdf +35 -0
- data/spec/rdfcore/rdfms-abouteach/error002.rdf +35 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf +25 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf +22 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf +22 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf +22 -0
- data/spec/rdfcore/rdfms-duplicate-member-props/test001.nt +17 -0
- data/spec/rdfcore/rdfms-duplicate-member-props/test001.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error001.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error002.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error003.rdf +39 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test001.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test002.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test002.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test003.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test003.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test004.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test004.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test005.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test005.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test006.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test006.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test007.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test007.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test008.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test008.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test009.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test009.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test010.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test010.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test011.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test011.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test012.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test012.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test013.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test013.rdf +35 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test014.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test014.rdf +34 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test015.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test015.rdf +38 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test016.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test016.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test017.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test017.rdf +38 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test001.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test002.nt +15 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test002.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test003.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test003.rdf +31 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test004.nt +15 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test004.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test005.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test005.rdf +31 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.nt +19 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.nt +15 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.nt +18 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.nt +19 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf +29 -0
- data/spec/rdfcore/rdfms-para196/test001.nt +17 -0
- data/spec/rdfcore/rdfms-para196/test001.rdf +35 -0
- data/spec/rdfcore/rdfms-rdf-id/error001.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error002.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error003.rdf +29 -0
- data/spec/rdfcore/rdfms-rdf-id/error004.rdf +27 -0
- data/spec/rdfcore/rdfms-rdf-id/error005.rdf +31 -0
- data/spec/rdfcore/rdfms-rdf-id/error006.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error007.rdf +29 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-002.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-003.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-004.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-005.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-006.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-007.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-008.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-009.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-010.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-011.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-012.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-013.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-014.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-015.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-016.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-017.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-018.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-019.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-020.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-001.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-002.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-002.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-003.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-003.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-004.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-004.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-005.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-005.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-006.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-006.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-007.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-007.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-008.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-008.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-009.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-009.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-010.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-010.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-011.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-011.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-012.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-012.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-013.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-013.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-014.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-014.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-015.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-015.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-016.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-016.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-017.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-017.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-018.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-018.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-019.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-019.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-020.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-020.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-021.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-021.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-022.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-022.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-023.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-023.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-024.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-024.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-025.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-025.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-026.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-026.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-027.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-027.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-028.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-028.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-029.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-029.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-030.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-030.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-031.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-031.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-032.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-032.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-033.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-033.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-034.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-034.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-035.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-035.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-036.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-036.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-037.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-037.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-001.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-002.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-002.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-003.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-003.rdf +24 -0
- data/spec/rdfcore/rdfms-reification-required/test001.nt +15 -0
- data/spec/rdfcore/rdfms-reification-required/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-seq-representation/empty.nt +13 -0
- data/spec/rdfcore/rdfms-seq-representation/test001.nt +19 -0
- data/spec/rdfcore/rdfms-seq-representation/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-seq-representation/test002.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test003a.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test003b.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test004.nt +14 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error001.rdf +26 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error002.rdf +26 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error003.rdf +29 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error004.rdf +25 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error005.rdf +25 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error006.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test001.nt +14 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test001.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test002.nt +19 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test002.rdf +38 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test003.nt +17 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test003.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test004.nt +21 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test004.rdf +36 -0
- data/spec/rdfcore/rdfms-uri-substructure/error001.nt +18 -0
- data/spec/rdfcore/rdfms-uri-substructure/test001.nt +17 -0
- data/spec/rdfcore/rdfms-uri-substructure/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.nt +13 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.nt +14 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.rdf +47 -0
- data/spec/rdfcore/rdfms-xmllang/test001.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test001.rdf +30 -0
- data/spec/rdfcore/rdfms-xmllang/test002.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test002.rdf +29 -0
- data/spec/rdfcore/rdfms-xmllang/test003.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test003.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test004.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test004.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test005.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test005.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test006.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test006.rdf +29 -0
- data/spec/rdfcore/rdfms-xmllang/test007a.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test007b.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test007c.nt +14 -0
- data/spec/rdfcore/rdfs-container-membership-superProperty/not1C.rdf +13 -0
- data/spec/rdfcore/rdfs-container-membership-superProperty/not1P.rdf +14 -0
- data/spec/rdfcore/rdfs-domain-and-range/nonconclusions005.rdf +28 -0
- data/spec/rdfcore/rdfs-domain-and-range/nonconclusions006.rdf +28 -0
- data/spec/rdfcore/rdfs-domain-and-range/premises005.rdf +32 -0
- data/spec/rdfcore/rdfs-domain-and-range/premises006.rdf +32 -0
- data/spec/rdfcore/rdfs-domain-and-range/test001.nt +16 -0
- data/spec/rdfcore/rdfs-domain-and-range/test001.rdf +29 -0
- data/spec/rdfcore/rdfs-domain-and-range/test002.nt +16 -0
- data/spec/rdfcore/rdfs-domain-and-range/test002.rdf +29 -0
- data/spec/rdfcore/rdfs-entailment/test001.nt +16 -0
- data/spec/rdfcore/rdfs-entailment/test002.nt +15 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.nt +18 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.rdf +37 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.nt +18 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.rdf +40 -0
- data/spec/rdfcore/rdfs-subClassOf-a-Property/test001.nt +15 -0
- data/spec/rdfcore/rdfs-subPropertyOf-semantics/test001.nt +24 -0
- data/spec/rdfcore/rdfs-subPropertyOf-semantics/test002.nt +21 -0
- data/spec/rdfcore/statement-entailment/test001a.nt +12 -0
- data/spec/rdfcore/statement-entailment/test001b.nt +2 -0
- data/spec/rdfcore/statement-entailment/test002a.nt +2 -0
- data/spec/rdfcore/statement-entailment/test002b.nt +5 -0
- data/spec/rdfcore/tex-01/test001.rdf +34 -0
- data/spec/rdfcore/tex-01/test002.rdf +33 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test001.nt +15 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test001.rdf +31 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test002.nt +14 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test002.rdf +32 -0
- data/spec/rdfcore/xml-canon/test001.nt +16 -0
- data/spec/rdfcore/xml-canon/test001.rdf +28 -0
- data/spec/rdfcore/xmlbase/test001.nt +14 -0
- data/spec/rdfcore/xmlbase/test001.rdf +27 -0
- data/spec/rdfcore/xmlbase/test002.nt +14 -0
- data/spec/rdfcore/xmlbase/test002.rdf +28 -0
- data/spec/rdfcore/xmlbase/test003.nt +14 -0
- data/spec/rdfcore/xmlbase/test003.rdf +25 -0
- data/spec/rdfcore/xmlbase/test004.nt +18 -0
- data/spec/rdfcore/xmlbase/test004.rdf +27 -0
- data/spec/rdfcore/xmlbase/test006.nt +15 -0
- data/spec/rdfcore/xmlbase/test006.rdf +26 -0
- data/spec/rdfcore/xmlbase/test007.nt +14 -0
- data/spec/rdfcore/xmlbase/test007.rdf +25 -0
- data/spec/rdfcore/xmlbase/test008.nt +14 -0
- data/spec/rdfcore/xmlbase/test008.rdf +25 -0
- data/spec/rdfcore/xmlbase/test009.nt +14 -0
- data/spec/rdfcore/xmlbase/test009.rdf +26 -0
- data/spec/rdfcore/xmlbase/test010.nt +14 -0
- data/spec/rdfcore/xmlbase/test010.rdf +26 -0
- data/spec/rdfcore/xmlbase/test011.nt +14 -0
- data/spec/rdfcore/xmlbase/test011.rdf +27 -0
- data/spec/rdfcore/xmlbase/test013.nt +15 -0
- data/spec/rdfcore/xmlbase/test013.rdf +28 -0
- data/spec/rdfcore/xmlbase/test014.nt +15 -0
- data/spec/rdfcore/xmlbase/test014.rdf +28 -0
- data/spec/rdfcore/xmlsch-02/test001.rdf +34 -0
- data/spec/rdfcore/xmlsch-02/test002.rdf +34 -0
- data/spec/rdfcore/xmlsch-02/test003.rdf +37 -0
- data/spec/rdfcore_helper.rb +137 -0
- data/spec/rdfxml_spec.rb +349 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/store_spec.rb +205 -0
- data/spec/string_hacks_spec.rb +21 -0
- data/spec/triple_spec.rb +172 -0
- data/spec/uriref_spec.rb +117 -0
- data/test/longtests_spec.rb +25 -0
- data/test/n3_tests/lcsh/sh85062913.n3 +41 -0
- data/test/n3_tests/lcsh/sh85062913.nt +21 -0
- data/test/n3_tests/lcsh/sh85082139.n3 +157 -0
- data/test/n3_tests/lcsh/sh85082139.nt +79 -0
- data/test/n3_tests/lcsh/sh85118553.n3 +123 -0
- data/test/n3_tests/lcsh/sh85118553.nt +63 -0
- data/test/n3_tests/misc/on_now-01.n3 +30 -0
- data/test/n3_tests/misc/on_now-01.nt +15 -0
- data/test/n3_tests/n3p/simple-01.n3 +1 -0
- data/test/n3_tests/n3p/simple-01.nt +0 -0
- data/test/n3_tests/n3p/simple-02.n3 +4 -0
- data/test/n3_tests/n3p/simple-02.nt +0 -0
- data/test/n3_tests/n3p/simple-03.n3 +5 -0
- data/test/n3_tests/n3p/simple-03.nt +1 -0
- data/test/n3_tests/n3p/simple-04.n3 +6 -0
- data/test/n3_tests/n3p/simple-04.nt +3 -0
- data/test/n3_tests/n3p/simple-05.n3 +7 -0
- data/test/n3_tests/n3p/simple-05.nt +2 -0
- data/test/n3_tests/n3p/simple-06.n3 +6 -0
- data/test/n3_tests/n3p/simple-06.nt +4 -0
- data/test/n3_tests/n3p/simple-07.n3 +7 -0
- data/test/n3_tests/n3p/simple-07.nt +6 -0
- data/test/perf_test/test.rb +11 -0
- data/test/perf_test/tommorris.rdf +2267 -0
- data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt +24 -0
- data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf +46 -0
- data/test/rdf_tests/tm_001.nt +1 -0
- data/test/rdf_tests/tm_001.rdf +7 -0
- data/test/rdf_tests/xml-literal-mixed.nt +7 -0
- data/test/rdf_tests/xml-literal-mixed.rdf +15 -0
- data/test/xml.rdf +6 -0
- metadata +698 -0
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
begin
|
2
|
+
require 'spec'
|
3
|
+
require 'active_support'
|
4
|
+
rescue LoadError
|
5
|
+
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
6
|
+
gem 'rspec'
|
7
|
+
require 'spec'
|
8
|
+
gem 'active_support'
|
9
|
+
require 'active_support'
|
10
|
+
end
|
11
|
+
|
12
|
+
ActiveSupport::XmlMini.backend = 'Nokogiri'
|
13
|
+
|
14
|
+
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
15
|
+
$:.unshift File.dirname(__FILE__)
|
16
|
+
require 'reddy'
|
17
|
+
require 'matchers'
|
18
|
+
|
19
|
+
include Reddy
|
20
|
+
|
21
|
+
Spec::Runner.configure do |config|
|
22
|
+
config.include(Matchers)
|
23
|
+
end
|
data/spec/store_spec.rb
ADDED
@@ -0,0 +1,205 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe "Store" do
|
4
|
+
{
|
5
|
+
"List Store" => { :klass => ListStore, :configuration => {}, :context_aware => false, :ctx => URIRef.new("http://identifier")},
|
6
|
+
"Memory Store" => { :klass => MemoryStore, :configuration => {}, :context_aware => true, :ctx => URIRef.new("http://identifier")},
|
7
|
+
"Memory Store with ctx" => { :klass => MemoryStore, :configuration => {}, :context_aware => true, :ctx => URIRef.new("http://context")},
|
8
|
+
}.each_pair do |label, hash|
|
9
|
+
describe label.to_s do
|
10
|
+
before(:all) do
|
11
|
+
@identifier = URIRef.new("http://identifier")
|
12
|
+
@ctx = hash[:ctx]
|
13
|
+
@ex = Namespace.new("http://example.org/", "ex")
|
14
|
+
@foaf = Namespace.new("http://xmlns.com/foaf/0.1/", "foaf")
|
15
|
+
end
|
16
|
+
|
17
|
+
subject { hash[:klass].new(@identifier, hash[:configuration]) }
|
18
|
+
|
19
|
+
it "should be an AbstractStore" do
|
20
|
+
subject.should be_a(AbstractStore)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should allow you to add a triple" do
|
24
|
+
subject.add(Triple.new(@ex.a, @ex.b, @ex.c), @ctx)
|
25
|
+
subject.add(Triple.new(@ex.a, @ex.b, @ex.d), @ctx)
|
26
|
+
subject.size.should == 2
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should allow you to create and bind Namespace objects" do
|
30
|
+
foaf = Namespace.new("http://xmlns.com/foaf/0.1/", "foaf")
|
31
|
+
subject.bind(foaf).should == foaf
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should retrieve identifier" do
|
35
|
+
subject.identifier.should == @identifier
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "with triples" do
|
39
|
+
before(:each) do
|
40
|
+
subject.add(Triple.new(@ex.john, @foaf.knows, @ex.jane), @ctx)
|
41
|
+
subject.add(Triple.new(@ex.john, @foaf.knows, @ex.rick), @ctx)
|
42
|
+
subject.add(Triple.new(@ex.jane, @foaf.knows, @ex.rick), @ctx)
|
43
|
+
subject.bind(@foaf)
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should detect included triple" do
|
47
|
+
subject.contains?(Triple.new(@ex.john, @foaf.knows, @ex.jane), @ctx).should be_true
|
48
|
+
end
|
49
|
+
|
50
|
+
it "should contain different triple paterns" do
|
51
|
+
[
|
52
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),URIRef.new("http://baz")),
|
53
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),Literal.untyped("baz")),
|
54
|
+
Triple.new(URIRef.new("http://foo"),"http://bar",Literal.untyped("baz")),
|
55
|
+
Triple.new(BNode.new("foo"),URIRef.new("http://bar"),Literal.untyped("baz")),
|
56
|
+
Triple.new(BNode.new,URIRef.new("http://bar"),Literal.untyped("baz")),
|
57
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),Literal.typed(5, "http://www.w3.org/2001/XMLSchema#int")),
|
58
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),Literal.typed("gregg", "http://www.w3.org/2001/XMLSchema#string")),
|
59
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),"gregg"),
|
60
|
+
].each do |t|
|
61
|
+
subject.add(t, @ctx)
|
62
|
+
subject.contains?(t, @ctx)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should tell you how large the store is" do
|
67
|
+
subject.size.should == 3
|
68
|
+
end
|
69
|
+
|
70
|
+
it "should allow you to select resources" do
|
71
|
+
subject.triples(Triple.new(@ex.john, nil, nil), @ctx).size.should == 2
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should allow iteration" do
|
75
|
+
count = 0
|
76
|
+
subject.triples(Triple.new(nil, nil, nil), @ctx) do |t, context|
|
77
|
+
count = count + 1
|
78
|
+
t.class.should == Triple
|
79
|
+
end
|
80
|
+
count.should == 3
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should allow iteration over a particular subject" do
|
84
|
+
count = 0
|
85
|
+
subject.triples(Triple.new(@ex.john, nil, nil), @ctx) do |t, context|
|
86
|
+
count = count + 1
|
87
|
+
t.class.should == Triple
|
88
|
+
end
|
89
|
+
count.should == 2
|
90
|
+
end
|
91
|
+
|
92
|
+
it "should allow iteration over a particular predicate" do
|
93
|
+
count = 0
|
94
|
+
subject.triples(Triple.new(nil, @foaf.knows, nil), @ctx) do |t, context|
|
95
|
+
count = count + 1
|
96
|
+
t.class.should == Triple
|
97
|
+
end
|
98
|
+
count.should == 3
|
99
|
+
end
|
100
|
+
|
101
|
+
it "should allow iteration over a particular object" do
|
102
|
+
count = 0
|
103
|
+
subject.triples(Triple.new(nil, nil, @ex.jane), @ctx) do |t, context|
|
104
|
+
count = count + 1
|
105
|
+
t.class.should == Triple
|
106
|
+
end
|
107
|
+
count.should == 1
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should find combinations" do
|
111
|
+
subject.triples(Triple.new(@ex.john, @foaf.knows, nil), @ctx).length.should == 2
|
112
|
+
subject.triples(Triple.new(@ex.john, nil, @ex.jane), @ctx).length.should == 1
|
113
|
+
subject.triples(Triple.new(nil, @foaf.knows, @ex.jane), @ctx).length.should == 1
|
114
|
+
end
|
115
|
+
|
116
|
+
it "should retrieve indexed item" do
|
117
|
+
subject.item(0).should be_a(Triple)
|
118
|
+
end
|
119
|
+
|
120
|
+
it "should detect included triple" do
|
121
|
+
t = subject.item(0)
|
122
|
+
subject.contains?(t).should be_true
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
it "should remove a triple" do
|
127
|
+
subject.add(Triple.new(@ex.john, RDF_TYPE, @foaf.Person), @ctx)
|
128
|
+
subject.size(@ctx).should == 1
|
129
|
+
subject.remove(Triple.new(@ex.john, RDF_TYPE, @foaf.Person), @ctx)
|
130
|
+
subject.size(@ctx).should == 0
|
131
|
+
end
|
132
|
+
|
133
|
+
if hash[:context_aware]
|
134
|
+
describe "is context aware" do
|
135
|
+
before(:all) do
|
136
|
+
@triple = Triple.new(@ex.a, @ex.b, @ex.c)
|
137
|
+
@ctx1 = URIRef.new("http://new1.ctx")
|
138
|
+
@ctx2 = URIRef.new("http://new2.ctx")
|
139
|
+
end
|
140
|
+
|
141
|
+
it "should add triple to default context" do
|
142
|
+
subject.add(@triple, nil)
|
143
|
+
found = false
|
144
|
+
subject.triples(@triple, nil) do |triple, context|
|
145
|
+
@triple.should == @triple
|
146
|
+
context.should == @identifier
|
147
|
+
found = true
|
148
|
+
end
|
149
|
+
found.should be_true
|
150
|
+
end
|
151
|
+
|
152
|
+
it "should add to multiple contexts" do
|
153
|
+
subject.add(@triple, @ctx1)
|
154
|
+
subject.add(@triple, @ctx2)
|
155
|
+
subject.triples(@triple, @ctx1).length.should == 1
|
156
|
+
subject.triples(@triple, @ctx2).length.should == 1
|
157
|
+
found = 0
|
158
|
+
subject.triples(@triple, nil) do |triple, context|
|
159
|
+
found += 1
|
160
|
+
end
|
161
|
+
found.should == 2
|
162
|
+
end
|
163
|
+
|
164
|
+
it "should remove from specific context" do
|
165
|
+
subject.add(@triple, @ctx1)
|
166
|
+
subject.add(@triple, @ctx2)
|
167
|
+
subject.remove(@triple, @ctx1)
|
168
|
+
subject.triples(@triple, @ctx1).length.should == 0
|
169
|
+
subject.triples(@triple, @ctx2).length.should == 1
|
170
|
+
found = 0
|
171
|
+
subject.triples(@triple, nil) do |triple, context|
|
172
|
+
found += 1
|
173
|
+
end
|
174
|
+
found.should == 1
|
175
|
+
end
|
176
|
+
|
177
|
+
it "should remove from multiple contexts" do
|
178
|
+
subject.add(@triple, @ctx1)
|
179
|
+
subject.add(@triple, @ctx2)
|
180
|
+
subject.remove(@triple, nil)
|
181
|
+
subject.triples(@triple, @ctx1).length.should == 0
|
182
|
+
subject.triples(@triple, @ctx2).length.should == 0
|
183
|
+
found = 0
|
184
|
+
subject.triples(@triple, nil) do |triple, context|
|
185
|
+
found += 1
|
186
|
+
end
|
187
|
+
found.should == 0
|
188
|
+
end
|
189
|
+
|
190
|
+
it "should remove context" do
|
191
|
+
subject.add(@triple, @ctx1)
|
192
|
+
subject.add(@triple, @ctx2)
|
193
|
+
#subject.dump
|
194
|
+
subject.remove(Triple.new(nil, nil, nil), @ctx2)
|
195
|
+
subject.contexts.should_not include(@ctx2)
|
196
|
+
#subject.dump
|
197
|
+
subject.triples(@triple, @ctx1).length.should == 1
|
198
|
+
subject.triples(@triple, @ctx2).length.should == 0
|
199
|
+
end
|
200
|
+
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
describe "String RDF encoding" do
|
3
|
+
{
|
4
|
+
"Gregg" => 'Gregg',
|
5
|
+
"Dürst" => 'D\u00FCrst',
|
6
|
+
"simple literal" => 'simple literal',
|
7
|
+
"backslash:\\" => 'backslash:\\\\',
|
8
|
+
"dquote:\"" => 'dquote:\\"',
|
9
|
+
"newline:\n" => 'newline:\\n',
|
10
|
+
"return:\r" => 'return:\\r',
|
11
|
+
"tab:\t" => 'tab:\\t',
|
12
|
+
}.each_pair do |raw, encoded|
|
13
|
+
specify "'#{raw}' should escape to '#{encoded}'" do
|
14
|
+
raw.rdf_escape.should == encoded
|
15
|
+
end
|
16
|
+
|
17
|
+
specify "'#{encoded}' should unescape to '#{raw}'" do
|
18
|
+
encoded.rdf_unescape.should == raw
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/spec/triple_spec.rb
ADDED
@@ -0,0 +1,172 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
|
3
|
+
describe "Triples" do
|
4
|
+
before(:all) { @graph = Graph.new(:store => ListStore.new) }
|
5
|
+
it "should require that the subject is a URIRef or BNode" do
|
6
|
+
lambda do
|
7
|
+
Triple.new(Literal.new("foo"), URIRef.new("http://xmlns.com/foaf/0.1/knows"), BNode.new)
|
8
|
+
end.should raise_error
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should require that the predicate is a URIRef" do
|
12
|
+
lambda do
|
13
|
+
Triple.new(BNode.new, BNode.new, BNode.new)
|
14
|
+
end.should raise_error
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should require that the object is a URIRef, BNode, Literal or Typed Literal" do
|
18
|
+
lambda do
|
19
|
+
Triple.new(BNode.new, URIRef.new("http://xmlns.com/foaf/0.1/knows"), [])
|
20
|
+
end.should raise_error
|
21
|
+
end
|
22
|
+
|
23
|
+
describe "with BNodes" do
|
24
|
+
subject do
|
25
|
+
Triple.new(BNode.new, URIRef.new('http://xmlns.com/foaf/0.1/knows'), BNode.new)
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should have a subject" do
|
29
|
+
subject.subject.class.should == BNode
|
30
|
+
end
|
31
|
+
|
32
|
+
it "should emit an NTriple" do
|
33
|
+
subject.to_ntriples.should == "#{subject.subject.to_n3} <http://xmlns.com/foaf/0.1/knows> #{subject.object.to_n3} ."
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "with URIRefs" do
|
38
|
+
subject {
|
39
|
+
s = URIRef.new("http://tommorris.org/foaf#me")
|
40
|
+
p = URIRef.new("http://xmlns.com/foaf/0.1/name")
|
41
|
+
o = Literal.untyped("Tom Morris")
|
42
|
+
Triple.new(s,p,o)
|
43
|
+
}
|
44
|
+
|
45
|
+
it "should emit an NTriple" do
|
46
|
+
subject.to_ntriples.should == "<http://tommorris.org/foaf#me> <http://xmlns.com/foaf/0.1/name> \"Tom Morris\" ."
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "with coerced subject" do
|
51
|
+
it "should accept a URIRef" do
|
52
|
+
ref = URIRef.new('http://localhost/')
|
53
|
+
Triple.coerce_subject(ref).should == ref
|
54
|
+
end
|
55
|
+
|
56
|
+
it "should accept a BNode" do
|
57
|
+
node = BNode.new('a')
|
58
|
+
Triple.coerce_subject(node).should == node
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should accept a uri string and make URIRef" do
|
62
|
+
Triple.coerce_subject('http://localhost/').should == URIRef.new('http://localhost/')
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should accept an Addressable::URI object and make URIRef" do
|
66
|
+
Triple.coerce_subject(Addressable::URI.parse("http://localhost/")).should == URIRef.new("http://localhost/")
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should raise an InvalidSubject exception with any other class argument" do
|
70
|
+
lambda do
|
71
|
+
Triple.coerce_subject(Object.new)
|
72
|
+
end.should raise_error(Triple::InvalidSubject)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe "with coerced predicate" do
|
77
|
+
it "should make a string into a URI ref" do
|
78
|
+
Triple.coerce_predicate("http://localhost/").should == URIRef.new('http://localhost/')
|
79
|
+
end
|
80
|
+
|
81
|
+
it "should leave a URIRef alone" do
|
82
|
+
ref = URIRef.new('http://localhost/')
|
83
|
+
Triple.coerce_predicate(ref).should == ref
|
84
|
+
end
|
85
|
+
|
86
|
+
it "should barf on an illegal uri string" do
|
87
|
+
lambda do
|
88
|
+
Triple.coerce_predicate("I'm just a soul whose intention is good")
|
89
|
+
end.should raise_error(InvalidPredicate)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe "with coerced object" do
|
94
|
+
it "should leave URIRefs alone" do
|
95
|
+
ref = URIRef.new("http://localhost/")
|
96
|
+
Triple.coerce_object(ref).should == ref
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should accept an Addressable::URI object and make URIRef" do
|
100
|
+
Triple.coerce_object(Addressable::URI.parse("http://localhost/")).should == URIRef.new("http://localhost/")
|
101
|
+
end
|
102
|
+
|
103
|
+
it "should leave BNodes alone" do
|
104
|
+
ref = BNode.new()
|
105
|
+
Triple.coerce_object(ref).should == ref
|
106
|
+
end
|
107
|
+
|
108
|
+
it "should leave Literals alone" do
|
109
|
+
ref = Literal.untyped('foo')
|
110
|
+
Triple.coerce_object(ref).should == ref
|
111
|
+
|
112
|
+
typedref = Literal.build_from('foo')
|
113
|
+
Triple.coerce_object(ref).should == ref
|
114
|
+
end
|
115
|
+
|
116
|
+
end
|
117
|
+
|
118
|
+
describe "with wildcards" do
|
119
|
+
it "should accept nil" do
|
120
|
+
t = Triple.new(nil, nil, nil)
|
121
|
+
t.is_patern?.should be_true
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe "equivalence" do
|
126
|
+
before(:all) do
|
127
|
+
@test_cases = [
|
128
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),URIRef.new("http://baz")),
|
129
|
+
Triple.new(URIRef.new("http://foo"),URIRef.new("http://bar"),Literal.untyped("baz")),
|
130
|
+
Triple.new(URIRef.new("http://foo"),"http://bar",Literal.untyped("baz")),
|
131
|
+
Triple.new(BNode.new("foo"),URIRef.new("http://bar"),Literal.untyped("baz")),
|
132
|
+
Triple.new(BNode.new,URIRef.new("http://bar"),Literal.untyped("baz")),
|
133
|
+
]
|
134
|
+
end
|
135
|
+
it "should be equal to itself" do
|
136
|
+
@test_cases.each {|triple| triple.should == triple}
|
137
|
+
end
|
138
|
+
|
139
|
+
it "should not be equal to something else" do
|
140
|
+
t = Triple.new(URIRef.new("http://fab"),URIRef.new("http://bar"),URIRef.new("http://baz")),
|
141
|
+
@test_cases.each {|triple| triple.should_not == t}
|
142
|
+
end
|
143
|
+
|
144
|
+
it "should be equal to equivalent" do
|
145
|
+
@test_cases.each do |triple|
|
146
|
+
t = Triple.new(triple.subject, triple.predicate, triple.object)
|
147
|
+
triple.should == t
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
it "should be equal to paterns" do
|
152
|
+
@test_cases.each do |triple|
|
153
|
+
[
|
154
|
+
Triple.new(triple.subject, triple.predicate, triple.object),
|
155
|
+
|
156
|
+
Triple.new(nil, triple.predicate, triple.object),
|
157
|
+
Triple.new(triple.subject, nil, triple.object),
|
158
|
+
Triple.new(triple.subject, triple.predicate, nil),
|
159
|
+
|
160
|
+
Triple.new(nil, nil, triple.object),
|
161
|
+
Triple.new(triple.subject, nil, nil),
|
162
|
+
Triple.new(nil, triple.predicate, nil),
|
163
|
+
|
164
|
+
Triple.new(nil, nil, nil),
|
165
|
+
].each do |t|
|
166
|
+
triple.should == t
|
167
|
+
t.should == triple
|
168
|
+
end
|
169
|
+
end
|
170
|
+
end
|
171
|
+
end
|
172
|
+
end
|
data/spec/uriref_spec.rb
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'spec_helper')
|
2
|
+
require 'webrick'
|
3
|
+
include WEBrick
|
4
|
+
#require 'lib/uriref'
|
5
|
+
|
6
|
+
describe "URI References" do
|
7
|
+
it "should output NTriples" do
|
8
|
+
f = URIRef.new("http://tommorris.org/foaf/")
|
9
|
+
f.to_ntriples.should == "<http://tommorris.org/foaf/>"
|
10
|
+
end
|
11
|
+
|
12
|
+
it "should handle Unicode symbols inside URLs" do
|
13
|
+
lambda do
|
14
|
+
f = URIRef.new("http://example.org/#Andr%E9")
|
15
|
+
end.should_not raise_error
|
16
|
+
end
|
17
|
+
|
18
|
+
# it "do not contain any control characters (#x00 - #x1F, #x74-#x9F)" do
|
19
|
+
# lambda do
|
20
|
+
# f = URIRef.new("http://tommorris.org/blog/")
|
21
|
+
# f.test_string("http://tommorris.org/blog")
|
22
|
+
# end.should_not raise_error
|
23
|
+
#
|
24
|
+
# lambda do
|
25
|
+
# f = URIRef.new("http://xmlns.com/foaf/0.1/knows")
|
26
|
+
# f.test_string("http://xmlns.com/foaf/0.1/knows")
|
27
|
+
# end.should_not raise_error
|
28
|
+
# end
|
29
|
+
|
30
|
+
it "should return the 'last fragment' name" do
|
31
|
+
fragment = URIRef.new("http://example.org/foo#bar")
|
32
|
+
fragment.short_name.should == "bar"
|
33
|
+
|
34
|
+
path = URIRef.new("http://example.org/foo/bar")
|
35
|
+
path.short_name.should == "bar"
|
36
|
+
|
37
|
+
nonetest = URIRef.new("http://example.org/")
|
38
|
+
nonetest.short_name.should == false
|
39
|
+
end
|
40
|
+
|
41
|
+
it "should append fragment to uri" do
|
42
|
+
URIRef.new("foo", "http://example.org").should == "http://example.org/foo"
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should produce a valid URI character sequence (per RFC 2396 §2.1) representing an absolute URI with optional fragment identifier" do
|
46
|
+
pending "TODO: figure out a series of tests for RFC 2396 §2.1 adherence"
|
47
|
+
end
|
48
|
+
|
49
|
+
it "should throw errors on suspicious protocols and non-protocols" do
|
50
|
+
lambda do
|
51
|
+
URIRef.new("javascript:alert(\"pass\")")
|
52
|
+
end.should raise_error
|
53
|
+
end
|
54
|
+
|
55
|
+
it "must not be a relative URI" do
|
56
|
+
lambda do
|
57
|
+
URIRef.new("foo")
|
58
|
+
end.should raise_error
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should discourage use of %-escaped characters" do
|
62
|
+
pending "TODO: figure out a way to discourage %-escaped character usage"
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should allow another URIRef to be added" do
|
66
|
+
uri = URIRef.new("http://example.org/") + "foo#bar"
|
67
|
+
uri.to_s.should == "http://example.org/foo#bar"
|
68
|
+
uri.class.should == URIRef
|
69
|
+
|
70
|
+
uri2 = URIRef.new("http://example.org/") + Addressable::URI.parse("foo#bar")
|
71
|
+
uri2.to_s.should == "http://example.org/foo#bar"
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should create QName from URI with namespace" do
|
75
|
+
uri = URIRef.new("http://example.org/foo#bar")
|
76
|
+
uri.to_qname("http://example.org/foo#" => "ex").should == "ex:bar"
|
77
|
+
|
78
|
+
uri = URIRef.new("http://xmlns.com/foaf/0.1/knows")
|
79
|
+
uri.to_qname("http://xmlns.com/foaf/0.1/" => "foaf").should == "foaf:knows"
|
80
|
+
end
|
81
|
+
|
82
|
+
it "should create resource hash for RDF/XML" do
|
83
|
+
uri = URIRef.new("http://example.org/foo#bar")
|
84
|
+
uri.xml_args.should == [{"rdf:resource" => uri.to_s}]
|
85
|
+
end
|
86
|
+
|
87
|
+
it "should be equivalent to string" do
|
88
|
+
URIRef.new("http://example.org/foo#bar").should == "http://example.org/foo#bar"
|
89
|
+
end
|
90
|
+
|
91
|
+
# TEST turned off until parser is working.
|
92
|
+
# it "should allow the programmer to Follow His Nose" do
|
93
|
+
# a = URIRef.new("http://127.0.0.1:3001/test")
|
94
|
+
#
|
95
|
+
# # server
|
96
|
+
# test_proc = lambda { |req, resp|
|
97
|
+
# resp['Content-Type'] = "application/rdf+xml"
|
98
|
+
# resp.body = <<-EOF;
|
99
|
+
# <?xml version="1.0" ?>
|
100
|
+
# <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:foaf="http://xmlns.com/foaf/0.1/">
|
101
|
+
# <rdf:Description rdf:about="http://localhost:3001/test">
|
102
|
+
# <foaf:name>Testy McTest</foaf:name>
|
103
|
+
# </rdf:Description>
|
104
|
+
# </rdf:RDF>
|
105
|
+
# EOF
|
106
|
+
# }
|
107
|
+
# test = HTTPServlet::ProcHandler.new(test_proc)
|
108
|
+
# s = HTTPServer.new(:Port => 3001)
|
109
|
+
# s.mount("/test", test)
|
110
|
+
# trap("INT"){ s.shutdown }
|
111
|
+
# thread = Thread.new { s.start }
|
112
|
+
# graph = a.load_graph
|
113
|
+
# s.shutdown
|
114
|
+
# graph.class.should == Reddy::Graph
|
115
|
+
# graph.size.should == 1
|
116
|
+
# end
|
117
|
+
end
|