File: xql_recurse2.t

package info (click to toggle)
libxml-xql-perl 0.68-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 772 kB
  • sloc: perl: 5,842; xml: 4,007; makefile: 16
file content (71 lines) | stat: -rw-r--r-- 1,068 bytes parent folder | download | duplicates (5)
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
BEGIN {print "1..3\n";}
END {print "not ok 1\n" unless $loaded;}
use XML::XQL;
use XML::XQL::DOM;
use XML::XQL::Debug;
$loaded = 1;
print "ok 1\n";

my $test = 1;
sub assert_ok
{
    my $ok = shift;
    print "not " unless $ok;
    ++$test;
    print "ok $test\n";
    $ok;
}

sub assert_output
{
    my $str = shift;
    $^W=0;
    my $data = join('',<DATA>);
#print "{{$data}}\n{{$str}}\n";
    assert_ok ($str eq $data);
}
#Test 2

$dom = new XML::DOM::Parser;
my $str = <<END;
<x>
  <q>
    <y id="A"/>
    <y id="B"/>
  </q>
  <q>
    <y id="C"/>
    <y id="D"/>
  </q>
  <y id="E"/>
</x>
END

my $doc = $dom->parse ($str);
assert_ok ($doc); 

@result = XML::XQL::solve ('x//y[0]', $doc);

$result = XML::XQL::Debug::str (\@result);

#print $result;
assert_output ($result);

__DATA__
<array>
  <item index='0'>
    <obj type='XML::DOM::Element'>
<y id="A"/>
    </obj>
  </item>
  <item index='1'>
    <obj type='XML::DOM::Element'>
<y id="C"/>
    </obj>
  </item>
  <item index='2'>
    <obj type='XML::DOM::Element'>
<y id="E"/>
    </obj>
  </item>
</array>