File: pattern_ok.t

package info (click to toggle)
libtest-rdf-perl 1.22-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 232 kB
  • sloc: perl: 329; makefile: 2; sh: 1
file content (170 lines) | stat: -rw-r--r-- 3,695 bytes parent folder | download | duplicates (7)
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
use Test::Tester tests=>65;
use Test::RDF;
use RDF::Trine qw[iri variable literal statement];

check_test(
  sub {
    pattern_target(100);
  },
  {
    ok   => 0,
    name => 'Data is not an RDF::Trine::Model or RDF::Trine::Store.',
  },
  'pattern_target - invalid target'
);

check_test(
  sub {
    pattern_ok();
  },
  {
    ok   => 0,
    name => 'Pattern match',
    diag => 'No target defined for pattern match. Call pattern_target test first.',
  },
  'pattern_ok - uninitialised target'
);

check_test(
  sub {
    my $store = RDF::Trine::Store->temporary_store;
    pattern_target($store);
  },
  {
    ok   => 1,
    name => 'Data is an RDF::Trine::Store.',
  },
  'pattern_target - target store'
);

my $model;
check_test(
  sub {
    pattern_target($model = RDF::Trine::Model->new);
  },
  {
    ok   => 1,
    name => 'Data is an RDF::Trine::Model.',
  },
  'pattern_target - target model'
);

RDF::Trine::Parser->new('turtle')->parse_into_model('http://example.org', <<'TURTLE', $model);
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

[] a foaf:Person ;
  foaf:name "Kjetil Kjernsmo" ;
  foaf:page <http://search.cpan.org/~kjetilk/> .
[] a foaf:Person ;
  foaf:name "Toby Inkster" ;
  foaf:page <http://search.cpan.org/~tobyink/> .
TURTLE

my $foaf = RDF::Trine::Namespace->new('http://xmlns.com/foaf/0.1/');

check_test(
  sub {
    pattern_ok(
      statement(variable('who'), $foaf->name, literal('Kjetil Kjernsmo')),
      statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
      );
  },
  {
    ok   => 1,
  },
  'pattern_ok - statement list'
);

check_test(
  sub {
    pattern_ok(
      RDF::Trine::Pattern->new(
        statement(variable('who'), $foaf->name, literal('Kjetil Kjernsmo')),
        statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
        ),
      );
  },
  {
    ok   => 1,
  },
  'pattern_ok - pattern'
);

check_test(
  sub {
    pattern_ok(
      statement(variable('who'), $foaf->name, literal('Kjetil Kjernsmo')),
      statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
      "FOO",
      );
  },
  {
    ok   => 1,
    name => 'FOO',
  },
  'pattern_ok - statement list plus message'
);

check_test(
  sub {
    pattern_ok(
      RDF::Trine::Pattern->new(
        statement(variable('who'), $foaf->name, literal('Kjetil Kjernsmo')),
        statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
        ),
      "FOO",
      );
  },
  {
    ok   => 1,
    name => 'FOO',
  },
  'pattern_ok - pattern plus message'
);

check_test(
  sub {
    pattern_ok(
      statement(variable('who'), $foaf->name, literal('Toby Inkster')),
      statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
      );
  },
  {
    ok   => 0,
	 diag => 'Pattern as a whole did not match'
  },
  'pattern_ok - statement list should fail'
);

check_test(
  sub {
    pattern_ok(
      RDF::Trine::Pattern->new(
        statement(variable('who'), $foaf->name, literal('Toby Inkster')),
        statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
        ),
      );
  },
  {
    ok   => 0,
	 diag => 'Pattern as a whole did not match'
  },
  'pattern_ok - pattern should fail'
);

check_test(
  sub {
    pattern_ok(
      RDF::Trine::Pattern->new(
        statement(variable('who'), $foaf->name, literal('DAHUT')),
        statement(variable('who'), $foaf->page, iri('http://search.cpan.org/~kjetilk/')),
        ),
      );
  },
  {
    ok   => 0,
	 diag => "Triples that had no results:\n(triple ?who <http://xmlns.com/foaf/0.1/name> \"DAHUT\")"
  },
  'pattern_ok - pattern should fail'
);