/[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 189 by dpavlin, Sun Nov 5 16:23:03 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 = 311;
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 131  ok( $node->put_doc($doc), "put_doc data0 Line 147  ok( $node->put_doc($doc), "put_doc data0
147    
148  for ( 1 .. 17 ) {  for ( 1 .. 17 ) {
149          $doc->add_attr('@uri', 'test' . $_);          $doc->add_attr('@uri', 'test' . $_);
150            $doc->set_score( $_ * 10000 );
151          ok( $node->put_doc($doc), "put_doc test$_");          ok( $node->put_doc($doc), "put_doc test$_");
152          #diag $doc->dump_draft;          #diag $doc->dump_draft;
153          cmp_ok( $node->doc_num, '==', ($_ + 1), "node->doc_num " . ($_ + 1));          cmp_ok( $node->doc_num, '==', ($_ + 1), "node->doc_num " . ($_ + 1));
# Line 141  ok(! $node->uri_to_id( 'does-not-exists' Line 158  ok(! $node->uri_to_id( 'does-not-exists'
158  my $id;  my $id;
159  ok($id = $node->uri_to_id( 'data0' ), "uri_to_id(data0)");  ok($id = $node->uri_to_id( 'data0' ), "uri_to_id(data0)");
160    
161    throws_ok { $node->get_doc( 'foo') } qr/id must be number/, 'croak on non-number';
162    
163  ok($doc = $node->get_doc( $id ), "get_doc($id) for edit");  ok($doc = $node->get_doc( $id ), "get_doc($id) for edit");
164  $doc->add_attr('foo', 'bar');  $doc->add_attr('foo', 'bar');
165  #diag Dumper($doc);  #diag Dumper($doc);
# Line 155  cmp_ok( $node->doc_num, '==', --$doc_num Line 174  cmp_ok( $node->doc_num, '==', --$doc_num
174    
175  ok( ! $node->edit_doc( $doc ), "edit_doc of removed doc");  ok( ! $node->edit_doc( $doc ), "edit_doc of removed doc");
176    
177    my $cache;
178    ok($cache = $node->cacheusage, "cacheusage: $cache");
179    
180  my $delete_num = 5;  my $delete_num = 5;
181    
182  for ( 1 .. $delete_num ) {  for ( 1 .. $delete_num ) {
# Line 172  ok($cond->set_phrase('girl'), 'cond set_ Line 194  ok($cond->set_phrase('girl'), 'cond set_
194  ok($cond->set_max($max), "cond set_max($max)");  ok($cond->set_max($max), "cond set_max($max)");
195  ok($cond->set_order('@uri ASCD'), 'cond set_order');  ok($cond->set_order('@uri ASCD'), 'cond set_order');
196  ok($cond->add_attr('@title STRINC Material'), 'cond add_attr');  ok($cond->add_attr('@title STRINC Material'), 'cond add_attr');
197    ok($cond->set_mask(qw/1 2/), 'cond set_mask');
198    
199  cmp_ok($node->cond_to_query( $cond ), 'eq' , 'phrase=girl&attr1=%40title%20STRINC%20Material&order=%40uri%20ASCD&max='.$max.'&wwidth=480&hwidth=96&awidth=96', 'cond_to_query');  cmp_ok($node->cond_to_query( $cond ), 'eq' , 'phrase=girl&attr1=%40title%20STRINC%20Material&order=%40uri%20ASCD&max='.$max.'&wwidth=480&hwidth=96&awidth=96&mask=6', 'cond_to_query');
200    
201  ok( my $nres = $node->search( $cond, 0 ), 'search');  ok( my $nres = $node->search( $cond, 0 ), 'search');
202    
# Line 201  for my $i ( 0 .. ($nres->hits - 1) ) { Line 224  for my $i ( 0 .. ($nres->hits - 1) ) {
224          }          }
225    
226          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");
227          ok( $node->get_doc( $id ), "get_doc($id)");          my $doc;
228          ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri($uri)");          my $score = $num * 10000;
229            ok( $doc = $node->get_doc( $id ), "get_doc($id)");
230            cmp_ok( $doc->score, '==', $score, "score $score");
231            ok( $doc = $node->get_doc_by_uri( $uri ), "get_doc_by_uri($uri)");
232            cmp_ok( $doc->score, '==', $score, "score $score");
233          cmp_ok( $node->get_doc_attr( $id, '@uri' ), 'eq', $uri, "get_doc_attr $id");          cmp_ok( $node->get_doc_attr( $id, '@uri' ), 'eq', $uri, "get_doc_attr $id");
234          cmp_ok( $node->get_doc_attr_by_uri( $uri, '@uri' ), 'eq', $uri, "get_doc_attr $id");          cmp_ok( $node->get_doc_attr_by_uri( $uri, '@uri' ), 'eq', $uri, "get_doc_attr $id");
235          ok( my $k1 = $node->etch_doc( $id ), "etch_doc_by_uri $uri");          ok( my $k1 = $node->etch_doc( $id ), "etch_doc_by_uri $uri");
# Line 212  for my $i ( 0 .. ($nres->hits - 1) ) { Line 239  for my $i ( 0 .. ($nres->hits - 1) ) {
239  }  }
240    
241  ok(my $hints = $nres->hints, 'hints');  ok(my $hints = $nres->hints, 'hints');
242  diag Dumper($hints);  diag Dumper($hints) if ($debug);
243    foreach my $h (qw/TIME DOCNUM VERSION NODE HIT WORDNUM/) {
244            ok(defined( $nres->hint($h) ), "have hint $h");
245    }
246    
247  ok($node->_set_info, "refresh _set_info");  ok($node->_set_info, "refresh _set_info");
248    
# Line 228  ok($node->set_snippet_width( 100, 10, 10 Line 258  ok($node->set_snippet_width( 100, 10, 10
258  # test skip  # test skip
259  my $skip = int($max / 2) || die "skip is zero, can't test";  my $skip = int($max / 2) || die "skip is zero, can't test";
260  ok($cond->set_skip( $skip ), "cond set_skip($skip)");  ok($cond->set_skip( $skip ), "cond set_skip($skip)");
261    cmp_ok($cond->skip, '==', $skip, "skip is $skip");
262    
263    like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');
264    
265  ok( $nres = $node->search( $cond, 0 ), 'search');  ok( $nres = $node->search( $cond, 0 ), 'search');
266  isa_ok( $nres, 'Search::Estraier::NodeResult' );  isa_ok( $nres, 'Search::Estraier::NodeResult' );
# Line 235  cmp_ok($nres->doc_num, '==', $max, "nres Line 268  cmp_ok($nres->doc_num, '==', $max, "nres
268  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");
269    
270  for my $i ( 0 .. ($nres->doc_num - 1) ) {  for my $i ( 0 .. ($nres->doc_num - 1) ) {
271          my $uri = 'test' . ($i + $delete_num + 1);          my $uri = 'test' . ($i + $delete_num + $skip + 1);
272          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");
273          if ($rdoc) {          if ($rdoc) {
274                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");
# Line 244  for my $i ( 0 .. ($nres->doc_num - 1) ) Line 277  for my $i ( 0 .. ($nres->doc_num - 1) )
277          }          }
278  }  }
279    
280    # test distinct
281    ok(my $cond = new Search::Estraier::Condition, 'new cond');
282    ok($cond->set_phrase('girl'), 'cond set_phrase');
283    my $distinct = '@title';
284    $cond->set_distinct( $distinct );
285    cmp_ok($cond->distinct, 'eq', $distinct, "distinct is $distinct");
286    like($node->cond_to_query( $cond ), qr/distinct=%40title/, 'cond_to_query have distinct');
287    ok( $nres = $node->search( $cond, 0 ), 'search with distinct');
288    cmp_ok($nres->doc_num, '==', 1, "nres->doc_num");
289    cmp_ok($nres->hits, '==', 1, "nres->hits");
290    diag "nres = ", Dumper( $nres ) if ($debug);
291    
292  # user doesn't exist  # user doesn't exist
293  ok(! $node->set_user('foobar', 1), 'set_user');  ok($node->set_user('foobar', 1), 'set_user');
294    
295  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");
296  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");
297    
298  # croak_on_error  # croak_on_error
299    
300  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");
301  throws_ok { $node->name } qr/404/, 'croak on error';  throws_ok { $node->name } qr/404/, 'croak on error';
302    
303  # croak_on_error  # croak_on_error
304  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");
305    
306  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');
307    
308    
309  # test users  # test users
310  ok(! $node->admins, 'no admins');  ok($node->admins, 'have admins');
311  ok(! $node->guests, 'no guests');  ok(! $node->guests, 'no guests');
312    
313    
# Line 275  ok($nres = $node->search( $cond, 0 ), 's Line 319  ok($nres = $node->search( $cond, 0 ), 's
319    
320  # now, test links  # now, test links
321  my $test2_label = "$test2_node label";  my $test2_label = "$test2_node label";
322  my $link_url = "http://localhost:1978/node/$test2_node";  my $link_url = "$estmaster_uri/node/$test2_node";
323  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");
324  ok(my $links = $node->links, 'links');  ok(my $links = $node->links, 'links');
325  cmp_ok($#{$links}, '==', 0, 'one link');  cmp_ok($#{$links}, '==', 0, 'one link');
326  like($links->[0], qr/^$link_url/, 'link correct');  like($links->[0], qr/^$link_url/, 'link correct');
327  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");
328    
329  ok($msg = $node->master(  ok($msg = $node->master(
330          action => 'nodeclr',          action => 'nodeclr',
331          name => $node->name,          name => $node->name,
332  ), "nodeclr $node->name: $msg");  ), "nodeclr " . $node->name . ": $msg");
333    
334  cmp_ok($node->doc_num, '==', 0, 'no documents');  cmp_ok($node->doc_num, '==', 0, 'no documents');
335    
# Line 302  my $node_name = '_test_create_' . $$; Line 346  my $node_name = '_test_create_' . $$;
346  my $node_label = "test $$ label";  my $node_label = "test $$ label";
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 312  cmp_ok($node->name, 'eq', $node_name, "n Line 356  cmp_ok($node->name, 'eq', $node_name, "n
356  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");  cmp_ok($node->label, 'eq', $node_label, "node label: $node_label");
357    
358  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
359          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
360          create => 1,          create => 1,
361          label => $node_label,          label => $node_label,
362          croak_on_error => 0          croak_on_error => 0
363  ), "new create existing");  ), "new create existing");
364    
365  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
366          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
367          create => 1,          create => 1,
368          label => $node_label,          label => $node_label,
369          croak_on_error => 1          croak_on_error => 1
# Line 333  ok($msg = $node->master( Line 377  ok($msg = $node->master(
377    
378  # and again, this time without node  # and again, this time without node
379  ok($node = new Search::Estraier::Node(  ok($node = new Search::Estraier::Node(
380          url => "http://localhost:1978/node/$node_name",          url => "$estmaster_uri/node/$node_name",
381          create => 1,          create => 1,
382          label => $node_label,          label => $node_label,
383          croak_on_error => 0          croak_on_error => 0
# Line 350  ok($msg = $node->master( Line 394  ok($msg = $node->master(
394    
395  ok($msg = $node->master( action => 'sync' ), "sync: $msg");  ok($msg = $node->master( action => 'sync' ), "sync: $msg");
396    
397    } # SKIP
398    
399  diag "over";  diag "over";

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

  ViewVC Help
Powered by ViewVC 1.1.26