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
|
use Test::Tester tests => 118;
use Test::RDF;
use RDF::Trine;
my $model = RDF::Trine::Model->temporary_model;
my $parser = RDF::Trine::Parser->new( 'turtle' );
$parser->parse_into_model( 'http://example.org', '</foo> <http://www.w3.org/2000/01/rdf-schema#label> "This is a Another test"@en ; a </Bar> .', $model);
check_test(
sub {
has_subject('http://example.org/foo', $model, 'Has correct subject URI');
},
{
ok => 1,
name => 'Has correct subject URI',
}
);
check_test(
sub {
has_subject('http://example.com/foo', $model, 'Has not correct subject URI');
},
{
ok => 0,
name => 'Has not correct subject URI',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_subject('"This is a Another test"@en', $model, 'Has literal not subject');
},
{
ok => 0,
name => 'Has literal not subject',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_predicate('http://www.w3.org/2000/01/rdf-schema#label', $model, 'Has correct predicate URI');
},
{
ok => 1,
name => 'Has correct predicate URI',
}
);
check_test(
sub {
has_predicate('http://example.com/foo', $model, 'Has not correct predicate URI');
},
{
ok => 0,
name => 'Has not correct predicate URI',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_object_uri('http://example.org/Bar', $model, 'Has correct object URI');
},
{
ok => 1,
name => 'Has correct object URI',
}
);
check_test(
sub {
has_object_uri('http://example.com/Bar', $model, 'Has not correct object URI');
},
{
ok => 0,
name => 'Has not correct object URI',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_object_uri('"This is a Another test"@en', $model, 'Has literal not URI');
},
{
ok => 0,
name => 'Has literal not URI',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_uri('http://example.org/foo', $model, 'Has correct subject URI');
},
{
ok => 1,
name => 'Has correct subject URI',
}
);
check_test(
sub {
has_uri('http://www.w3.org/2000/01/rdf-schema#label', $model, 'Has correct predicate URI');
},
{
ok => 1,
name => 'Has correct predicate URI',
}
);
check_test(
sub {
has_uri('http://example.org/Bar', $model, 'Has correct object URI');
},
{
ok => 1,
name => 'Has correct object URI',
}
);
check_test(
sub {
has_uri('http://example.com/foo', $model, 'Has not correct URI');
},
{
ok => 0,
name => 'Has not correct URI',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
has_uri('"This is a Another test"@en', $model, 'Has a literal');
},
{
ok => 0,
name => 'Has a literal',
diag => 'No matching URIs found in model'
}
);
check_test(
sub {
hasnt_uri('http://example.org/foo', $model, 'Has correct subject URI');
},
{
ok => 0,
diag => 'Matching URIs found in model',
name => 'Has correct subject URI',
}
);
check_test(
sub {
hasnt_uri('http://www.w3.org/2000/01/rdf-schema#label', $model, 'Has correct predicate URI');
},
{
ok => 0,
diag => 'Matching URIs found in model',
name => 'Has correct predicate URI',
}
);
check_test(
sub {
hasnt_uri('http://example.org/Bar', $model, 'Has correct object URI');
},
{
ok => 0,
diag => 'Matching URIs found in model',
name => 'Has correct object URI',
}
);
check_test(
sub {
hasnt_uri('http://example.com/foo', $model, 'Has not correct URI');
},
{
ok => 1,
name => 'Has not correct URI',
}
);
check_test(
sub {
hasnt_uri('"This is a Another test"@en', $model, 'Has a literal');
},
{
ok => 1,
name => 'Has a literal',
}
);
|