/[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 153 by dpavlin, Tue May 16 16:01:09 2006 UTC revision 198 by dpavlin, Sun Jan 20 16:50:59 2008 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
 my $tests = 269;  
   
6  use Test::More;  use Test::More;
7  use Test::Exception;  use Test::Exception;
8  use Data::Dumper;  use Data::Dumper;
9    
10  BEGIN { use_ok('Search::Estraier') };  BEGIN {
11            plan tests => 313;
12  plan tests => $tests;          use_ok('Search::Estraier');
13    };
14    
15  my $debug = shift @ARGV;  my $debug = shift @ARGV;
16    
# Line 45  cmp_ok($node->status, '==', -1, 'status' Line 44  cmp_ok($node->status, '==', -1, 'status'
44    
45  SKIP: {  SKIP: {
46    
47  skip "can't find estmaster at $estmaster_uri", ($tests - 9) if (! eval { $node->master( action => 'nodelist' ) } );  skip "can't find estmaster at $estmaster_uri", ( 313 - 10 ) if (! eval { $node->master( action => 'nodelist' ) } );
48    
49  diag "using $estmaster_uri";  diag "using $estmaster_uri";
50  diag("node->master shutdown not tested");  diag("node->master shutdown not tested");
# Line 147  ok( $node->put_doc($doc), "put_doc data0 Line 146  ok( $node->put_doc($doc), "put_doc data0
146    
147  for ( 1 .. 17 ) {  for ( 1 .. 17 ) {
148          $doc->add_attr('@uri', 'test' . $_);          $doc->add_attr('@uri', 'test' . $_);
149            $doc->set_score( $_ * 10000 );
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));          cmp_ok( $node->doc_num, '==', ($_ + 1), "node->doc_num " . ($_ + 1));
# Line 157  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);
# Line 171  cmp_ok( $node->doc_num, '==', --$doc_num Line 173  cmp_ok( $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 $cache;
177    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 ) {
# Line 188  ok($cond->set_phrase('girl'), 'cond set_ Line 193  ok($cond->set_phrase('girl'), 'cond set_
193  ok($cond->set_max($max), "cond set_max($max)");  ok($cond->set_max($max), "cond set_max($max)");
194  ok($cond->set_order('@uri ASCD'), 'cond set_order');  ok($cond->set_order('@uri ASCD'), 'cond set_order');
195  ok($cond->add_attr('@title STRINC Material'), 'cond add_attr');  ok($cond->add_attr('@title STRINC Material'), 'cond add_attr');
196    ok($cond->set_mask(qw/1 2/), 'cond set_mask');
197    
198  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');
199    
200  ok( my $nres = $node->search( $cond, 0 ), 'search');  ok( my $nres = $node->search( $cond, 0 ), 'search');
201    
# Line 217  for my $i ( 0 .. ($nres->hits - 1) ) { Line 223  for my $i ( 0 .. ($nres->hits - 1) ) {
223          }          }
224    
225          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id($uri)");
226          ok( $node->get_doc( $id ), "get_doc($id)");          my $doc;
227          ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri($uri)");          my $score = $num * 10000;
228            ok( $doc = $node->get_doc( $id ), "get_doc($id)");
229            cmp_ok( $doc->score, '==', $score, "score $score");
230            ok( $doc = $node->get_doc_by_uri( $uri ), "get_doc_by_uri($uri)");
231            cmp_ok( $doc->score, '==', $score, "score $score");
232          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");
233          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");
234          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 229  for my $i ( 0 .. ($nres->hits - 1) ) { Line 239  for my $i ( 0 .. ($nres->hits - 1) ) {
239    
240  ok(my $hints = $nres->hints, 'hints');  ok(my $hints = $nres->hints, 'hints');
241  diag Dumper($hints) if ($debug);  diag Dumper($hints) if ($debug);
242    foreach my $h (qw/TIME DOCNUM VERSION NODE HIT WORDNUM/) {
243            ok(defined( $nres->hint($h) ), "have hint $h");
244    }
245    
246  ok($node->_set_info, "refresh _set_info");  ok($node->_set_info, "refresh _set_info");
247    
# Line 244  ok($node->set_snippet_width( 100, 10, 10 Line 257  ok($node->set_snippet_width( 100, 10, 10
257  # test skip  # test skip
258  my $skip = int($max / 2) || die "skip is zero, can't test";  my $skip = int($max / 2) || die "skip is zero, can't test";
259  ok($cond->set_skip( $skip ), "cond set_skip($skip)");  ok($cond->set_skip( $skip ), "cond set_skip($skip)");
260    cmp_ok($cond->skip, '==', $skip, "skip is $skip");
261    
262    like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');
263    
264  ok( $nres = $node->search( $cond, 0 ), 'search');  ok( $nres = $node->search( $cond, 0 ), 'search');
265  isa_ok( $nres, 'Search::Estraier::NodeResult' );  isa_ok( $nres, 'Search::Estraier::NodeResult' );
# Line 251  cmp_ok($nres->doc_num, '==', $max, "nres Line 267  cmp_ok($nres->doc_num, '==', $max, "nres
267  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");  cmp_ok($nres->hits, '==', $doc_num2, "nres->hits $doc_num2");
268    
269  for my $i ( 0 .. ($nres->doc_num - 1) ) {  for my $i ( 0 .. ($nres->doc_num - 1) ) {
270          my $uri = 'test' . ($i + $delete_num + 1);          my $uri = 'test' . ($i + $delete_num + $skip + 1);
271          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");          ok( my $rdoc = $nres->get_doc( $i ), "nres->get_doc $i");
272          if ($rdoc) {          if ($rdoc) {
273                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");                  cmp_ok( $rdoc->attr('@uri'), 'eq', $uri, "\@uri = $uri");
# Line 260  for my $i ( 0 .. ($nres->doc_num - 1) ) Line 276  for my $i ( 0 .. ($nres->doc_num - 1) )
276          }          }
277  }  }
278    
279    # test distinct
280    ok($cond = new Search::Estraier::Condition, 'new cond');
281    ok($cond->set_phrase('girl'), 'cond set_phrase');
282    my $distinct = '@title';
283    ok($cond->set_distinct( $distinct ), "cond set_distinct($distinct)");
284    cmp_ok($cond->distinct, 'eq', $distinct, "distinct is $distinct");
285    like($node->cond_to_query( $cond ), qr/distinct=%40title/, 'cond_to_query have distinct');
286    ok( $nres = $node->search( $cond, 0 ), 'search with distinct');
287    cmp_ok($nres->doc_num, '==', 1, "nres->doc_num");
288    cmp_ok($nres->hits, '==', 1, "nres->hits");
289    diag "nres = ", Dumper( $nres ) if ($debug);
290    
291  # user doesn't exist  # user doesn't exist
292  ok(! $node->set_user('foobar', 1), 'set_user');  ok($node->set_user('foobar', 1), 'set_user');
293    
294  ok(my $node2 = new Search::Estraier::Node( "$estmaster_uri/node/$test2_node" ), "new $test2_node");  ok(my $node2 = new Search::Estraier::Node( "$estmaster_uri/node/$test2_node" ), "new $test2_node");
295  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");  ok($node2->set_auth('admin','admin'), "set_auth $test2_node");
# Line 279  ok(! $node->uri_to_id('foobar'), 'uri_to Line 306  ok(! $node->uri_to_id('foobar'), 'uri_to
306    
307    
308  # test users  # test users
309  ok(! $node->admins, 'no admins');  ok($node->admins, 'have admins');
310  ok(! $node->guests, 'no guests');  ok(! $node->guests, 'no guests');
311    
312    
# Line 301  ok($node->set_link("$estmaster_uri/node/ Line 328  ok($node->set_link("$estmaster_uri/node/
328  ok($msg = $node->master(  ok($msg = $node->master(
329          action => 'nodeclr',          action => 'nodeclr',
330          name => $node->name,          name => $node->name,
331  ), "nodeclr $node->name: $msg");  ), "nodeclr " . $node->name . ": $msg");
332    
333  cmp_ok($node->doc_num, '==', 0, 'no documents');  cmp_ok($node->doc_num, '==', 0, 'no documents');
334    

Legend:
Removed from v.153  
changed lines
  Added in v.198

  ViewVC Help
Powered by ViewVC 1.1.26