/[Search-Estraier]/trunk/t/5_Node.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/t/5_Node.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 35 - (show annotations)
Thu Jan 5 21:51:29 2006 UTC (18 years, 2 months ago) by dpavlin
File MIME type: application/x-troff
File size: 1071 byte(s)
shuttle_url test which fails (and it shouldn't)
1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 11;
7 use Test::Exception;
8 use Data::Dumper;
9
10 BEGIN { use_ok('Search::Estraier') };
11
12 # name of node for test
13 my $test_node = 'Search-Estraier';
14
15 ok(my $node = new Search::Estraier::Node, 'new');
16 isa_ok($node, 'Search::Estraier::Node');
17
18 ok($node->set_url('http://localhost:1978/'), 'set_url');
19
20 ok($node->set_proxy('proxy.example.com', 8080), 'set_proxy');
21 throws_ok {$node->set_proxy('proxy.example.com', 'foo') } qr/port/, 'set_proxy port NaN';
22
23 ok($node->set_timeout(42), 'set_timeout');
24 throws_ok {$node->set_timeout('foo') } qr/timeout/, 'set_timeout NaN';
25
26 ok($node->set_auth('foo','bar'), 'set_auth');
27
28 cmp_ok($node->status, '==', -1, 'status');
29
30 my $nodelist;
31 cmp_ok($node->shuttle_url( '?action=nodelist', 'text/plain', undef, \$nodelist),
32 '==', 200, 'nodelist');
33
34 my $draft = <<'_END_OF_DRAFT_';
35 @uri=data001
36 @title=Material Girl
37
38 Living in a material world
39 And I am a material girl
40 You know that we are living in a material world
41 And I am a material girl
42 _END_OF_DRAFT_
43
44 diag "draft:\n$draft";

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26