File: union.t

package info (click to toggle)
librdf-query-perl 2.919-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,580 kB
  • sloc: perl: 30,628; javascript: 131; sh: 13; makefile: 2
file content (78 lines) | stat: -rw-r--r-- 2,454 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
use strict;
use warnings;
no warnings 'redefine';
use Test::More;

use lib qw(. t);
require "models.pl";

use RDF::Query;

################################################################################
# Log::Log4perl::init( \q[
# 	log4perl.category.rdf.query.algebra.union          = TRACE, Screen
# 	
# 	log4perl.appender.Screen         = Log::Log4perl::Appender::Screen
# 	log4perl.appender.Screen.stderr  = 0
# 	log4perl.appender.Screen.layout = Log::Log4perl::Layout::SimpleLayout
# ] );
################################################################################

my @files	= map { "data/$_" } qw(about.xrdf foaf.xrdf);
my @models	= test_models( @files );
my $tests	= (scalar(@models) * 40);
plan tests => $tests;

foreach my $model (@models) {
	print "\n#################################\n";
	print "### Using model: $model\n\n";
	
	
	{
		my $query	= new RDF::Query ( <<"END", undef, undef, 'sparql' );
			PREFIX	foaf: <http://xmlns.com/foaf/0.1/>
			PREFIX	geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
			SELECT ?thing ?name
			WHERE	{
						{ ?thing a foaf:Person; foaf:name ?name }
						UNION
						{ ?thing a geo:Point; foaf:name ?name }
					}
END
		my $stream	= $query->execute( $model );
		isa_ok( $stream, 'RDF::Trine::Iterator' );
		my $count	= 0;
		while (my $row = $stream->next) {
			$count++;
			my ($thing, $name)	= @{ $row }{qw(thing name)};
			like( $thing->as_string, qr/^[<(]/, 'union person|point' );
			ok( $thing->isa('RDF::Trine::Node'), 'node: ' . $thing->as_string );
			ok( $name->isa('RDF::Trine::Node::Literal'), 'name: ' . $name->as_string );
		}
		is( $count, 6, 'expected result count' );
	}
	
	{
		my $query	= new RDF::Query ( <<"END", undef, undef, 'sparql' );
			PREFIX	foaf: <http://xmlns.com/foaf/0.1/>
			PREFIX	geo: <http://www.w3.org/2003/01/geo/wgs84_pos#>
			SELECT DISTINCT ?thing ?name
			WHERE	{
						{ ?thing a foaf:Person; foaf:name ?name }
						UNION
						{ ?thing a geo:Point; foaf:name ?name }
					}
END
		my $stream	= $query->execute( $model );
		isa_ok( $stream, 'RDF::Trine::Iterator' );
		my $count	= 0;
		while (my $row = $stream->next) {
			$count++;
			my ($thing, $name)	= @{ $row }{qw(thing name)};
			like( $thing->as_string, qr/^[<(]/, 'union person|point' );
			ok( $thing->isa('RDF::Trine::Node'), 'node: ' . $thing->as_string );
			ok( $name->isa('RDF::Trine::Node::Literal'), 'name: ' . $name->as_string );
		}
		is( $count, 6, 'expected distinct result count' );
	}
}