rdf_context 0.4.8 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. data/History.txt +27 -0
  2. data/README.rdoc +22 -9
  3. data/Rakefile +11 -6
  4. data/VERSION +1 -1
  5. data/bin/rdf_context +12 -4
  6. data/lib/rdf_context.rb +3 -1
  7. data/lib/rdf_context/aggregate_graph.rb +86 -0
  8. data/lib/rdf_context/array_hacks.rb +53 -0
  9. data/lib/rdf_context/conjunctive_graph.rb +1 -1
  10. data/lib/rdf_context/exceptions.rb +9 -7
  11. data/lib/rdf_context/graph.rb +174 -15
  12. data/lib/rdf_context/literal.rb +34 -2
  13. data/lib/rdf_context/n3_grammar.treetop +213 -129
  14. data/lib/rdf_context/n3parser.rb +281 -57
  15. data/lib/rdf_context/namespace.rb +23 -12
  16. data/lib/rdf_context/parser.rb +4 -3
  17. data/lib/rdf_context/quoted_graph.rb +38 -0
  18. data/lib/rdf_context/rdfaparser.rb +2 -1
  19. data/lib/rdf_context/rdfxmlparser.rb +4 -3
  20. data/lib/rdf_context/store/abstract_sql_store.rb +4 -4
  21. data/lib/rdf_context/store/abstract_store.rb +5 -1
  22. data/lib/rdf_context/store/sqlite3_store.rb +10 -8
  23. data/lib/rdf_context/string_hacks.rb +44 -21
  24. data/lib/rdf_context/term_utils.rb +73 -4
  25. data/lib/rdf_context/triple.rb +32 -47
  26. data/lib/rdf_context/uriref.rb +33 -26
  27. data/spec/aggregate_graph_spec.rb +59 -0
  28. data/spec/conjunctive_graph_spec.rb +1 -1
  29. data/spec/cwm_spec.rb +32 -0
  30. data/spec/graph_spec.rb +114 -3
  31. data/spec/literal_spec.rb +107 -5
  32. data/spec/matchers.rb +104 -51
  33. data/spec/n3parser_spec.rb +798 -99
  34. data/spec/namespaces_spec.rb +26 -0
  35. data/spec/quoted_graph_spec.rb +0 -0
  36. data/spec/rdf_helper.rb +197 -0
  37. data/spec/rdfa_helper.rb +15 -11
  38. data/spec/rdfa_parser_spec.rb +6 -8
  39. data/spec/rdfxml_spec.rb +21 -28
  40. data/spec/spec_helper.rb +20 -0
  41. data/spec/sqlite3_store_spec.rb +6 -5
  42. data/spec/store_helper.rb +9 -1
  43. data/spec/string_hacks_spec.rb +14 -0
  44. data/spec/{rdfxml_helper.rb → swap_helper.rb} +8 -9
  45. data/spec/swap_spec.rb +77 -0
  46. data/spec/swap_test/animal.rdf +17 -0
  47. data/spec/swap_test/anon-prop.n3 +14 -0
  48. data/spec/swap_test/anonymous_loop.n3 +2 -0
  49. data/spec/swap_test/contexts.n3 +16 -0
  50. data/spec/swap_test/daml-pref.n3 +10 -0
  51. data/spec/swap_test/i18n/hiragana.n3 +22 -0
  52. data/spec/swap_test/i18n/n3string.n3 +4 -0
  53. data/spec/swap_test/list/itemType.rdf +12 -0
  54. data/spec/swap_test/lists-simple.n3 +40 -0
  55. data/spec/swap_test/lists.n3 +35 -0
  56. data/spec/swap_test/n3/n3parser.tests_n3_10001.nt +3 -0
  57. data/spec/swap_test/n3/n3parser.tests_n3_10002.nt +7 -0
  58. data/spec/swap_test/n3/n3parser.tests_n3_10003.nt +3 -0
  59. data/spec/swap_test/n3/n3parser.tests_n3_10004.nt +119 -0
  60. data/spec/swap_test/n3/n3parser.tests_n3_10005.nt +3 -0
  61. data/spec/swap_test/n3/n3parser.tests_n3_10006.nt +225 -0
  62. data/spec/swap_test/n3/n3parser.tests_n3_10007.nt +79 -0
  63. data/spec/swap_test/n3/n3parser.tests_n3_10008.nt +5 -0
  64. data/spec/swap_test/n3/n3parser.tests_n3_10009.nt +13 -0
  65. data/spec/swap_test/n3/n3parser.tests_n3_10010.nt +21 -0
  66. data/spec/swap_test/n3/n3parser.tests_n3_10011.nt +9 -0
  67. data/spec/swap_test/n3/n3parser.tests_n3_10012.nt +53 -0
  68. data/spec/swap_test/n3/n3parser.tests_n3_10013.nt +19 -0
  69. data/spec/swap_test/n3/n3parser.tests_n3_10014.nt +103 -0
  70. data/spec/swap_test/n3/n3parser.tests_n3_10015.nt +103 -0
  71. data/spec/swap_test/n3/n3parser.tests_n3_10016.nt +3 -0
  72. data/spec/swap_test/n3/n3parser.tests_n3_10017.nt +151 -0
  73. data/spec/swap_test/n3/n3parser.tests_n3_10018.nt +9 -0
  74. data/spec/swap_test/n3/n3parser.tests_n3_10019.nt +3 -0
  75. data/spec/swap_test/n3/n3parser.tests_n3_10020.nt +13 -0
  76. data/spec/swap_test/n3parser.tests +160 -0
  77. data/spec/swap_test/nodeID/classes.n3 +9 -0
  78. data/spec/swap_test/nodeID/classes.ref.rdf +15 -0
  79. data/spec/swap_test/nodeID/ex1.rdf +15 -0
  80. data/spec/swap_test/norm/fix.rdf +33 -0
  81. data/spec/swap_test/owl-ex.rdf +150 -0
  82. data/spec/swap_test/ref/animal.n3 +11 -0
  83. data/spec/swap_test/ref/anon-prop-1.n3 +8 -0
  84. data/spec/swap_test/ref/anonymous_loop.ref +7 -0
  85. data/spec/swap_test/ref/bnode.n3 +6 -0
  86. data/spec/swap_test/ref/bnode.rdf +16 -0
  87. data/spec/swap_test/ref/colon-in-uri.n3 +15 -0
  88. data/spec/swap_test/ref/daml-ex.n3 +103 -0
  89. data/spec/swap_test/ref/daml-ont.n3 +289 -0
  90. data/spec/swap_test/ref/djb1a-out.n3 +4 -0
  91. data/spec/swap_test/ref/dot-dash.n3 +8 -0
  92. data/spec/swap_test/ref/in-xml-t.n3 +4 -0
  93. data/spec/swap_test/ref/itemType.n3 +9 -0
  94. data/spec/swap_test/ref/keywords1.n3 +11 -0
  95. data/spec/swap_test/ref/keywords2.n3 +11 -0
  96. data/spec/swap_test/ref/lists-simple-1.rdf +108 -0
  97. data/spec/swap_test/ref/lists.n3 +43 -0
  98. data/spec/swap_test/ref/lstring-out.n3 +20 -0
  99. data/spec/swap_test/ref/n3string.n3 +13 -0
  100. data/spec/swap_test/ref/no-last-nl.n3 +3 -0
  101. data/spec/swap_test/ref/numbers.n3 +18 -0
  102. data/spec/swap_test/ref/path1.n3 +8 -0
  103. data/spec/swap_test/ref/path2.n3 +39 -0
  104. data/spec/swap_test/ref/prefix1.rdf +31 -0
  105. data/spec/swap_test/ref/prefix3.rdf +31 -0
  106. data/spec/swap_test/ref/rdf-redefine.rdf +11 -0
  107. data/spec/swap_test/ref/reluri-1.rdf +18 -0
  108. data/spec/swap_test/ref/strquot.n3 +23 -0
  109. data/spec/swap_test/ref/strquot_a.n3 +23 -0
  110. data/spec/swap_test/ref/xml-base3.n3 +5 -0
  111. data/spec/swap_test/ref/xml-redefine.rdf +20 -0
  112. data/spec/swap_test/ref/xml-redefine2.rdf +23 -0
  113. data/spec/swap_test/ref/xml-syntax-basic-serialization.rdf +10 -0
  114. data/spec/swap_test/ref/xmllit.nt +3 -0
  115. data/spec/swap_test/regression.n3 +231 -0
  116. data/spec/swap_test/reluri-1.n3 +10 -0
  117. data/spec/swap_test/strquot.n3 +23 -0
  118. data/spec/swap_test/syntax/colon-in-uri.rdf +27 -0
  119. data/spec/swap_test/syntax/djb1a.n3 +3 -0
  120. data/spec/swap_test/syntax/dot-dash.n3 +15 -0
  121. data/spec/swap_test/syntax/equals1.n3 +1 -0
  122. data/spec/swap_test/syntax/equals2.n3 +1 -0
  123. data/spec/swap_test/syntax/keywords1.n3 +17 -0
  124. data/spec/swap_test/syntax/keywords2.n3 +18 -0
  125. data/spec/swap_test/syntax/lstring.n3 +26 -0
  126. data/spec/swap_test/syntax/neg-formula-predicate.n3 +1 -0
  127. data/spec/swap_test/syntax/neg-keywords3.n3 +1 -0
  128. data/spec/swap_test/syntax/neg-literal-predicate.n3 +1 -0
  129. data/spec/swap_test/syntax/neg-single-quote.n3 +1 -0
  130. data/spec/swap_test/syntax/neg-thisadoc.n3 +1 -0
  131. data/spec/swap_test/syntax/no-last-nl.n3 +2 -0
  132. data/spec/swap_test/syntax/numbers.n3 +26 -0
  133. data/spec/swap_test/syntax/path1.n3 +23 -0
  134. data/spec/swap_test/syntax/path2.n3 +31 -0
  135. data/spec/swap_test/syntax/qvars1.n3 +19 -0
  136. data/spec/swap_test/syntax/qvars2.n3 +19 -0
  137. data/spec/swap_test/syntax/this-quantifiers.n3 +164 -0
  138. data/spec/swap_test/syntax/this-rules.n3 +43 -0
  139. data/spec/swap_test/syntax/too-nested.n3 +25 -0
  140. data/spec/swap_test/syntax/trailing-semicolon.n3 +12 -0
  141. data/spec/swap_test/syntax/zero-objects.n3 +1 -0
  142. data/spec/swap_test/syntax/zero-predicates.n3 +3 -0
  143. data/spec/swap_test/tests-work.txt +25 -0
  144. data/spec/swap_test/xml-syntax/basic-serialization.n3 +8 -0
  145. data/spec/swap_test/xml-syntax/in-xml.xml +13 -0
  146. data/spec/swap_test/xml-syntax/non-ascii-pred.rdf +14 -0
  147. data/spec/swap_test/xml-syntax/rdf_prefix.n3 +2 -0
  148. data/spec/swap_test/xml-syntax/xml_prefix.n3 +7 -0
  149. data/spec/swap_test/xml-syntax/xml_prefix2.n3 +9 -0
  150. data/spec/swap_test/xml-syntax/xmlbase3.rdf +10 -0
  151. data/spec/swap_test/xml-syntax/xmllit.rdf +33 -0
  152. data/spec/triple_spec.rb +90 -46
  153. data/spec/turtle/README.txt +20 -0
  154. data/spec/turtle/bad-00.ttl +2 -0
  155. data/spec/turtle/bad-01.ttl +3 -0
  156. data/spec/turtle/bad-02.ttl +3 -0
  157. data/spec/turtle/bad-03.ttl +3 -0
  158. data/spec/turtle/bad-04.ttl +3 -0
  159. data/spec/turtle/bad-05.ttl +4 -0
  160. data/spec/turtle/bad-06.ttl +3 -0
  161. data/spec/turtle/bad-07.ttl +4 -0
  162. data/spec/turtle/bad-08.ttl +2 -0
  163. data/spec/turtle/bad-09.ttl +3 -0
  164. data/spec/turtle/bad-10.ttl +3 -0
  165. data/spec/turtle/bad-11.ttl +3 -0
  166. data/spec/turtle/bad-12.ttl +3 -0
  167. data/spec/turtle/bad-13.ttl +3 -0
  168. data/spec/turtle/bad-14.ttl +6 -0
  169. data/spec/turtle/manifest-bad.ttl +88 -0
  170. data/spec/turtle/manifest.ttl +215 -0
  171. data/spec/turtle/rdf-schema.out +126 -0
  172. data/spec/turtle/rdf-schema.ttl +156 -0
  173. data/spec/turtle/rdfq-results.out +36 -0
  174. data/spec/turtle/rdfq-results.ttl +39 -0
  175. data/spec/turtle/rdfs-namespace.out +131 -0
  176. data/spec/turtle/rdfs-namespace.ttl +160 -0
  177. data/spec/turtle/test-00.out +1 -0
  178. data/spec/turtle/test-00.ttl +2 -0
  179. data/spec/turtle/test-01.out +3 -0
  180. data/spec/turtle/test-01.ttl +7 -0
  181. data/spec/turtle/test-02.out +3 -0
  182. data/spec/turtle/test-02.ttl +5 -0
  183. data/spec/turtle/test-03.out +3 -0
  184. data/spec/turtle/test-03.ttl +5 -0
  185. data/spec/turtle/test-04.out +2 -0
  186. data/spec/turtle/test-04.ttl +4 -0
  187. data/spec/turtle/test-05.out +4 -0
  188. data/spec/turtle/test-05.ttl +4 -0
  189. data/spec/turtle/test-06.out +1 -0
  190. data/spec/turtle/test-06.ttl +3 -0
  191. data/spec/turtle/test-07.out +5 -0
  192. data/spec/turtle/test-07.ttl +3 -0
  193. data/spec/turtle/test-08.out +1 -0
  194. data/spec/turtle/test-08.ttl +3 -0
  195. data/spec/turtle/test-09.out +4 -0
  196. data/spec/turtle/test-09.ttl +10 -0
  197. data/spec/turtle/test-10.out +5 -0
  198. data/spec/turtle/test-10.ttl +5 -0
  199. data/spec/turtle/test-11.out +4 -0
  200. data/spec/turtle/test-11.ttl +10 -0
  201. data/spec/turtle/test-12.out +4 -0
  202. data/spec/turtle/test-12.ttl +9 -0
  203. data/spec/turtle/test-13.out +2 -0
  204. data/spec/turtle/test-13.ttl +7 -0
  205. data/spec/turtle/test-14.out +10000 -0
  206. data/spec/turtle/test-14.ttl +10002 -0
  207. data/spec/turtle/test-15.out +10000 -0
  208. data/spec/turtle/test-15.ttl +3 -0
  209. data/spec/turtle/test-16.out +10000 -0
  210. data/spec/turtle/test-16.ttl +10002 -0
  211. data/spec/turtle/test-17.out +1 -0
  212. data/spec/turtle/test-17.ttl +6 -0
  213. data/spec/turtle/test-18.out +2 -0
  214. data/spec/turtle/test-18.ttl +9 -0
  215. data/spec/turtle/test-19.out +1 -0
  216. data/spec/turtle/test-19.ttl +4 -0
  217. data/spec/turtle/test-20.out +2 -0
  218. data/spec/turtle/test-20.ttl +6 -0
  219. data/spec/turtle/test-21.out +3 -0
  220. data/spec/turtle/test-21.ttl +4 -0
  221. data/spec/turtle/test-22.out +3 -0
  222. data/spec/turtle/test-22.ttl +4 -0
  223. data/spec/turtle/test-23.out +1 -0
  224. data/spec/turtle/test-23.ttl +3 -0
  225. data/spec/turtle/test-24.out +2 -0
  226. data/spec/turtle/test-24.ttl +3 -0
  227. data/spec/turtle/test-25.out +7 -0
  228. data/spec/turtle/test-25.ttl +14 -0
  229. data/spec/turtle/test-26.out +1 -0
  230. data/spec/turtle/test-26.ttl +4 -0
  231. data/spec/turtle/test-27.out +1 -0
  232. data/spec/turtle/test-27.ttl +5 -0
  233. data/spec/turtle/test-28-out.ttl +6 -0
  234. data/spec/turtle/test-28.out +22 -0
  235. data/spec/turtle/test-28.ttl +22 -0
  236. data/spec/turtle/test-29.out +1 -0
  237. data/spec/turtle/test-29.ttl +1 -0
  238. data/spec/turtle/test-30.out +5 -0
  239. data/spec/turtle/test-30.ttl +12 -0
  240. data/spec/turtle_spec.rb +64 -0
  241. data/spec/uriref_spec.rb +74 -34
  242. data/test/n3_tests/rdflib/n3-writer-teset-26.n3 +31 -0
  243. data/test/n3_tests/rdflib/n3-writer-teset-26.nt +14 -0
  244. data/test/rdf_tests/xml-literal-mixed.nt +1 -2
  245. metadata +278 -39
  246. data/lib/rdf_context/n3_grammar.rb +0 -2171
  247. data/test/perf_test/test.rb +0 -11
  248. data/test/perf_test/tommorris.rdf +0 -2267
