File: url.t

package info (click to toggle)
libcatmandu-rdf-perl 0.32-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 220 kB
  • sloc: perl: 469; sh: 4; makefile: 2
file content (120 lines) | stat: -rw-r--r-- 3,494 bytes parent folder | download | duplicates (3)
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
use strict;
use warnings;
use open ':std', ':encoding(utf8)';
use Test::More;
use Catmandu -all;
use Catmandu::RDF;
use RDF::Trine;
use Encode;
use HTTP::Response;
use Test::LWP::UserAgent;
use utf8;

RDF::Trine->default_useragent(user_agent());

{
    note("importing turtle");
    my $importer = importer('RDF', url => 'http://www.w3.org/TR/examples/example1.ttl', type => 'turtle');
    my $aref = $importer->first;
    is $aref->{'http://www.w3.org/TR/rdf-syntax-grammar'}->{dc_title},
       'RDF/XML Syntax Specification (Revised)@', 'Import from URL';
} 

{
    note("importing rdf/xml");
    my $importer = importer('RDF', url => 'http://www.w3.org/TR/examples/example2.rdf', type => 'xml');
    my $aref = $importer->first;
    is $aref->{'http://www.w3.org/TR/rdf-syntax-grammar'}->{dc_title},
       'RDF/XML Syntax Specification (Revised)@', 'Import from URL';
}

{
    note("importing NTriples");
    my $importer = importer('RDF', url => 'http://www.w3.org/TR/examples/example3.nt', type => 'NTriples');
    my $aref = $importer->first;
    is $aref->{'http://www.w3.org/TR/rdf-syntax-grammar'}->{dc_title},
       'RDF/XML Syntax Specification (Revised)@', 'Import from URL';
} 

done_testing;

sub user_agent {
    my $ua = Test::LWP::UserAgent->new( agent => "Catmandu::RDF/$Catmandu::RDF::VERSION" );

    my $example =<<EOF;
\@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
\@prefix dc: <http://purl.org/dc/elements/1.1/> .
\@prefix ex: <http://example.org/stuff/1.0/> .

<http://www.w3.org/TR/rdf-syntax-grammar>
  dc:title "RDF/XML Syntax Specification (Revised)" ;
  ex:editor [
    ex:fullname "Dave Beckett";
    ex:homePage <http://purl.org/net/dajobe/>
  ] .
EOF
    add_response(
        $ua,
        'http://www.w3.org/TR/examples/example1.ttl',
        'text/turtle; charset=utf-8',
        $example
    );

    my $example2 =<<EOF;
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
            xmlns:dc="http://purl.org/dc/elements/1.1/"
            xmlns:ex="http://example.org/stuff/1.0/">

  <rdf:Description rdf:about="http://www.w3.org/TR/rdf-syntax-grammar"
             dc:title="RDF/XML Syntax Specification (Revised)">
    <ex:editor>
      <rdf:Description ex:fullName="Dave Beckett">
        <ex:homePage rdf:resource="http://purl.org/net/dajobe/" />
      </rdf:Description>
    </ex:editor>
  </rdf:Description>

</rdf:RDF>
EOF

    add_response(
        $ua,
        'http://www.w3.org/TR/examples/example2.rdf',
        'application/rdf+xml; charset=utf-8',
        $example2
    );

    my $example3 =<<EOF;
<http://www.w3.org/TR/rdf-syntax-grammar> <http://purl.org/dc/elements/1.1/title> "RDF/XML Syntax Specification (Revised)".
<http://www.w3.org/TR/rdf-syntax-grammar> <http://example.org/stuff/1.0/editor> _:b1 .
_:b1 <http://example.org/stuff/1.0/fullName> "Dave Beckett" .
_:b1 <http://example.org/stuff/1.0/homePage> <http://purl.org/net/dajobe/> .
EOF

    add_response(
        $ua,
        'http://www.w3.org/TR/examples/example3.nt',
        'text/plain; charset=utf-8',
        $example3
    );
   
    return $ua;
}

sub add_response {
    my $ua           = shift;
    my $url          = shift;
    my $content_type = shift;
    my $content      = shift;

    $ua->map_response(
        qr{^\Q$url\E$},
        HTTP::Response->new(
            '200',
            'OK',
            ['Content-Type' => $content_type ],
            Encode::encode_utf8($content)
        )    
    );
}