/[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 187 by dpavlin, Sun Nov 5 16:01:36 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 = 304;  
   
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 277  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');

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

  ViewVC Help
Powered by ViewVC 1.1.26