File: 07path.t

package info (click to toggle)
libxtm-perl 0.37-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,536 kB
  • ctags: 410
  • sloc: perl: 23,045; makefile: 37
file content (431 lines) | stat: -rw-r--r-- 12,379 bytes parent folder | download | duplicates (2)
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
# -*-perl-*-
use strict;
use Test::More tests => 208;

use XTM;
use Data::Dumper;
$Data::Dumper::Indent = 1;

require_ok ('XTM::Path');

isa_ok(new XTM::Path, 'XTM::Path');

# Jan bug report
{
  my $xtmp = new XTM::Path;

  my $t = $xtmp->create ('topic[occurrence[scope/topicRef/@href = "#xxx"]/resourceData[text() = "0"]]');
#  my $t = $xtmp->create ('occurrence/resourceData[text() = "0"]');
#print Dumper $t;

# This seems to create the 0 value to the resource just fine, and a later
# dump of the memory object reveals the value to be there. When I try to
# retrieve it later though XPath doesn't seem to want to set the value.

# print join ("--", $xtmp->find ('resourceData/text()', $t))."\n";
  my ($d) = $xtmp->find ('occurrence[scope/topicRef/@href = "#xxx"]resourceData/text()', $t);
  is ($d, '0', 'found 0 text');
}


use XTM;
use XTM::AsTMa;
my $tm = new XTM (tie => new XTM::AsTMa (auto_complete => 0,
					 text          => '
aaa (bbbbb cccc dddd)
bn: AAA
bn @ english: BBBB
oc: http://rumsti
in: blabla
in @ english:123 456

xxx (zzz)
bn: XXX
bn @ english: YYYY
oc: http://ramsti

(uuuu)
 bbbbb: aaa
 zzz:   xxx


(vvvv)
 bbbbb: aaa
 xxxx:  nnnn

'));


eval {
  my $xtmp = new XTM::Path (); # no default
  $xtmp->find ('anything');    # no default, either
};
ok ($@ =~ /no context/, 'die ok, no default');



my $xtmp = new XTM::Path (default => $tm);


$xtmp->find ('topic'); # just here to allocate a parser

# speed tests, normally not turned on
my $nrexperiments = 0;

if ($nrexperiments) {
  use Benchmark;
  my $t0 = new Benchmark;	
  foreach my $i (1..$nrexperiments) {
    foreach my $name (qw(XXX AAA YYY ZZZ UUU VVV WWW CCC DDD)) {
#      print ".";
      my @rs = $xtmp->find ('topic[baseNameString = ?xx]', undef, { xx => $name});
    }
  }
  my $t1 = new Benchmark;
  my $td = timediff($t1, $t0);
  warn "time spent with variables: ",timestr($td);
}

if ($nrexperiments) {
  use Benchmark;
  my $t2 = new Benchmark;
  foreach my $i (1..$nrexperiments) {
    foreach my $name (qw(XXX AAA YYY ZZZ UUU VVV WWW CCC DDD)) {
#      print ".";
      my @rs = $xtmp->find (qq{topic[baseNameString = "$name"]});
    }
  }
  my $t3 = new Benchmark;
  my $td = timediff($t3, $t2);
  warn "time spent without variables: ",timestr($td);
}


###print Dumper [ $xtmp->find ('topic[baseNameString = ?xx]', undef, { xx => "XXX"}) ];

if ($nrexperiments) {
   use Benchmark;
   my $t0 = new Benchmark;	
   foreach my $i (1..$nrexperiments) {
      my @rs = $xtmp->find ('association[member
                              [roleSpec/topicRef/@href = "#bbbbb"]
                              [topicRef/@href = "#aaa"]]
                           [member
                              [roleSpec/topicRef/@href = "#xxxx"]
                              [topicRef/@href = "#nnnn"]]');
      is (scalar @rs, 1, "speed test: $i");
   }
   my $t1 = new Benchmark;
   my $td = timediff($t1, $t0);
   warn "time spent: ",timestr($td);
}

#__END__




#__END__


#-- sensitive --------------------------------------------------------------------
my @paths = (
             [ qw(topic baseNameString) ],
             [ qw(topic baseName baseNameString) ],
             [ qw(topic instanceOf topicRef) ],
             [ qw(topic instanceOf subjectIndicatorRef) ],
             [ qw(association member roleSpec topicRef) ],
             [ qw(member topicRef) ],
             [ qw(topic occurrence resourceData) ],
             [ qw(topic occurrence resourceRef) ],
             );

foreach my $p (@paths) {
  for (my $i = 0; $i <= $#$p; $i++) {
    my $s = join ("/", @{$p}[0..$i]);
    my $o = $xtmp->create ($s);
#    warn "returned: ". Dumper $o;
    is (ref ($o), "XTM::".@{$p}[0], "$s context sensitive");
    $s = join ("/", @{$p}[1..$i]);
    next unless $s;
    my @r = $xtmp->find ($s, $o);
    is (scalar @r, 1, "$s found one again");
  }
}


#__END__

#-- context free -----------------------------------------------------------------
foreach my $e (qw(topic association baseName)) {
  is (ref($xtmp->create ($e)), "XTM::$e", "get context free $e");
}

#__END__

#-- pseudos ----------------------------------------------------------------------
my %pseudos = (
               'baseNameString[text() = "xxxx"]'                       => 'text()',
               'baseName/baseNameString[text() = "xxxx"]'              => 'text()',
               'baseName[baseNameString/text() = "xxxx"]'              => 'text()',
               'topic[baseName/baseNameString/text() = "xxx"]'         => 'baseNameString[text() = "xxx"]',
               'association[member[roleSpec/topicRef/@href = "xxxx"]]' => 'member',
               'topicRef[@href = "xxxx"]'                              => '@href',
               'topic[@id = "x123"]'                                   => '@id',
               'association[member
                              [roleSpec/topicRef/@href = "#role1"]
                              [topicRef/@href = "#player1"]]
                           [member
                              [roleSpec/topicRef/@href = "#role2"]
                              [topicRef/@href = "#player2"]]' => 'member[roleSpec/@href = "#role2"]',
               );

foreach my $p (keys %pseudos) {
  my $o = $xtmp->create ($p);
#  use Data::Dumper;
#  warn Dumper $o;
  my @r = $xtmp->find ($pseudos{$p}, $o);
  is (scalar @r, 1, "pseudos: $p found again: ". $pseudos{$p});
}


#-- nested --------------------------------------------------------
my %nested = ( 
             'association[member[roleSpec]]' => 2,
             'association[member[roleSpec/topicRef]]' => 2,
             'association[member[roleSpec/topicRef/@href]]' => 2,
             'association[member[roleSpec/topicRef/@href = "#bbbbb"]]' => 2,
             'association[member[roleSpec/topicRef/@href = "#bbbbb"][topicRef/@href = "#aaa"]]' => 2,
             'association[member[roleSpec/topicRef/@href = "#zzz"][topicRef/@href = "#xxx"]]' => 1,
             'baseName[scope/@href = "#english"]' => 2,
             'occurrence[scope/@href = "#english"]' => 1,
             );
foreach my $p (keys %nested) {
  my @r = $xtmp->find ($p, $tm);
  is (scalar @r, $nested{$p}, "nested: $p");
}

my @caputtos = (
                'baseNameString[text() != "xxxx"]', # wrong op
                'baseName[text() = "xxxx"]',        # ambiguous
                'association[member[roleSpec/@href = "xxxx"]]', # ambiguous
                'association[@id = "xxxx"]',        # not modifiable
                'text()',                           # no context
                '@href',                            # no context
                '@id',                              # no context
                );
foreach my $p (@caputtos) {
  eval {
     my $o = $xtmp->create ($p);
  };
  ok ($@, "error in $p detected ($@)");
}


my %directs = (
               'baseNameString[text() = "xxxx"]' => 'text()',
               );

foreach my $p (keys %directs) {
  my $o = $xtmp->create ($p);
#  use Data::Dumper;
#  warn Dumper $o;
  my @r = $xtmp->find ($directs{$p}, $o);
  is (scalar @r, 1, "direct: $p found again: ". $directs{$p});
}


my %indirects = (
               'topic[baseNameString = "xxxx"]' => 'baseName[text() = "xxxx"]',
               );

foreach my $p (keys %indirects) {
  my $o = $xtmp->create ($p);
#  use Data::Dumper;
#  warn Dumper $o;
  my @r = $xtmp->find ($indirects{$p}, $o);
  is (scalar @r, 1, "indirect: $p found again: ". $indirects{$p});
}




my @problems = (
                [ qw(topic xxx) ],  # syntactically wrong
                [ qw(topic member) ],
                [ qw(association member baseName) ],
                );

foreach my $p (@problems) {
  my $s = join ("/", @{$p});
  eval {
     my $o = $xtmp->create ($s);
  }; chomp $@;
  ok ($@, "error in $s detected ($@)");
}


#__END__

my @r;

@r = $xtmp->find ('/topic/@href');
#print map { (ref($_) ? ref($_) : $_)."\n" } @r;
for my $x ('#bbbbb', '#cccc', '#dddd', 'http://rumsti', '#zzz', 'http://ramsti') {
  ok (grep ($_ eq $x, @r), "attribute test: $x");
}

@r = $xtmp->find ('/topic/topicRef/@href');
#print map { (ref($_) ? ref($_) : $_)."\n" } @r;
for my $x ('#bbbbb', '#cccc', '#dddd', '#zzz') {
  ok (grep ($_ eq $x, @r), "attribute test: $x");
}

@r = $xtmp->find ('/topic/resourceRef/@href');
#print map { (ref($_) ? ref($_) : $_)."\n" } @r;
for my $x ( 'http://rumsti', 'http://ramsti') {
  ok (grep ($_ eq $x, @r), "attribute test: $x");
}

# number/type tests
my %tests = (
	     '/topic' => [ 2, 'XTM::topic' ],
	     '/topic/baseName' => [ 4, 'XTM::baseName' ],
	     '/topic/baseName/baseNameString' => [ 4, 'XTM::baseNameString' ],
	     '/topic/baseName/baseNameString/text()' => [ 4, '' ],
	     '/baseName' => [ 4, 'XTM::baseName' ],
	     '/baseName/baseNameString' => [ 4, 'XTM::baseNameString' ],
	     '/baseName/baseNameString/text()' => [ 4, '' ],
	     '/text()' => [ 6, '' ],
	     '/topic/text()' => [ 6, '' ],
	     '/topic[@id = "aaa"]' => [ 1, 'XTM::topic' ],
	     '/topic[@id != "aaa"]' => [ 1, 'XTM::topic' ],
	     '/topic[@id]' => [ 2, 'XTM::topic' ],
	     '/topic[@href]' => [ 2, 'XTM::topic' ],
	     '/topic/@href' => [ 14, undef ],
	     '/topic[@id = "xxx"]/@href' => [ 5, undef ],
	     '/topic[baseName/baseNameString = "AAA"]' => [ 1, 'XTM::topic' ],
	     '/topic[baseName = "AAA"]' => [ 1, 'XTM::topic' ],
	     '/topic[@id = "aaa"][@href = "xxx"]' => [ 0, 'XTM::topic' ],
	     '/topic[@id = "aaa"][@href = "http://rumsti"]' => [ 1, 'XTM::topic' ],
	     '/association' => [ 2, 'XTM::association' ],
	    );

foreach my $t (keys %tests) {
  my @r = $xtmp->find ($t);
  is (scalar @r, $tests{$t}->[0], "number test '$t'");
#print map { (ref($_) ? ref($_) : $_)."\n" } @r;
  foreach my $r (@r) {
    is (ref ($r), $tests{$t}->[1], "type test '$t'") if defined $tests{$t}->[1];
  }
}

# text() tests
@r = $xtmp->find ('/baseName/baseNameString/text()');
for my $x (qw(AAA BBBB XXX YYYY)) {
  ok (grep ($_ eq $x, @r), "text test: $x");
}


# attribute tests
@r = $xtmp->find ('/topic/@id');
for my $x (qw(aaa xxx)) {
  ok (grep ($_ eq $x, @r), "attribute test: $x");
}

foreach my $p (('/text()', '/topic/text()')) {
  @r = $xtmp->find ($p);
#  print Dumper \@r;
#  print map { (ref($_) ? ref($_) : $_)."\n" } @r;
  for my $x (('AAA', 'BBBB', 'blabla', '123 456', 'XXX', 'YYYY')) {
     ok (grep ($_ eq $x, @r), "text() test: $x, $p");
  }
}



# check good paths
my %good = (
	    'topic' => 'single element',
	    'topic   	  ' => 'trailing blanks/tabs',
	    'topic/baseName' => 'two elements',
	    'topic/baseName/baseNameString' => 'three elements',
	    'topic/@id' => 'with attribute in path',
	    'topic[@id = "xxx"]' => 'with attribute in predicate',
	    'association[.//member/resourceRef//@href]' => 'path in path',
	    'topic[@id = "xxx"]/baseName' => 'element, predicate, element',
	    'topic[occurrence/scope = "#something"]', 'element predicate',
	   );
while (my ($p,$e) = each %good) {
  eval {
    $xtmp->find ($p);
    };
  unlike ($@, qr/invalid syntax/i, "ok, $e");
}

# check broken paths
my %broken = (
	      'xxxx'   => 'no element',
	      'topic[]' => 'empty predicate',
	      'topic[]  xxx' => 'trailing text',
	      'baseName///baseNameString' => 'invalid axis',
	      '../baseNameString' => 'invalid axis 2',
	      '[topic]' => 'missing element',
	      'topic[@id == "xxx"]' => 'invalid operator',
	  );

# we do not need messages here
$::RD_ERRORS = undef;
$::RD_WARN = undef;

while (my ($p,$e) = each %broken) {
  eval {
    $xtmp->find ($p);
    };
  like ($@, qr/invalid syntax/i, "die ok, $e");
}



# Jan tests
$tm = new XTM (tie => new XTM::AsTMa (auto_complete => 0,
				      text          => '
cnn (channel)

'));

foreach (1..10) {
  {
    my $xtmp = new XTM::Path ();
    my ($chan) = $xtmp->find ('/topic[instanceOf/@href = "#channel"]', $tm);
    is (ref($chan), 'XTM::topic', "jan stress test find $_");
    #print Dumper $chan;
  }
  {
    my $xtmp = new XTM::Path ();
    my $t = $xtmp->create ('topic[instanceOf/topicRef/@href = "#channel-ontology"]');
    is (ref($t), 'XTM::topic', "jan stress test create $_");
    #  print Dumper $t;
  }
}



# check syntactically correct

#is (scalar $xtmp->find ('topic[@id == "aaa"]'), 1, 'topic[@id == "aaa"]') ;


__END__


#{
#my $xtmp = new XTM::Path (default => $tm);
#my $t = $xtmp->create ('topic[instanceOf/topicRef/@href = "#channel-ontology"]');
#print Dumper $t;
#}



__END__