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
|
#!/usr/bin/env perl
use strict;
use warnings;
no warnings 'redefine';
use Test::More;
use lib qw(. t);
require "models.pl";
my @files = map { "data/$_" } qw(about.xrdf foaf.xrdf Flower-2.rdf);
my @models = test_models( @files );
my $tests = 1 + (scalar(@models) * 23);
plan tests => $tests;
use_ok( 'RDF::Query' );
foreach my $model (@models) {
print "\n#################################\n";
print "### Using model: $model\n\n";
{
my $query = new RDF::Query ( <<"END", undef, undef, 'sparql' );
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
CONSTRUCT { ?person foaf:name ?name }
WHERE { ?person foaf:firstName ?name }
END
my $stream = $query->execute( $model );
isa_ok( $stream, 'RDF::Trine::Iterator', 'stream' );
my $count = 0;
while (my $stmt = $stream->next()) {
my $p = $stmt->predicate;
my $s = $p->as_string;
ok( $s, "person with firstName: $s" );
$count++;
}
is( $count, 4, 'expected foaf:firstName in construct count' );
}
{
my $query = new RDF::Query ( <<"END", undef, undef, 'sparql' );
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
CONSTRUCT { _:somebody foaf:name ?name; foaf:made ?thing }
WHERE { ?thing dc:creator ?name }
END
my $stream = $query->execute( $model );
isa_ok( $stream, 'RDF::Trine::Iterator', 'stream' );
my $count = 0;
while (my $stmt = $stream->next) {
my $p = $stmt->predicate;
my $s = $p->as_string;
like( $s, qr#foaf/0.1/(name|made)#, "predicate looks good: $s" );
$count++;
}
is( $count, 8, 'expected dc:creator in construct count' );
}
{
my $query = new RDF::Query ( <<"END", undef, undef, 'sparql' );
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
CONSTRUCT { ?p a foaf:Person ; foaf:aimChatID ?a }
WHERE { ?p a foaf:Person . OPTIONAL { ?p foaf:aimChatID ?a } }
END
my $stream = $query->execute( $model );
isa_ok( $stream, 'RDF::Trine::Iterator', 'stream' );
my $count = 0;
while (my $stmt = $stream->next) {
my $p = $stmt->predicate;
my $s = $p->as_string;
like( $s, qr!(foaf/0.1/aimChatID)|(rdf-syntax-ns#type)!, "predicate looks good: $s" );
$count++;
}
is( $count, 5, 'expected optional foaf:aimChatID in construct count' );
}
}
|