@@ -0,0 +1,5 @@
1
+
2
+ <http://www.w3.org/> <http://purl.org/dc/elements/1.1/relation> <http://example.org/test1/>;
3
+ <http://purl.org/dc/elements/1.1/source> <http://example.org/test1/test2/>;
4
+ <http://purl.org/dc/elements/1.1/title> "World Wide Web Consortium" .
5
+
@@ -0,0 +1,20 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://example.com/m#"
5
+ xmlns:Wxml="http://example.com/xml#"
6
+ xmlns:a="http://example.com/m#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
+
9
+ <rdf:Description rdf:about="http://example.com/m#a">
10
+ <b rdf:resource="http://example.com/m#c"/>
11
+ </rdf:Description>
12
+
13
+ <Wxml:P rdf:about="http://example.com/m#q">
14
+ <Wxml:v rdf:resource="http://example.com/xml#r"/>
15
+ </Wxml:P>
16
+
17
+ <rdf:Description rdf:about="http://example.com/m#y">
18
+ <n rdf:resource="http://example.com/m#i"/>
19
+ </rdf:Description>
20
+ </rdf:RDF>
@@ -0,0 +1,23 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://example.com/m#"
5
+ xmlns:Uxml="http://example.com/xml#"
6
+ xmlns:a="http://example.com/m#"
7
+ xmlns:exmlns="http://example.com/xmlns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
9
+
10
+ <rdf:Description rdf:about="http://example.com/m#a">
11
+ <b rdf:resource="http://example.com/m#c"/>
12
+ </rdf:Description>
13
+
14
+ <P xmlns="http://example.com/swap/test/xml-syntax/xml_prefix2.n3#"
15
+ rdf:about="http://example.com/m#q">
16
+ <Uxml:v rdf:resource="http://example.com/xml#r"/>
17
+ <exmlns:w rdf:resource="http://example.com/xmlns#t"/>
18
+ </P>
19
+
20
+ <rdf:Description rdf:about="http://example.com/m#y">
21
+ <n rdf:resource="http://example.com/m#i"/>
22
+ </rdf:Description>
23
+ </rdf:RDF>
@@ -0,0 +1,10 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://example.com/swap/test/xml-syntax/basic-serialization.n3#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
6
+
7
+ <rdf:Description rdf:about="#s">
8
+ <p rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</p>
9
+ </rdf:Description>
10
+ </rdf:RDF>
@@ -0,0 +1,3 @@
1
+
2
+ <http://example.com/swap/test/xml-syntax/xmllit.rdf#John_Smith> <http://my.example.org/Name> "\n <html:h1 xmlns:html=\"http://NoHTML.example.org\" xmlns:my=\"http://my.example.org/\" my:thing=\"hello\">\n <b xmlns=\"http://www.w3.org/1999/xhtml\"><i>John</i></b>\n </html:h1>\n "^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral> .
3
+
@@ -0,0 +1,231 @@
1
+ @prefix : <#>.
2
+ @prefix x: <#>.
3
+ @prefix test: <http://www.w3.org/2000/10/swap/test.n3#>.
4
+ @prefix dc: <http://purl.org/dc/elements/1.1/>. # yuk - under protest - no hash
5
+ @prefix n3test: <http://www.w3.org/2004/11/n3test#> .
6
+ @prefix grammar: <http://www.w3.org/2000/10/swap/grammar/> .
7
+
8
+ :t1001 a test:CwmTest, test:CwmProofTest;
9
+ test:referenceOutput <ref/animal.n3>;
10
+ n3test:inputDocument <animal.rdf> ;
11
+ n3test:description "Parse a small RDF file, generate N3";
12
+ test:arguments """-rdf animal.rdf -n3""" .
13
+
14
+ :t1002a a test:CwmTest;
15
+ test:referenceOutput <ref/xml-redefine.rdf>;
16
+ n3test:inputDocument <xml-syntax/xml_prefix.n3> ;
17
+ n3test:description "Do not redefine the xml: prefix";
18
+ test:arguments """--n3 xml-syntax/xml_prefix.n3 --rdf""" .
19
+
20
+ :t1002b a test:CwmTest, test:CwmProofTest;
21
+ test:referenceOutput <ref/xml-base3.n3>;
22
+ n3test:inputDocument <xml-syntax/xmlbase3.rdf> ;
23
+ n3test:description "Allow for relative xml:base";
24
+ test:arguments """--rdf xml-syntax/xmlbase3.rdf --n3""" .
25
+
26
+ :t1002c a test:CwmTest, test:CwmProofTest;
27
+ test:referenceOutput <ref/xml-redefine2.rdf>;
28
+ n3test:inputDocument <xml-syntax/xml_prefix2.n3> ;
29
+ n3test:description "do not redefine xml: and xmlns: even if told told";
30
+ test:arguments """--n3 xml-syntax/xml_prefix2.n3 --rdf""" .
31
+
32
+ :t1002d a test:CwmTest;
33
+ test:referenceOutput <ref/rdf-redefine.rdf>;
34
+ n3test:inputDocument <xml-syntax/rdf_prefix.n3> ;
35
+ n3test:description "Allow for redefinition of rdf:";
36
+ test:arguments """--n3 xml-syntax/rdf_prefix.n3 --rdf""" .
37
+
38
+ :t1002e a test:CwmTest;
39
+ test:referenceOutput <ref/xmllit.nt>;
40
+ n3test:inputDocument <xml-syntax/xmllit.rdf> ;
41
+ n3test:description "rdf:parseType=\"Literal\"";
42
+ test:arguments """--rdf xml-syntax/xmllit.rdf --ntriples""".
43
+
44
+ :t1003 a test:CwmTest;
45
+ test:referenceOutput <ref/in-xml-t.n3>;
46
+ n3test:inputDocument <xml-syntax/in-xml.xml> ;
47
+ test:description "Parse RDF embedded in foreign XML";
48
+ test:arguments """--rdf=T xml-syntax/in-xml.xml -n3""".
49
+
50
+ :t1005 a test:CwmTest;
51
+ test:referenceOutput <ref/reluri-1.rdf>;
52
+ n3test:inputDocument <reluri-1.n3> ;
53
+ test:description "test generation of relative URIs";
54
+ test:arguments """reluri-1.n3 --rdf""".
55
+
56
+ :t1005a a test:CwmTest, test:CwmProofTest;
57
+ test:referenceOutput <ref/no-last-nl.n3>;
58
+ n3test:inputDocument <syntax/no-last-nl.n3> ;
59
+ test:description "An N3 file with no final newline character";
60
+ test:arguments "syntax/no-last-nl.n3".
61
+
62
+ :t1005b a test:CwmTest, test:CwmProofTest;
63
+ test:referenceOutput <ref/dot-dash.n3>;
64
+ n3test:inputDocument <syntax/dot-dash.n3> ;
65
+ test:description "combinations of - and _ in identifiers";
66
+ test:arguments "syntax/dot-dash.n3".
67
+
68
+ :t1005c a test:CwmTest, test:CwmProofTest;
69
+ test:referenceOutput <ref/keywords1.n3>;
70
+ n3test:inputDocument <syntax/keywords1.n3> ;
71
+ test:description "@keywords in n3";
72
+ test:arguments "syntax/keywords1.n3".
73
+
74
+ :t1005d a test:CwmTest, test:CwmProofTest;
75
+ test:referenceOutput <ref/keywords2.n3>;
76
+ n3test:inputDocument <syntax/keywords2.n3> ;
77
+ test:description "using no keywords in n3";
78
+ test:arguments "syntax/keywords2.n3".
79
+
80
+ :t1005e a test:CwmTest, test:CwmProofTest;
81
+ test:referenceOutput <ref/djb1a-out.n3>;
82
+ n3test:inputDocument <syntax/djb1a.n3> ;
83
+ test:description "djb noticed a:b was parsed as rdf:type token";
84
+ test:arguments "syntax/djb1a.n3".
85
+
86
+ :t1006 a test:CwmTest, test:CwmProofTest;
87
+ test:referenceOutput <ref/contexts-1.n3>;
88
+ n3test:inputDocument <contexts.n3> ;
89
+ test:description "Parse and generate simple contexts";
90
+ test:arguments """contexts.n3""".
91
+
92
+ :t1007 a test:CwmTest, test:CwmProofTest;
93
+ n3test:status "pending";
94
+ test:referenceOutput <ref/anon-prop-1.n3>;
95
+ n3test:inputDocument <anon-prop.n3> ;
96
+ test:description "Parse and regen anonymous property";
97
+ test:arguments """anon-prop.n3""".
98
+
99
+ :t1007a a test:CwmTest, test:CwmProofTest;
100
+ test:referenceOutput <ref/bnode.n3>;
101
+ n3test:inputDocument <nodeID/ex1.rdf> ;
102
+ test:description "Parse RDF/XML nodeID to N3";
103
+ test:arguments """--rdf nodeID/ex1.rdf --n3""".
104
+
105
+ :t1007b a test:CwmTest;
106
+ test:referenceOutput <ref/bnode.rdf>;
107
+ n3test:inputDocument <nodeID/ex1.rdf> ;
108
+ test:description "Parse RDF/XML nodeID and regen RDF/XML";
109
+ test:arguments """--rdf nodeID/ex1.rdf""".
110
+
111
+ :t1007c a test:CwmTest;
112
+ test:referenceOutput <nodeID/classes.ref.rdf>;
113
+ n3test:inputDocument <nodeID/classes.n3> ;
114
+ test:description "use nodeID's with classes";
115
+ test:arguments """nodeID/classes.n3 -rdf""".
116
+
117
+ :t1007d a test:CwmTest, test:CwmProofTest;
118
+ test:referenceOutput <ref/anonymous_loop.ref>;
119
+ n3test:inputDocument <anonymous_loop.n3> ;
120
+ test:description "A loop of anonymous nodes wasn't being printed at all";
121
+ test:arguments """anonymous_loop.n3""".
122
+
123
+ :t1008 a test:CwmTest, test:CwmProofTest;
124
+ test:referenceOutput <ref/daml-ont.n3>;
125
+ n3test:inputDocument <daml-pref.n3> ;
126
+ test:description "Convert some RDF/XML into RDF/N3";
127
+ test:arguments """daml-pref.n3 -rdf daml-ont.rdf -n3""".
128
+
129
+ :t1008a a test:CwmTest, test:CwmProofTest;
130
+ test:referenceOutput <ref/colon-in-uri.n3>;
131
+ n3test:inputDocument <syntax/colon-in-uri.rdf> ;
132
+ test:description "When rdf/xml localnames are not valid qNames";
133
+ test:arguments """--rdf syntax/colon-in-uri.rdf --n3""".
134
+
135
+ :t1009 a test:CwmTest;
136
+ test:referenceOutput <ref/strquot.n3>;
137
+ n3test:inputDocument <strquot.n3> ;
138
+ test:description "N3 string quoting with escaping";
139
+ test:arguments """-n3=e strquot.n3""".
140
+
141
+ :t1009aa a test:CwmTest, test:CwmProofTest;
142
+ test:referenceOutput <ref/strquot_a.n3>;
143
+ n3test:inputDocument <strquot.n3> ;
144
+ test:description "N3 string quoting with utf-8 literals";
145
+ test:arguments """-n3 strquot.n3""".
146
+
147
+ :t1009ab a test:CwmTest, test:CwmProofTest;
148
+ n3test:status "pending";
149
+ test:referenceOutput <ref/n3string.n3>;
150
+ n3test:inputDocument <i18n/n3string.n3> ;
151
+ test:description "log:n3string genertating utf-8 literals was double encoding";
152
+ test:arguments """-n3 i18n/n3string.n3""".
153
+
154
+ :t1009b a test:CwmTest, test:CwmProofTest;
155
+ test:referenceOutput <xml-syntax/non-ascii-pred.rdf>;
156
+ n3test:inputDocument <xml-syntax/non-ascii-pred.rdf> ;
157
+ test:description "XML to XML with utf-8 non-ascii characters";
158
+ test:arguments "--rdf xml-syntax/non-ascii-pred.rdf".
159
+
160
+ :t1010 a test:CwmTest, test:CwmProofTest;
161
+ test:referenceOutput <ref/path1.n3>;
162
+ n3test:inputDocument <syntax/path1.n3> ;
163
+ test:description "Path syntax, simple";
164
+ test:arguments """syntax/path1.n3""".
165
+
166
+ :t1011 a test:CwmTest, test:CwmProofTest;
167
+ n3test:status "pending";
168
+ test:referenceOutput <ref/path2.n3>;
169
+ n3test:inputDocument <syntax/path2.n3> ;
170
+ test:description "Path syntax, more";
171
+ test:arguments """syntax/path2.n3""".
172
+
173
+ :t10115 a test:CwmTest, test:CwmProofTest;
174
+ test:referenceOutput <ref/numbers.n3>;
175
+ n3test:inputDocument <syntax/numbers.n3> ;
176
+ test:description "Number syntax";
177
+ test:arguments "syntax/numbers.n3".
178
+
179
+ :t1014 a test:CwmTest, test:CwmProofTest;
180
+ test:referenceOutput <ref/lstring-out.n3>;
181
+ n3test:inputDocument <syntax/lstring.n3> ;
182
+ test:description "N3 string nested triple quoting";
183
+ test:arguments """--n3 syntax/lstring.n3""".
184
+
185
+ :t1017 a test:CwmTest, test:CwmProofTest;
186
+ test:referenceOutput <ref/lists.n3>;
187
+ n3test:inputDocument <lists.n3> ;
188
+ test:description "parsing and generation of N3 list syntax";
189
+ test:arguments """-n3 lists.n3""".
190
+
191
+ :t1018 a test:CwmTest;
192
+ test:referenceOutput <ref/lists-simple-1.rdf>;
193
+ n3test:inputDocument <lists-simple.n3> ;
194
+ test:description "conversion of subset of N3 list syntax to RDF";
195
+ test:arguments """-n3 lists-simple.n3 -rdf""".
196
+
197
+ :t1018a1 a test:CwmTest, test:CwmProofTest;
198
+ test:referenceOutput <ref/itemType.n3>;
199
+ n3test:inputDocument <list/itemType.rdf> ;
200
+ test:description "make sure typeNodes in RDF/XML Collections are parsed";
201
+ test:arguments """-rdf list/itemType.rdf -n3""".
202
+
203
+ :t1019 a test:CwmTest, test:CwmProofTest;
204
+ test:referenceOutput <ref/prefix1.rdf>;
205
+ n3test:inputDocument <norm/fix.rdf> ;
206
+ test:description "Avoiding default namespace on attrs";
207
+ test:arguments """-rdf norm/fix.rdf""".
208
+
209
+ :t1020 a test:CwmTest;
210
+ test:referenceOutput <ref/prefix2.rdf>;
211
+ n3test:inputDocument <norm/fix.rdf> ;
212
+ test:description "Avoiding default namespace on attrs";
213
+ test:arguments """-rdf norm/fix.rdf -rdf=d""".
214
+
215
+ :t1021 a test:CwmTest;
216
+ test:referenceOutput <ref/prefix3.rdf>;
217
+ n3test:inputDocument <norm/fix.rdf> ;
218
+ test:description "Avoiding default namespace on attrs";
219
+ test:arguments """-rdf norm/fix.rdf -rdf=p""".
220
+
221
+ :t1022 a test:CwmTest, test:CwmProofTest;
222
+ test:referenceOutput <ref/daml-ex.n3>;
223
+ n3test:inputDocument <owl-ex.rdf> ;
224
+ test:description "Early DAML (now OWL) example in XML/RDF";
225
+ test:arguments """-rdf owl-ex.rdf -n3""".
226
+
227
+ :t1063 a test:CwmTest;
228
+ test:referenceOutput <ref/xml-syntax-basic-serialization.rdf>;
229
+ n3test:inputDocument <xml-syntax/basic-serialization.n3> ;
230
+ test:description "extremely basic RDF serialization test";
231
+ test:arguments """xml-syntax/basic-serialization.n3 --rdf""".
@@ -0,0 +1,10 @@
1
+ @prefix p: <file://www.example.org/personal_details#> .
2
+ @prefix m: <file://www.example.org/meeting_organization#> .
3
+
4
+ <file://www.example.org/people#fred>
5
+ p:GivenName "Fred";
6
+ p:hasEmail <mailto:fred@example.com>;
7
+ m:attending <file://meetings.example.com/cal#m1> .
8
+
9
+ <file://meetings.example.com/cal#m1>
10
+ m:homePage <file://meetings.example.com/m1/hp> .
@@ -0,0 +1,23 @@
1
+ @prefix dc: <http://purl.org/dc/elements/1.1/>.
2
+
3
+ <#x> <#prop> "simple string".
4
+
5
+ <#y> <#prop> """triple quoted
6
+ string with newlines in it.""".
7
+
8
+ <#z> <#prop> "string with \" escaped quote marks".
9
+
10
+ <#zz> <#escapes> "\\\"\a\b\f\r\t\v".
11
+
12
+ <#martin> <#surname> "D\u00fcrst".
13
+
14
+ <> dc:description """testing string parsing in N3.
15
+ Hmm... how much of this is in the primer?
16
+ How much should be there?
17
+ @@ Holding off on unicode until support
18
+ in python is sufficiently deployed
19
+ (e.g. python on tux doesn't grok,
20
+ nor does pythonwin on TimBL's laptop).
21
+ """.
22
+ # $Id: strquot.n3,v 1.4 2006-06-07 20:24:46 syosi Exp $
23
+
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rdf:RDF
3
+ xmlns:xp="http://au.com.Langdale/2000/Xpetal"
4
+
5
+ xmlns:cims="http://iec.ch/TC57/1999/rdf-schema-extensions-19990926#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
8
+
9
+ <rdf:Property
10
+ rdf:about="http://iec.ch/TC57/2003/CIM-schema-cim10#AirCompressor.DrivenBy_C
11
+ ombustionTurbine">
12
+ <rdfs:label xml:lang="en">DrivenBy_CombustionTurbine</rdfs:label>
13
+ <rdfs:comment>A CAES air compressor is driven by combustion
14
+ turbine</rdfs:comment>
15
+ <cims:profile>Nerc</cims:profile>
16
+ <rdfs:domain
17
+ rdf:resource="http://iec.ch/TC57/2003/CIM-schema-cim10#AirCompressor"/>
18
+ <rdfs:range
19
+ rdf:resource="http://iec.ch/TC57/2003/CIM-schema-cim10#CombustionTurbine"/>
20
+ <cims:multiplicity
21
+ rdf:resource="http://iec.ch/TC57/1999/rdf-schema-extensions-19990926#M:1"/>
22
+ <cims:inverseRoleName
23
+ rdf:resource="http://iec.ch/TC57/2003/CIM-schema-cim10#CombustionTurbine.Dri
24
+ ves_AirCompressor"/>
25
+ </rdf:Property>
26
+
27
+ </rdf:RDF>
@@ -0,0 +1,3 @@
1
+ @prefix : <http://example.org/base1#> .
2
+ @prefix a: <http://example.org/base2#> .
3
+ a:a a:b a:c.
@@ -0,0 +1,15 @@
1
+ # test: make sure that the prefix isn't used when it can't be
2
+ @prefix : <http://example.com/foo#>.
3
+
4
+
5
+ <http://example.com/foo#hyphen-ated> <http://example.com/foo#dot.ted>
6
+ <http://example.com/foo#hyphen-and.dot> .
7
+
8
+ <http://example.com/foo#minus-_underscore> <http://example.com/foo#under_score>
9
+ <http://example.com/foo#underscore_-minus> .
10
+
11
+ <http://example.com/foo#a> <http://example.com/foo#b> <http://example.com/foo#c>.
12
+
13
+
14
+ #end
15
+
@@ -0,0 +1 @@
1
+ :a = :b .
@@ -0,0 +1 @@
1
+ :a = "hello" .
@@ -0,0 +1,17 @@
1
+
2
+ # Test the cwm quick variable declarations
3
+
4
+
5
+ @prefix : <foo.n3#>. # Local stuff
6
+ @keywords . # Use no keywards
7
+
8
+
9
+ @forAll :x, :y, :z.
10
+ @forSome :a, :b, :c.
11
+
12
+ b a c. # Should simply use a as a local symbol, NOT as rdf:type.
13
+
14
+
15
+ #{ :x <#mother> :y. :y <#sister> :z } => { :x <#aunt> :z }.
16
+
17
+ #ends
@@ -0,0 +1,18 @@
1
+
2
+ # Test the cwm quick variable declarations
3
+
4
+
5
+ @keywords. # Use no keywards
6
+
7
+
8
+ @prefix : <foo.n3#>. # Local stuff
9
+
10
+ @forAll x, y, z.
11
+ @forSome a, b, c.
12
+
13
+ b a c. # Should simply use a as a local symbol, NOT as rdf:type.
14
+
15
+
16
+ # {x mother y. y sister z} => {x aunt z}. Comented out 7/7/7 - separate formula testing elsewhere
17
+
18
+ #ends
@@ -0,0 +1,26 @@
1
+ # Just see whether this can be input and re-output
2
+ #
3
+ # usage: cwm lstring.n3 | cwm
4
+ #
5
+ @prefix : <#>.
6
+
7
+
8
+ """ @prefix : <http://www.w3.org/2000/10/swap/test/crypto/acc.n3#> .
9
+ @prefix crypto: <http://www.w3.org/2000/10/swap/crypto#> .
10
+ @prefix log: <http://www.w3.org/2000/10/swap/log#> .
11
+ @prefix os: <http://www.w3.org/2000/10/swap/os#> .
12
+ @prefix string: <http://www.w3.org/2000/10/swap/string#> .
13
+
14
+ \"\"\"
15
+ MzE5MDcKCjM2ODkyMzAyMDE1MzgwMjY2NTU5MzgzNjMyMDQyOTM1Mjc4MDk3MzAwNzE4ODMzOTY3
16
+ NTY3NTk1Njg5MjE2Mjk0NzkyMzUyNTQ3OTQzMjI4MjM2MDEwNjQwMTAyMjcxODk0OTY2MzgzNjQ1
17
+ NDQyODQ5Njg3MzUzOTM2NzAyMTI5NDgxNDg4MzIxMzUyODEyMTc1NjIxNjE0NjE5Mzk2MDY4MjE2
18
+ Nzk1MzY0NjAxNjE0MzM5NDYzOTIyMDMwMDE4NTEyODMyMTg0NDIyMzI3MzcxNzE5MjcxMzY0ODY1
19
+ MjEzMzU1OTc4Nzk0OTIyMzQ4NDU5NTUxMTQ2MTcyNjE0MTk3ODI2NTg0NDA2Mzg2OTQwMTcwNTE4
20
+ OTY0MDQzNzMxNzEyODc1OTk3NjAyNjE4ODUzNDQ1Mw=3D=3D
21
+ \"\"\" a :RequestKey;
22
+ :authorityName <Tiina>;
23
+ :junk "327462sjsdfjsakdhfkjsafd32164321" .
24
+ """ a :test_string.
25
+
26
+ #ends