1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
|
{-# LANGUAGE OverloadedStrings #-}
--------------------------------------------------------------------------------
-- See end of this file for licence information.
--------------------------------------------------------------------------------
-- |
-- Module : TurtleTest
-- Copyright : (c) 2013 Douglas Burke
-- License : GPL V2
--
-- Maintainer : Douglas Burke
-- Stability : experimental
-- Portability : OverloadedStrings
--
-- This Module contains test cases for the module
-- "Swish.RDF.Parser.Turtle" and "Swish.RDF.Formatter.Turtle" based
-- on the examples given in
-- <http://www.w3.org/TR/2013/CR-turtle-20130219/>.
--
--------------------------------------------------------------------------------
module Main where
import qualified Data.Set as S
import qualified Data.Text as T
import qualified Data.Text.Lazy as L
import qualified Test.Framework as TF
import qualified Test.Framework.Providers.HUnit as TF
import Data.Char (chr)
import Data.Maybe (fromMaybe)
import Network.URI (URI, parseURIReference)
import Swish.RDF.Graph ( RDFGraph
, RDFLabel (..)
, RDFTriple
, ToRDFLabel
-- , getArcs
, toRDFGraph
, toRDFTriple
)
import Swish.RDF.Formatter.Turtle (formatGraphAsText)
import Swish.RDF.Parser.Turtle (parseTurtle)
import Swish.RDF.Vocabulary.DublinCore (dcelemtitle)
import Swish.RDF.Vocabulary.FOAF (foafgivenName, foafknows, foafmbox, foafname, foafPerson)
import Swish.RDF.Vocabulary.RDF (rdfType, rdfFirst, rdfRest, rdfNil, rdfsLabel)
import Swish.RDF.Vocabulary.XSD (xsdDecimal, xsdDouble, xsdString)
import Test.HUnit (Assertion, (@=?), assertFailure)
triple :: (ToRDFLabel s, ToRDFLabel p, ToRDFLabel o)
=> s -> p -> o -> RDFTriple
triple = toRDFTriple
toURI :: String -> URI
toURI s = fromMaybe (error ("Internal error: invalid uri=" ++ s)) (parseURIReference s)
toGraph :: T.Text -> Either String RDFGraph
toGraph = flip parseTurtle Nothing . L.fromStrict
parseFail ::
String -- ^ error from parse
-> T.Text -- ^ original Turtle graph
-> Assertion
parseFail emsg gr =
assertFailure $ concat
["Unable to parse:\n", emsg, "\n*** Turtle=\n", T.unpack gr]
-- | Compare a Turtle format graph with its expected
-- contents. There is also a 'round trip' check, that
-- the contents, written out in Turtle format, then
-- read back in, match the original contents (this
-- only uses the list of triples, not the input Turtle
-- version).
--
-- It is quicker to just check the statements when we
-- know that the graph can not contain a blank node
-- - i.e. compare getArcs gr to S.fromList o - but
-- stick with graph equality checks, for now.
compareExample ::
String -- ^ label
-> T.Text -- ^ Turtle representation
-> [RDFTriple] -- ^ Corresponding triples
-> TF.Test
compareExample l t o =
let expectedGraph = toRDFGraph oset
egr = toGraph t
oset = S.fromList o
lbl = "example: " ++ l
compareTriples =
case egr of
Left e -> parseFail e t
Right gr -> expectedGraph @=? gr
compareRoundTrip =
let ttl = formatGraphAsText expectedGraph
tgr = toGraph ttl
in case tgr of
Left e -> parseFail e ttl
Right gr -> expectedGraph @=? gr
in TF.testGroup lbl
[ TF.testCase "base case" compareTriples
, TF.testCase "round-trip example" compareRoundTrip
]
-- | Check that both graphs (in Turtle format) are
-- the same, once parsed.
--
compareGraphs :: String -> T.Text -> T.Text -> TF.Test
compareGraphs l t1 t2 =
let ans = case (toGraph t1, toGraph t2) of
(Left e1, _) -> parseFail e1 t1 -- "graph 1 of " ++ l
(_, Left e2) -> parseFail e2 t2 -- "graph 2 of " ++ l
(Right gr1, Right gr2) -> gr1 @=? gr2
in TF.testCase ("example: " ++ l) ans
-- | Check that the list of triples creates the output
-- graph. It is intended for very-small graphs.
--
checkFormat :: String -> [RDFTriple] -> T.Text -> TF.Test
checkFormat lbl ts egr =
let gr = toRDFGraph $ S.fromList ts
ogr = formatGraphAsText gr
in TF.testCase ("format: " ++ lbl) $ egr @=? ogr
-- *********************************************
-- Examples from Turtle specification
-- *********************************************
-- would be nice to read these in from external files
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-intro>.
example1 :: T.Text
example1 =
T.unlines
[ "@base <http://example.org/> ."
, "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ."
, "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> ."
, "@prefix foaf: <http://xmlns.com/foaf/0.1/> ."
, "@prefix rel: <http://www.perceive.net/schemas/relationship/> ."
, ""
, "<#green-goblin>"
, " rel:enemyOf <#spiderman> ;"
, " a foaf:Person ; # in the context of the Marvel universe"
, " foaf:name \"Green Goblin\" ."
, ""
, "<#spiderman>"
, " rel:enemyOf <#green-goblin> ;"
, " a foaf:Person ;"
, " foaf:name \"Spiderman\", \"Человек-паук\"@ru ."
]
result1 :: [RDFTriple]
result1 =
let greengoblin = toURI "http://example.org/#green-goblin"
spiderman = toURI "http://example.org/#spiderman"
enemyOf = toURI "http://www.perceive.net/schemas/relationship/enemyOf"
ruName = LangLit "Человек-паук" "ru"
in [ triple greengoblin enemyOf spiderman
, triple greengoblin rdfType foafPerson
, triple greengoblin foafname ("Green Goblin"::String)
, triple spiderman enemyOf greengoblin
, triple spiderman rdfType foafPerson
, triple spiderman foafname ("Spiderman"::String)
, triple spiderman foafname ruName
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-iri>.
--
-- Unfortunately we do not support IRIs at this time.
example2_4 :: T.Text
example2_4 =
T.unlines
[ "# A triple with all absolute IRIs"
, "<http://one.example/subject1> <http://one.example/predicate1> <http://one.example/object1> ."
, ""
, "@base <http://one.example/> ."
, "<subject2> <predicate2> <object2> . # relative IRIs, e.g. http://one.example/subject2"
, ""
, "@prefix p: <http://two.example/> ."
, "p:subject3 p:predicate3 p:object3 . # prefixed name, e.g. http://two.example/subject3"
, ""
, "@prefix p: <path/> . # prefix p: now stands for http://one.example/path/"
, "p:subject4 p:predicate4 p:object4 . # prefixed name, e.g. http://one.example/path/subject4"
, ""
, "@prefix : <http://another.example/> . # empty prefix"
, ":subject5 :predicate5 :object5 . # prefixed name, e.g. http://another.example/subject5"
, ""
, ":subject6 a :subject7 . # same as :subject6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> :subject7 ."
, ""
, "# <http://伝言.example/?user=أكرم&channel=R%26D> a :subject8 . # a multi-script subject IRI ."
]
result2_4 :: [RDFTriple]
result2_4 =
let s1 = toURI "http://one.example/subject1"
p1 = toURI "http://one.example/predicate1"
o1 = toURI "http://one.example/object1"
s2 = toURI "http://one.example/subject2"
p2 = toURI "http://one.example/predicate2"
o2 = toURI "http://one.example/object2"
s3 = toURI "http://two.example/subject3"
p3 = toURI "http://two.example/predicate3"
o3 = toURI "http://two.example/object3"
s4 = toURI "http://one.example/path/subject4"
p4 = toURI "http://one.example/path/predicate4"
o4 = toURI "http://one.example/path/object4"
s5 = toURI "http://another.example/subject5"
p5 = toURI "http://another.example/predicate5"
o5 = toURI "http://another.example/object5"
s6 = toURI "http://another.example/subject6"
s7 = toURI "http://another.example/subject7"
-- Replace once we support IRIs
-- utf8 = toURI "http://伝言.example/?user=أكرم&channel=R%26D"
-- s8 = toURI "http://another.example/subject8"
in [ triple s1 p1 o1
, triple s2 p2 o2
, triple s3 p3 o3
, triple s4 p4 o4
, triple s5 p5 o5
, triple s6 rdfType s7
-- , triple utf8 rdfType s8
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#turtle-literals>.
--
-- *NOTE*: at present we do not match the document since untyped strings are
-- *not* mapped to xsd:string.
--
example2_5_1 :: T.Text
example2_5_1 =
T.unlines
[ "@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> ."
, "@prefix show: <http://example.org/vocab/show/> ."
, "@prefix xsd: <http://www.w3.org/2001/XMLSchema#> ." -- added to example
, ""
, "show:218 rdfs:label \"That Seventies Show\"^^xsd:string . # literal with XML Schema string datatype"
, "show:218 rdfs:label \"That Seventies Show\"^^<http://www.w3.org/2001/XMLSchema#string> . # same as above"
, "show:218 rdfs:label \"That Seventies Show\" . # same again"
, "show:218 show:localName \"That Seventies Show\"@en . # literal with a language tag"
, "show:218 show:localName 'Cette Série des Années Soixante-dix'@fr . # literal delimited by single quote"
, "show:218 show:localName \"Cette Série des Années Septante\"@fr-be . # literal with a region subtag"
, "show:218 show:blurb '''This is a multi-line # literal with embedded new lines and quotes"
, "literal with many quotes (\"\"\"\"\")"
, "and up to two sequential apostrophes ('').''' ."
]
result2_5_1 :: [RDFTriple]
result2_5_1 =
let show218 = toURI "http://example.org/vocab/show/218"
localName = toURI "http://example.org/vocab/show/localName"
blurb = toURI "http://example.org/vocab/show/blurb"
-- Should be TypedLit v xsdString; once this happens then nameLit
-- is not needed
name = "That Seventies Show"
nameLit = Lit name
blurbLit = Lit "This is a multi-line # literal with embedded new lines and quotes\nliteral with many quotes (\"\"\"\"\")\nand up to two sequential apostrophes ('')."
in [ triple show218 rdfsLabel (TypedLit name xsdString)
, triple show218 rdfsLabel nameLit
, triple show218 localName (LangLit name "en")
, triple show218 localName (LangLit "Cette Série des Années Soixante-dix" "fr")
, triple show218 localName (LangLit "Cette Série des Années Septante" "fr-be")
, triple show218 blurb blurbLit
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#abbrev>.
example2_5_2 :: T.Text
example2_5_2 =
T.unlines
[ "@prefix : <http://example.org/elements> ."
, "<http://en.wikipedia.org/wiki/Helium> "
, " :atomicNumber 2 ; # xsd:integer "
, " :atomicMass 4.002602 ; # xsd:decimal "
, " :specificGravity 1.663E-4 . # xsd:double"
]
result2_5_2 :: [RDFTriple]
result2_5_2 =
let helium = toURI "http://en.wikipedia.org/wiki/Helium"
aNum = toURI "http://example.org/elementsatomicNumber"
aMass = toURI "http://example.org/elementsatomicMass"
sGrav = toURI "http://example.org/elementsspecificGravity"
in [ triple helium aNum (2::Int)
, triple helium aMass (TypedLit "4.002602" xsdDecimal)
-- , triple helium sGrav (1.663e-4::Double)
, triple helium sGrav (TypedLit "1.663E-4" xsdDouble)
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#booleans>.
example2_5_3 :: T.Text
example2_5_3 =
T.unlines
[ "@prefix : <http://example.org/stats> ."
, "<http://somecountry.example/census2007>"
, " :isLandlocked false . # xsd:boolean"
]
result2_5_3 :: [RDFTriple]
result2_5_3 =
[ triple
(toURI "http://somecountry.example/census2007")
(toURI "http://example.org/statsisLandlocked")
False
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#BNodes>.
example2_6 :: T.Text
example2_6 =
T.unlines
[ "@prefix foaf: <http://xmlns.com/foaf/0.1/> ."
, ""
, "_:alice foaf:knows _:bob ."
, "_:bob foaf:knows _:alice . "
]
result2_6 :: [RDFTriple]
result2_6 =
let alice = Blank "one"
bob = Blank "two"
in [ triple alice foafknows bob
, triple bob foafknows alice
]
{-
If you write out result2_6 you get
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
[
foaf:knows [
foaf:knows []
]
] .
which is
:_a foaf:knows :_b
:_b foaf:knows :_c
which is obviously wrong
-}
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#unlabeled-bnodes>.
example2_7_a :: T.Text
example2_7_a =
T.unlines
[ "@prefix foaf: <http://xmlns.com/foaf/0.1/> ."
, ""
, "# Someone knows someone else, who has the name \"Bob\"."
, "[] foaf:knows [ foaf:name \"Bob\" ] ."
]
result2_7_a :: [RDFTriple]
result2_7_a =
let someone = Blank "p"
bob = Blank "23"
in [ triple someone foafknows bob
, triple bob foafname (Lit "Bob") -- TODO: change to TypedLit
]
{-
### Failure in: 0:6:1:"example: 2.7 a"
expected: Graph, formulae:
arcs:
(_:23,foaf:name,"Bob")
(_:p,foaf:knows,_:23)
but got: Graph, formulae:
arcs:
(_:1,foaf:name,"Bob")
(_:2,foaf:knows,_:3)
Writing out as N3 and Turtle give different results,
but not convinced round-tripping is sensible here,
since reading back in the N3 version generates the
invalid results above.
% ./dist/build/Swish/Swish -i=delme2.ttl -n3 -o
Swish 0.9.0.4
@prefix : <#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
[
foaf:knows [
foaf:name "Bob"
]
] .
% ./dist/build/Swish/Swish -i=delme2.ttl -ttl -o
Swish 0.9.0.4
@prefix : <#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
[]
foaf:knows [
foaf:name "Bob"
]
.
Need to look at this to see what the difference is.
-}
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#unlabeled-bnodes>.
example2_7_b1 :: T.Text
example2_7_b1 =
T.unlines
[ "@prefix foaf: <http://xmlns.com/foaf/0.1/> ."
, ""
, "[ foaf:name \"Alice\" ] foaf:knows ["
, " foaf:name \"Bob\" ;"
, " foaf:knows ["
, " foaf:name \"Eve\" ] ;"
, " foaf:mbox <bob@example.com> ] ."
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#unlabeled-bnodes>.
example2_7_b2 :: T.Text
example2_7_b2 =
T.unlines
[ "_:a <http://xmlns.com/foaf/0.1/name> \"Alice\" ."
, "_:a <http://xmlns.com/foaf/0.1/knows> _:b ."
, "_:b <http://xmlns.com/foaf/0.1/name> \"Bob\" ."
, "_:b <http://xmlns.com/foaf/0.1/knows> _:c ."
, "_:c <http://xmlns.com/foaf/0.1/name> \"Eve\" ."
, "_:b <http://xmlns.com/foaf/0.1/mbox> <bob@example.com> ."
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#collections>.
example2_8 :: T.Text
example2_8 =
T.unlines
[ "@prefix : <http://example.org/foo> ."
, "# the object of this triple is the RDF collection blank node"
, ":subject :predicate ( :a :b :c ) ."
, ""
, "# an empty collection value - rdf:nil"
, ":subject :predicate2 () ."
]
result2_8 :: [RDFTriple]
result2_8 =
let s = toURI "http://example.org/foosubject"
p = toURI "http://example.org/foopredicate"
p2 = toURI "http://example.org/foopredicate2"
a = toURI "http://example.org/fooa"
b = toURI "http://example.org/foob"
c = toURI "http://example.org/fooc"
l1 = Blank "l1"
l2 = Blank "l2"
l3 = Blank "l3"
in [ triple s p l1
, triple l1 rdfFirst a
, triple l1 rdfRest l2
, triple l2 rdfFirst b
, triple l2 rdfRest l3
, triple l3 rdfFirst c
, triple l3 rdfRest rdfNil
, triple s p2 rdfNil
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-examples>.
example3_a :: T.Text
example3_a =
T.unlines
[ "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ."
, "@prefix dc: <http://purl.org/dc/elements/1.1/> ."
, "@prefix ex: <http://example.org/stuff/1.0/> ."
, ""
, "<http://www.w3.org/TR/rdf-syntax-grammar>"
, " dc:title \"RDF/XML Syntax Specification (Revised)\" ;"
, " ex:editor ["
, " ex:fullname \"Dave Beckett\";"
, " ex:homePage <http://purl.org/net/dajobe/>"
, " ] ."
]
result3_a :: [RDFTriple]
result3_a =
let g = toURI "http://www.w3.org/TR/rdf-syntax-grammar"
exEditor = toURI "http://example.org/stuff/1.0/editor"
exFullName = toURI "http://example.org/stuff/1.0/fullname"
exHomePage = toURI "http://example.org/stuff/1.0/homePage"
bn = Blank "foo" -- "$123_"
in [ triple g dcelemtitle (Lit "RDF/XML Syntax Specification (Revised)")
, triple g exEditor bn
, triple bn exFullName (Lit "Dave Beckett")
, triple bn exHomePage (toURI "http://purl.org/net/dajobe/")
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-examples>.
example3_b1 :: T.Text
example3_b1 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, ":a :b ( \"apple\" \"banana\" ) ."
]
example3_b2 :: T.Text
example3_b2 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ."
, ":a :b"
, " [ rdf:first \"apple\";"
, " rdf:rest [ rdf:first \"banana\";"
, " rdf:rest rdf:nil ]"
, " ] . "
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-examples>.
example3_c1 :: T.Text
example3_c1 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, ""
, ":a :b \"The first line\\nThe second line\\n more\" ."
]
example3_c2 :: T.Text
example3_c2 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, ""
-- line feeds using U+000A
, ":a :b \"\"\"The first line"
, "The second line"
, " more\"\"\" ."
]
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-examples>.
example3_d1 :: T.Text
example3_d1 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, "(1 2.0 3E1) :p \"w\" ."
]
example3_d2 :: T.Text
example3_d2 =
T.unlines
[ "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ."
, "@prefix : <http://example.org/stuff/1.0/> ."
, "_:b0 rdf:first 1 ;"
, " rdf:rest _:b1 ."
, "_:b1 rdf:first 2.0 ;"
, " rdf:rest _:b2 ."
, "_:b2 rdf:first 3E1 ;"
, " rdf:rest rdf:nil ."
, "_:b0 :p \"w\" . "
]
{-
I do not see how this representation is valid, and rapper version 2.0.9
does not parse it (well, it reports the triples and then
fails) so I am skipping this test. Am I mis-reading the test?
See the discussion at http://lists.w3.org/Archives/Public/public-rdf-comments/2013May/0043.html
which suggests that this is indeed invalid.
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-examples>.
--
example3_e1 :: T.Text
example3_e1 =
T.unlines
[ "@prefix : <http://example.org/stuff/1.0/> ."
, "(1 [:p :q] ( 2 ) ) ."
]
example3_e2 :: T.Text
example3_e2 =
T.unlines
[ "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ."
, "@prefix : <http://example.org/stuff/1.0/> ."
, " _:b0 rdf:first 1 ;"
, " rdf:rest _:b1 ."
, " _:b1 rdf:first _:b2 ."
, " _:b2 :p :q ."
, " _:b1 rdf:rest _:b3 ."
, " _:b3 rdf:first _:b4 ."
, " _:b4 rdf:first 2 ;"
, " rdf:rest rdf:nil ."
, " _:b3 rdf:rest rdf:nil ."
]
-}
-- | From <http://www.w3.org/TR/2013/CR-turtle-20130219/#sec-parsing-example>.
example7_4 :: T.Text
example7_4 =
T.unlines
[ "@prefix ericFoaf: <http://www.w3.org/People/Eric/ericP-foaf.rdf#> ."
, "@prefix : <http://xmlns.com/foaf/0.1/> ."
, "ericFoaf:ericP :givenName \"Eric\" ;"
, " :knows <http://norman.walsh.name/knows/who/dan-brickley> ,"
, " [ :mbox <mailto:timbl@w3.org> ] ,"
, " <http://getopenid.com/amyvdh> ."
]
result7_4 :: [RDFTriple]
result7_4 =
let ericP = toURI "http://www.w3.org/People/Eric/ericP-foaf.rdf#ericP"
db = toURI "http://norman.walsh.name/knows/who/dan-brickley"
timbl = toURI "mailto:timbl@w3.org"
amyvdh = toURI "http://getopenid.com/amyvdh"
timbn = Blank "node"
in [ triple ericP foafgivenName (Lit "Eric")
, triple ericP foafknows db
, triple ericP foafknows timbn
, triple ericP foafknows amyvdh
, triple timbn foafmbox timbl
]
-- *********************************************
-- Set up test suites
-- *********************************************
initialTestSuite :: TF.Test
initialTestSuite =
TF.testGroup "initial"
[ compareExample "1" example1 result1
, compareExample "2.4" example2_4 result2_4
, compareExample "2.5.1" example2_5_1 result2_5_1
, compareExample "2.5.2" example2_5_2 result2_5_2
, compareExample "2.5.3" example2_5_3 result2_5_3
, compareExample "2.6" example2_6 result2_6
, compareExample "2.7 a" example2_7_a result2_7_a
, compareGraphs "2.7 b" example2_7_b1 example2_7_b2
, compareExample "2.8" example2_8 result2_8
, compareExample "3 a" example3_a result3_a
, compareGraphs "3 b" example3_b1 example3_b2
, compareGraphs "3 c" example3_c1 example3_c2
, compareGraphs "3 d" example3_d1 example3_d2
-- , compareGraphs "3 e" example3_e1 example3_e2 -- at present _e1 does not parse
, compareExample "7.4" example7_4 result7_4
]
-- Cases to try and improve the test coverage
urnA, urnB :: URI
urnA = toURI "urn:a"
urnB = toURI "urn:b"
trips :: T.Text -> [RDFTriple]
trips t = [triple urnA urnB (Lit t)]
coverageCases :: TF.Test
coverageCases =
TF.testGroup "coverage"
[ -- This was actually more a problem with output rather than input.
compareExample "cov1"
"<urn:a> <urn:b> \"' -D RT @madeupname: \\\"Foo \\u0024 Zone\\\" \\U0000007e:\\\"\\\"\\\"D\" ."
(trips "' -D RT @madeupname: \"Foo $ Zone\" ~:\"\"\"D")
, compareExample "cov2"
"<urn:a> <urn:b> \"\"\"\"Bob \\\"\\uF481\"\"\"."
(trips (T.snoc "\"Bob \"" (chr 0xf481)))
{-
rapper will parse this but I do not think it matches
the Turtle grammar
, compareExample "cov2-option"
"<urn:a> <urn:b> \"\"\"\"Bob \"\\U0001F481\"\"\""
(trips "\"Bob \"\\U0001F481")
-}
, compareExample "cov3-1"
"<urn:a> <urn:b> \"\"\"\\\"A quoted string.\\\"\"\"\"."
(trips "\"A quoted string.\"")
, compareExample "cov3-2"
"<urn:a> <urn:b> \"\"\"\\\"\\\"A quoted string.\\\"\"\"\"."
(trips "\"\"A quoted string.\"")
, compareExample "cov3-3"
"<urn:a> <urn:b> \"\"\"\\\"A quoted string.\\\"\\\"\"\"\"."
(trips "\"A quoted string.\"\"")
, compareExample "cov4"
"<urn:a> <urn:b> \"3\\\\8\\\\11\" ."
(trips "3\\8\\11")
, checkFormat "\\f" (trips "A\ffB")
"@prefix : <urn:a> .\n<urn:a> <urn:b> \"A\\u000CfB\" .\n"
]
-- Extracted from failures seen when using the W3C test suite
-- at <http://www.w3.org/2013/TurtleTests/>.
lt1T :: T.Text
lt1T = "<urn:a> <urn:b> \"\"\"A long string. \"\"\"@en-UK ."
lt1A :: [RDFTriple]
lt1A =
[ triple (toURI "urn:a") (toURI "urn:b")
(LangLit "A long string. " "en-UK")
]
le1T :: T.Text
le1T = "@prefix : <urn:example/>.<urn:a> <urn:b:> :c\\~d."
le1A :: [RDFTriple]
le1A =
[ triple (toURI "urn:a") (toURI "urn:b:") (toURI "urn:example/c~d") ]
w3cCases :: TF.Test
w3cCases =
TF.testGroup "w3c"
[ compareExample "lang-tag1" lt1T lt1A
, compareExample "localEscapes" le1T le1A
]
--
allTests :: [TF.Test]
allTests =
[ initialTestSuite
, coverageCases
, w3cCases
]
main :: IO ()
main = TF.defaultMain allTests
--------------------------------------------------------------------------------
--
-- Copyright (c) 2013 Douglas Burke
-- All rights reserved.
--
-- This file is part of Swish.
--
-- Swish is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- Swish is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with Swish; if not, write to:
-- The Free Software Foundation, Inc.,
-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
--------------------------------------------------------------------------------
|