/[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 148 by dpavlin, Mon May 15 22:06:14 2006 UTC revision 170 by dpavlin, Sun Aug 6 17:15:01 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 246;  my $tests = 279;
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  #diag "not testing shutdown\n";  SKIP: {
47    
48  my $msg;  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");
52    
53  #diag "not testing backup\n";  diag("node->master backup not tested");
54    
55  ok(my @users = $node->master( action => 'userlist' ), 'userlist');  ok(my @users = $node->master( action => 'userlist' ), 'userlist');
56    
# Line 50  my $user = { Line 64  my $user = {
64          misc => 'test user',          misc => 'test user',
65  };  };
66    
67    my $msg;
68  ok($msg = $node->master(  ok($msg = $node->master(
69          action => 'useradd',          action => 'useradd',
70          %{ $user },          %{ $user },
# Line 107  foreach my $node_name ( $test1_node , $t Line 122  foreach my $node_name ( $test1_node , $t
122  }  }
123    
124  ok($msg = $node->master(  ok($msg = $node->master(
         action => 'nodeclr',  
         name => $temp_node,  
 ), "nodeclr $temp_node: $msg");  
   
 ok($msg = $node->master(  
125          action => 'nodedel',          action => 'nodedel',
126          name => $temp_node,          name => $temp_node,
127  ), "nodedel $temp_node: $msg");  ), "nodedel $temp_node: $msg");
# Line 139  for ( 1 .. 17 ) { Line 149  for ( 1 .. 17 ) {
149          $doc->add_attr('@uri', 'test' . $_);          $doc->add_attr('@uri', 'test' . $_);
150          ok( $node->put_doc($doc), "put_doc test$_");          ok( $node->put_doc($doc), "put_doc test$_");
151          #diag $doc->dump_draft;          #diag $doc->dump_draft;
152            cmp_ok( $node->doc_num, '==', ($_ + 1), "node->doc_num " . ($_ + 1));
153  }  }
154    
155  ok(! $node->uri_to_id( 'does-not-exists' ), "non-existant uri_to_id");  ok(! $node->uri_to_id( 'does-not-exists' ), "non-existant uri_to_id");
# Line 146  ok(! $node->uri_to_id( 'does-not-exists' Line 157  ok(! $node->uri_to_id( 'does-not-exists'
157  my $id;  my $id;
158  ok($id = $node->uri_to_id( 'data0' ), "uri_to_id(data0)");  ok($id = $node->uri_to_id( 'data0' ), "uri_to_id(data0)");
159    
160    throws_ok { $node->get_doc( 'foo') } qr/id must be number/, 'croak on non-number';
161    
162  ok($doc = $node->get_doc( $id ), "get_doc($id) for edit");  ok($doc = $node->get_doc( $id ), "get_doc($id) for edit");
163  $doc->add_attr('foo', 'bar');  $doc->add_attr('foo', 'bar');
164  #diag Dumper($doc);  #diag Dumper($doc);
165  ok( $node->edit_doc( $doc ), 'edit_doc');  ok( $node->edit_doc( $doc ), 'edit_doc');
166    
167    my $doc_num;
168    ok( $doc_num = $node->doc_num, "node->doc_num $doc_num");
169    
170  ok( $node->out_doc( $id ), "out_doc($id)");  ok( $node->out_doc( $id ), "out_doc($id)");
171    
172    cmp_ok( $node->doc_num, '==', --$doc_num, "node->doc_num " . $doc_num);
173    
174  ok( ! $node->edit_doc( $doc ), "edit_doc of removed doc");  ok( ! $node->edit_doc( $doc ), "edit_doc of removed doc");
175    
176  my $doc_num;  my $cache;
177  ok( $doc_num = $node->doc_num, "node->doc_num $doc_num");  ok($cache = $node->cacheusage, "cacheusage: $cache");
178    
179  my $delete_num = 5;  my $delete_num = 5;
180    
181  for ( 1 .. $delete_num ) {  for ( 1 .. $delete_num ) {
182          ok( $node->out_doc_by_uri( 'test' . $_ ), "out_doc_by_uri test$_");          ok( $node->out_doc_by_uri( 'test' . $_ ), "out_doc_by_uri test$_");
183            cmp_ok( $node->doc_num, '==', $doc_num - $_, "node->doc_num " . ($doc_num - $_));
184  }  }
185    
 ok($msg = $node->master( action => 'sync' ), "sync: $msg");  
   
