/[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 173 by dpavlin, Sun Aug 6 18:15:11 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  my $tests = 280;  my $tests = 311;
7    
8  use Test::More;  use Test::More;
9  use Test::Exception;  use Test::Exception;
# Line 147  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 223  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 272  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');

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

  ViewVC Help
Powered by ViewVC 1.1.26