/[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 50 by dpavlin, Fri Jan 6 12:48:14 2006 UTC revision 51 by dpavlin, Fri Jan 6 13:19:50 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 79;  use Test::More tests => 87;
7  use Test::Exception;  use Test::Exception;
8  use Data::Dumper;  use Data::Dumper;
9    
# Line 75  ok( $node->out_doc( $id ), "out_doc $id" Line 75  ok( $node->out_doc( $id ), "out_doc $id"
75    
76  ok( ! $node->edit_doc( $doc ), "edit removed");  ok( ! $node->edit_doc( $doc ), "edit removed");
77    
78    ok(my $cond = new Search::Estraier::Condition, 'new cond');
79    ok($cond->set_phrase('girl'), 'cond set_phrase');
80    ok($cond->set_max(42), 'cond set_max');
81    ok($cond->set_order('@uri ASCD'), 'cond set_order');
82    ok($cond->add_attr('@title STRINC Material'), 'cond add_attr');
83    
84    cmp_ok($node->cond_to_query( $cond ), 'eq' , 'phrase=girl&attr1=%40title%20STRINC%20Material&order=%40uri%20ASCD&max=42&wwidth=480&hwidth=96&awidth=96', 'cond_to_query');
85    
86    ok( my $nrec = $node->search( $cond, 0 ), 'search');
87    
88    isa_ok( $nrec, 'Search::Estraier::NodeResult' );
89    
90  for ( 6 .. 10 ) {  for ( 6 .. 10 ) {
91          my $uri = 'test' . $_;          my $uri = 'test' . $_;
92          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id $uri");          ok( my $id = $node->uri_to_id( $uri ), "uri_to_id $uri");

Legend:
Removed from v.50  
changed lines
  Added in v.51

  ViewVC Help
Powered by ViewVC 1.1.26