/[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 45 by dpavlin, Fri Jan 6 01:36:09 2006 UTC revision 48 by dpavlin, Fri Jan 6 02:07:10 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 46;  use Test::More tests => 57;
7  use Test::Exception;  use Test::Exception;
8  use Data::Dumper;  use Data::Dumper;
9    
10  BEGIN { use_ok('Search::Estraier') };  BEGIN { use_ok('Search::Estraier') };
11    
12  my $debug = 1;  my $debug = 0;
13    
14  # name of node for test  # name of node for test
15  my $test_node = 'Search-Estraier';  my $test_node = 'Search-Estraier';
# Line 51  _END_OF_DRAFT_ Line 51  _END_OF_DRAFT_
51  #diag "draft:\n$draft";  #diag "draft:\n$draft";
52  ok(my $doc = new Search::Estraier::Document($draft), 'new doc from draft');  ok(my $doc = new Search::Estraier::Document($draft), 'new doc from draft');
53    
54    ok( $node->put_doc($doc), "put_doc data001");
55    
56  for ( 1 .. 10 ) {  for ( 1 .. 10 ) {
57          $doc->add_attr('@uri', 'test' . $_);          $doc->add_attr('@uri', 'test' . $_);
58          ok( $node->put_doc($doc), "put_doc test$_");          ok( $node->put_doc($doc), "put_doc test$_");
# Line 70  $doc->add_attr('foo', 'bar'); Line 72  $doc->add_attr('foo', 'bar');
72  ok( $node->edit_doc( $doc ), 'edit_doc');  ok( $node->edit_doc( $doc ), 'edit_doc');
73    
74  for ( 6 .. 10 ) {  for ( 6 .. 10 ) {
         ok( $node->get_doc( $_ ), "get_doc $_");  
75          my $uri = 'test' . $_;          my $uri = 'test' . $_;
76            ok( my $id = $node->uri_to_id( $uri ), "uri_to_id $uri");
77            ok( $node->get_doc( $id ), "get_doc $id");
78          ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri $uri");          ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri $uri");
79          ok( my $k = $node->etch_doc_by_uri( $uri ), "etch_doc_by_uri $uri");          ok( my $k = $node->etch_doc_by_uri( $uri ), "etch_doc_by_uri $uri");
80  }  }
81    
82    my $v;
83    ok($v = $node->name, "name: $v");
84    ok($v = $node->label, "label: $v");
85    ok($v = $node->doc_num, "doc_num: $v");
86    ok($v = $node->word_num, "word_num: $v");
87    ok($v = $node->size, "size: $v");
88    

Legend:
Removed from v.45  
changed lines
  Added in v.48

  ViewVC Help
Powered by ViewVC 1.1.26