186  my $doc_num2 = $doc_num - $delete_num;  my $doc_num2 = $doc_num - $delete_num;
187  cmp_ok($node->doc_num, '==', $doc_num2, "node->doc_num $doc_num2");  cmp_ok($node->doc_num, '==', $doc_num2, "node->doc_num $doc_num2");
188    
# Line 202  for my $i ( 0 .. ($nres->hits - 1) ) { Line 219  for my $i ( 0 .. ($nres->hits - 1) ) {
219                  ok( my $k = $rdoc->keywords( $id ), "rdoc keywords");                  ok( my $k = $rdoc->keywords( $id ), "rdoc keywords");
220          } else {          } else {
221                  ok( ! $nres->get_doc( $i ), "nres->get_doc doesn't exist");                  ok( ! $nres->get_doc( $i ), "nres->get_doc doesn't exist");
   
222          }          }
223    
224          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");
# Line 217  for my $i ( 0 .. ($nres->hits - 1) ) { Line 233  for my $i ( 0 .. ($nres->hits - 1) ) {
233  }  }
234    
235  ok(my $hints = $nres->hints, 'hints');  ok(my $hints = $nres->hints, 'hints');
236  diag Dumper($hints);  diag Dumper($hints) if ($debug);
237    foreach my $h (qw/TIME DOCNUM VERSION NODE HIT WORDNUM/) {
238            ok(defined( $nres->hint($h) ), "have hint $h");
239    }
240    
241  ok($node->_set_info, "refresh _set_info");  ok($node->_set_info, "refresh _set_info");
242    
# Line 233  ok($node->set_snippet_width( 100, 10, 10 Line 252  ok($node->set_snippet_width( 100, 10, 10
252  # test skip  # test skip
253  my $skip = int($max / 2) || die "skip is zero, can't test";  my $skip = int($max / 2) || die "skip is zero, can't test";
254  ok($cond->set_skip( $skip ), "cond set_skip($skip)");  ok($cond->set_skip( $skip ), "cond set_skip($skip)");
255    cmp_ok($cond->skip, '==', $skip, "skip is $skip");
256    
257    like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');
258    
259  ok( $nres = $node->search( $cond, 0 ), 'search');  ok( $nres = $node->search( $cond, 0 ), 'search');
260  isa_ok( $nres, 'Search::Estraier::NodeResult' );  isa_ok( $nres, 'Search::Estraier::NodeResult' );
# Line 240  cmp_ok($nres->doc_num, '==', $max, "nres Line 262  cmp_ok($nres->doc_num, '==', $max, "nres
262  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");
263    
264  for my $i ( 0 .. ($nres->doc_num - 1) ) {  for my $i ( 0 .. ($nres->doc_num - 1) ) {
265          my $uri = 'test' . ($i + $delete_num + 1);          my $uri = 'test' . ($i + $delete_num + $skip + 1);
266          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");
267          if ($rdoc) {          if ($rdoc) {
268                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");
# Line 251  for my $i ( 0 .. ($nres->doc_num - 1) ) Line 273  for my $i ( 0 .. ($nres->doc_num - 1) )
273    
274    
275  # user doesn't exist  # user doesn't exist
276  ok(! $node->set_user('foobar', 1), 'set_user');  ok($node->set_user('foobar', 1), 'set_user');
277    
278  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");
279  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");
280    
281  # croak_on_error  # croak_on_error
282    
283  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");
284  throws_ok { $node->name } qr/404/, 'croak on error';  throws_ok { $node->name } qr/404/, 'croak on error';
285    
286  # croak_on_error  # croak_on_error
287  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");
288    
289  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');
290    
291    
292  # test users  # test users
293  ok(! $node->admins, 'no admins');  ok($node->admins, 'have admins');
294  ok(! $node->guests, 'no guests');  ok(! $node->guests, 'no guests');
295    
296    
# Line 280  ok($nres = $node->search( $cond, 0 ), 's Line 302  ok($nres = $node->search( $cond, 0 ), 's
302    
303  # now, test links  # now, test links
304  my $test2_label = "$test2_node label";  my $test2_label = "$test2_node label";
305  my $link_url = "http://localhost:1978/node/$test2_node";  my $link_url = "$estmaster_uri/node/$test2_node";
306  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");
307  ok(my $links = $node->links, 'links');  ok(my $links = $node->links, 'links');
308  cmp_ok($#{$links}, '==', 0, 'one link');  cmp_ok($#{$links}, '==', 0, 'one link');
309  like($links->[0], qr/^$link_url/, 'link correct');  like($links->[0], qr/^$link_url/, 'link correct');
310  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");
311    
312    ok($msg = $node->master(
313            action => 'nodeclr',
314            name => $node->name,
315    ), "nodeclr " . $node->name . ": $msg");
316    
317    cmp_ok($node->doc_num, '==', 0, 'no documents');
318    
319  # cleanup test nodes  # cleanup test nodes
320  foreach my $node_name ( $test1_node , $test2_node ) {  foreach my $node_name ( $test1_node , $test2_node ) {
# Line 300  my $node_name = '_test_create_' . $$; Line 329  my $node_name = '_test_create_' . $$;
329  my $node_label = "test $$ label";  my $node_label = "test $$ label";
330    
331  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
332          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
333          create => 1,          create => 1,
334          label => $node_label,          label => $node_label,
335          croak_on_error => 1          croak_on_error => 1
# Line 310  cmp_ok($node->name, 'eq', $node_name, "n Line 339  cmp_ok($node->name, 'eq', $node_name, "n
339  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");
340    
341  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
342          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
343          create => 1,          create => 1,
344          label => $node_label,          label => $node_label,
345          croak_on_error => 0          croak_on_error => 0
346  ), "new create existing");  ), "new create existing");
347    
348  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
349          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
350          create => 1,          create => 1,
351          label => $node_label,          label => $node_label,
352          croak_on_error => 1          croak_on_error => 1
# Line 331  ok($msg = $node->master( Line 360  ok($msg = $node->master(
360    
361  # and again, this time without node  # and again, this time without node
362  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
363          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
364          create => 1,          create => 1,
365          label => $node_label,          label => $node_label,
366          croak_on_error => 0          croak_on_error => 0
# Line 346  ok($msg = $node->master( Line 375  ok($msg = $node->master(
375          name => $node_name,          name => $node_name,
376  ), "nodedel $node_name: $msg");  ), "nodedel $node_name: $msg");
377    
378    ok($msg = $node->master( action => 'sync' ), "sync: $msg");
379    
380    } # SKIP
381    
382  diag "over";  diag "over";

Legend:
Removed from v.148  
changed lines
  Added in v.170

  ViewVC Help
Powered by ViewVC 1.1.26