/[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

Diff of /trunk/t/5_Node.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 151 by dpavlin, Tue May 16 11:39:53 2006 UTC revision 156 by dpavlin, Mon May 22 14:42:10 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 270;  my $tests = 270;
7    
8    use Test::More;
9  use Test::Exception;  use Test::Exception;
10  use Data::Dumper;  use Data::Dumper;
11    
12  BEGIN { use_ok('Search::Estraier') };  BEGIN { use_ok('Search::Estraier') };
13    
14    plan tests => $tests;
15    
16  my $debug = shift @ARGV;  my $debug = shift @ARGV;
17    
18  # name of node for test  # name of node for test
19  my $test1_node = '_test1_' . $$;  my $test1_node = '_test1_' . $$;
20  my $test2_node = '_test2_' . $$;  my $test2_node = '_test2_' . $$;
21    
22    my $estmaster_uri = $ENV{'ESTMASTER_URI'} || 'http://localhost:1978';
23    
24  ok(my $node = new Search::Estraier::Node( debug => $debug ), 'new');  ok(my $node = new Search::Estraier::Node( debug => $debug ), 'new');
25  isa_ok($node, 'Search::Estraier::Node');  isa_ok($node, 'Search::Estraier::Node');
26    
27  ok($node->set_url("http://localhost:1978/node/$test1_node"), "set_url $test1_node");  ok($node->set_url("$estmaster_uri/node/$test1_node"), "set_url $test1_node");
28    
29  ok($node->set_proxy('', 8080), 'set_proxy');  ok($node->set_proxy('', 8080), 'set_proxy');
30  throws_ok {$node->set_proxy('proxy.example.com', 'foo') } qr/port/, 'set_proxy port NaN';  throws_ok {$node->set_proxy('proxy.example.com', 'foo') } qr/port/, 'set_proxy port NaN';
# Line 26  throws_ok {$node->set_proxy('proxy.examp Line 32  throws_ok {$node->set_proxy('proxy.examp
32  ok($node->set_timeout(42), 'set_timeout');  ok($node->set_timeout(42), 'set_timeout');
33  throws_ok {$node->set_timeout('foo') } qr/timeout/, 'set_timeout NaN';  throws_ok {$node->set_timeout('foo') } qr/timeout/, 'set_timeout NaN';
34    
35  ok($node->set_auth('admin','admin'), 'set_auth');  my ($user, $passwd) = (
36            $ENV{EST_USER} || 'admin',
37            $ENV{EST_PASSWD} || 'admin'
38    );
39    
40    ok($node->set_auth($user, $passwd), 'set_auth');
41    
42  cmp_ok($node->status, '==', -1, 'status');  cmp_ok($node->status, '==', -1, 'status');
43    
44  # test master functionality  # test master functionality
45    
46    SKIP: {
47    
48    skip "can't find estmaster at $estmaster_uri", ($tests - 9) if (! eval { $node->master( action => 'nodelist' ) } );
49    
50    diag "using $estmaster_uri";
51  diag("node->master shutdown not tested");  diag("node->master shutdown not tested");
52    
53  diag("node->master backup not tested");  diag("node->master backup not tested");
# Line 212  for my $i ( 0 .. ($nres->hits - 1) ) { Line 228  for my $i ( 0 .. ($nres->hits - 1) ) {
228  }  }
229    
230  ok(my $hints = $nres->hints, 'hints');  ok(my $hints = $nres->hints, 'hints');
231  diag Dumper($hints);  diag Dumper($hints) if ($debug);
232    
233  ok($node->_set_info, "refresh _set_info");  ok($node->_set_info, "refresh _set_info");
234    
# Line 229  ok($node->set_snippet_width( 100, 10, 10 Line 245  ok($node->set_snippet_width( 100, 10, 10
245  my $skip = int($max / 2) || die "skip is zero, can't test";  my $skip = int($max / 2) || die "skip is zero, can't test";
246  ok($cond->set_skip( $skip ), "cond set_skip($skip)");  ok($cond->set_skip( $skip ), "cond set_skip($skip)");
247    
248    like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');
249    
250  ok( $nres = $node->search( $cond, 0 ), 'search');  ok( $nres = $node->search( $cond, 0 ), 'search');
251  isa_ok( $nres, 'Search::Estraier::NodeResult' );  isa_ok( $nres, 'Search::Estraier::NodeResult' );
252  cmp_ok($nres->doc_num, '==', $max, "nres->doc_num " . ($max - $skip));  cmp_ok($nres->doc_num, '==', $max, "nres->doc_num " . ($max - $skip));
253  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");
254    
255  for my $i ( 0 .. ($nres->doc_num - 1) ) {  for my $i ( 0 .. ($nres->doc_num - 1) ) {
256          my $uri = 'test' . ($i + $delete_num + 1);          my $uri = 'test' . ($i + $delete_num + $skip + 1);
257          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");
258          if ($rdoc) {          if ($rdoc) {
259                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");
# Line 246  for my $i ( 0 .. ($nres->doc_num - 1) ) Line 264  for my $i ( 0 .. ($nres->doc_num - 1) )
264    
265    
266  # user doesn't exist  # user doesn't exist
267  ok(! $node->set_user('foobar', 1), 'set_user');  ok($node->set_user('foobar', 1), 'set_user');
268    
269  ok(my $node2 = new Search::Estraier::Node( "http://localhost:1978/node/$test2_node" ), "new $test2_node");  ok(my $node2 = new Search::Estraier::Node( "$estmaster_uri/node/$test2_node" ), "new $test2_node");
270  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");
271    
272  # croak_on_error  # croak_on_error
273    
274  ok($node = new Search::Estraier::Node( url => "http://localhost:1978/non-existant", croak_on_error => 1 ), "new non-existant");  ok($node = new Search::Estraier::Node( url => "$estmaster_uri/non-existant", croak_on_error => 1 ), "new non-existant");
275  throws_ok { $node->name } qr/404/, 'croak on error';  throws_ok { $node->name } qr/404/, 'croak on error';
276    
277  # croak_on_error  # croak_on_error
278  ok($node = new Search::Estraier::Node( url => "http://localhost:1978/node/$test1_node", croak_on_error => 1 ), "new $test1_node");  ok($node = new Search::Estraier::Node( url => "$estmaster_uri/node/$test1_node", croak_on_error => 1, user => $user, passwd => $passwd, debug => $debug ), "new $test1_node");
279    
280  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');
281    
282    
283  # test users  # test users
284  ok(! $node->admins, 'no admins');  ok($node->admins, 'have admins');
285  ok(! $node->guests, 'no guests');  ok(! $node->guests, 'no guests');
286    
287    
# Line 275  ok($nres = $node->search( $cond, 0 ), 's Line 293  ok($nres = $node->search( $cond, 0 ), 's
293    
294  # now, test links  # now, test links
295  my $test2_label = "$test2_node label";  my $test2_label = "$test2_node label";
296  my $link_url = "http://localhost:1978/node/$test2_node";  my $link_url = "$estmaster_uri/node/$test2_node";
297  ok($node->set_link( $link_url, $test2_label, 42), "set_link $test2_node ($test2_label) 42");  ok($node->set_link( $link_url, $test2_label, 42), "set_link $test2_node ($test2_label) 42");
298  ok(my $links = $node->links, 'links');  ok(my $links = $node->links, 'links');
299  cmp_ok($#{$links}, '==', 0, 'one link');  cmp_ok($#{$links}, '==', 0, 'one link');
300  like($links->[0], qr/^$link_url/, 'link correct');  like($links->[0], qr/^$link_url/, 'link correct');
301  ok($node->set_link("http://localhost:1978/node/$test2_node", $test2_label, 0), "set_link $test2_node ($test2_label) delete");  ok($node->set_link("$estmaster_uri/node/$test2_node", $test2_label, 0), "set_link $test2_node ($test2_label) delete");
302    
303  ok($msg = $node->master(  ok($msg = $node->master(
304          action => 'nodeclr',          action => 'nodeclr',
305          name => $node->name,          name => $node->name,
306  ), "nodeclr $node->name: $msg");  ), "nodeclr " . $node->name . ": $msg");
307    
308  cmp_ok($node->doc_num, '==', 0, 'no documents');  cmp_ok($node->doc_num, '==', 0, 'no documents');
309    
# Line 302  my $node_name = '_test_create_' . $$; Line 320  my $node_name = '_test_create_' . $$;
320  my $node_label = "test $$ label";  my $node_label = "test $$ label";
321    
322  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
323          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
324          create => 1,          create => 1,
325          label => $node_label,          label => $node_label,
326          croak_on_error => 1          croak_on_error => 1
# Line 312  cmp_ok($node->name, 'eq', $node_name, "n Line 330  cmp_ok($node->name, 'eq', $node_name, "n
330  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");
331    
332  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
333          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
334          create => 1,          create => 1,
335          label => $node_label,          label => $node_label,
336          croak_on_error => 0          croak_on_error => 0
337  ), "new create existing");  ), "new create existing");
338    
339  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
340          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
341          create => 1,          create => 1,
342          label => $node_label,          label => $node_label,
343          croak_on_error => 1          croak_on_error => 1
# Line 333  ok($msg = $node->master( Line 351  ok($msg = $node->master(
351    
352  # and again, this time without node  # and again, this time without node
353  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
354          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
355          create => 1,          create => 1,
356          label => $node_label,          label => $node_label,
357          croak_on_error => 0          croak_on_error => 0
# Line 350  ok($msg = $node->master( Line 368  ok($msg = $node->master(
368    
369  ok($msg = $node->master( action => 'sync' ), "sync: $msg");  ok($msg = $node->master( action => 'sync' ), "sync: $msg");
370    
371    } # SKIP
372    
373  diag "over";  diag "over";

Legend:
Removed from v.151  
changed lines
  Added in v.156

  ViewVC Help
Powered by ViewVC 1.1.26