/[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 156 by dpavlin, Mon May 22 14:42:10 2006 UTC revision 173 by dpavlin, Sun Aug 6 18:15:11 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  my $tests = 270;  my $tests = 280;
7    
8  use Test::More;  use Test::More;
9  use Test::Exception;  use Test::Exception;
# 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 229  for my $i ( 0 .. ($nres->hits - 1) ) { Line 235  for my $i ( 0 .. ($nres->hits - 1) ) {
235    
236  ok(my $hints = $nres->hints, 'hints');  ok(my $hints = $nres->hints, 'hints');
237  diag Dumper($hints) if ($debug);  diag Dumper($hints) if ($debug);
238    foreach my $h (qw/TIME DOCNUM VERSION NODE HIT WORDNUM/) {
239            ok(defined( $nres->hint($h) ), "have hint $h");
240    }
241    
242  ok($node->_set_info, "refresh _set_info");  ok($node->_set_info, "refresh _set_info");
243    
# Line 244  ok($node->set_snippet_width( 100, 10, 10 Line 253  ok($node->set_snippet_width( 100, 10, 10
253  # test skip  # test skip
254  my $skip = int($max / 2) || die "skip is zero, can't test";  my $skip = int($max / 2) || die "skip is zero, can't test";
255  ok($cond->set_skip( $skip ), "cond set_skip($skip)");  ok($cond->set_skip( $skip ), "cond set_skip($skip)");
256    cmp_ok($cond->skip, '==', $skip, "skip is $skip");
257    
258  like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');  like($node->cond_to_query( $cond ), qr/skip=$skip/, 'cond_to_query have skip');
259    

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

  ViewVC Help
Powered by ViewVC 1.1.26