File: 10_deep_prop_recursive.t

package info (click to toggle)
librdf-helper-perl 2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 336 kB
  • sloc: perl: 1,827; makefile: 11
file content (144 lines) | stat: -rw-r--r-- 3,845 bytes parent folder | download
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
use Test::More;

use RDF::Helper;
use Data::Dumper;

my $xml_string = undef;
{
    local $/= undef;
    $xml_string = <DATA>;
}

my @models;

#----------------------------------------------------------------------
# RDF::Redland
#----------------------------------------------------------------------
SKIP: {
	eval { require RDF::Redland };
	skip "RDF::Redland not installed", 11 if $@;
	
	my $rdf = RDF::Helper->new(
		BaseInterface => 'RDF::Redland',
		BaseURI => 'http://example.com/'
	);
	
	ok($rdf->include_rdfxml(xml => $xml_string), 'include_rdfxml');
	ok($rdf->exists('http://example.com/first', 'http://example.com/value', '1'), 'test t:testa (1)');
	
	my $first	= $rdf->property_hash( 'http://example.com/first' );
	is_deeply( $first, {
		'next'		=> 'http://example.com/next',
		'value'		=> '1',
		'rdf:type'	=> 'http://example.com/item'
	}, 'first non-recursive' );
	
	my $second	= $rdf->property_hash( 'http://example.com/second' );
	is_deeply( $second, {
		'next'		=> 'http://example.com/third',
		'value'		=> '2',
		'rdf:type'	=> 'http://example.com/item'
	}, 'second non-recursive' );
	

	my $second_deep	= $rdf->deep_prophash( 'http://example.com/second' );
	is_deeply( $second_deep, {
		'next'		=> {
						'next'		=> 'http://example.com/next',
						'value'		=> '3',
						'rdf:type'	=> 'http://example.com/item',
					},
		'value'		=> '2',
		'rdf:type'	=> 'http://example.com/item'
	}, 'second non-recursive' );
	
	my %expect;
	%expect	= (
		'next'		=> \%expect,
		'value'		=> '9',
		'rdf:type'	=> 'http://example.com/item'
	);
	my $deep	= $rdf->deep_prophash( 'http://example.com/recurse' );
	is_deeply( $deep, \%expect, 'deeply recursive' );
}

#----------------------------------------------------------------------
# RDF::Trine
#----------------------------------------------------------------------
SKIP: {
	eval { require RDF::Trine };
	skip "RDF::Trine not installed", 11 if $@;
	
	my $rdf = RDF::Helper->new(
		BaseInterface => 'RDF::Trine',
		BaseURI => 'http://example.com/'
	);

	ok($rdf->include_rdfxml(xml => $xml_string), 'include_rdfxml');

    ok($rdf->exists('http://example.com/first', 'http://example.com/value', '1'), 'test t:testa (1)');

	my $first	= $rdf->property_hash( 'http://example.com/first' );

    is_deeply( $first, {
		'next'		=> 'http://example.com/next',
		'value'		=> '1',
		'rdf:type'	=> 'http://example.com/item'
	}, 'first non-recursive' );

	my $second	= $rdf->property_hash( 'http://example.com/second' );
	is_deeply( $second, {
		'next'		=> 'http://example.com/third',
		'value'		=> '2',
		'rdf:type'	=> 'http://example.com/item'
	}, 'second non-recursive' );
	

	my $second_deep	= $rdf->deep_prophash( 'http://example.com/second' );
	is_deeply( $second_deep, {
		'next'		=> {
						'next'		=> 'http://example.com/next',
						'value'		=> '3',
						'rdf:type'	=> 'http://example.com/item',
					},
		'value'		=> '2',
		'rdf:type'	=> 'http://example.com/item'
	}, 'second non-recursive' );
	
	my %expect;
	%expect	= (
		'next'		=> \%expect,
		'value'		=> '9',
		'rdf:type'	=> 'http://example.com/item'
	);
	my $deep	= $rdf->deep_prophash( 'http://example.com/recurse' );
	is_deeply( $deep, \%expect, 'deeply recursive' );
	
}

done_testing();

__DATA__
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
		xmlns="http://example.com/">
	<item rdf:about="http://example.com/first">
		<value>1</value>
		<next rdf:resource="http://example.com/next" />
	</item>

	<item rdf:about="http://example.com/second">
		<value>2</value>
		<next rdf:resource="http://example.com/third" />
	</item>
	<item rdf:about="http://example.com/third">
		<value>3</value>
		<next rdf:resource="http://example.com/next" />
	</item>
	
	<item rdf:about="http://example.com/recurse">
		<value>9</value>
		<next rdf:resource="http://example.com/recurse" />
	</item>
</rdf:RDF>