/[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 40 by dpavlin, Thu Jan 5 23:00:22 2006 UTC revision 45 by dpavlin, Fri Jan 6 01:36:09 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 14;  use Test::More tests => 46;
7  use Test::Exception;  use Test::Exception;
8  use Data::Dumper;  use Data::Dumper;
9    
# 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  cmp_ok( $node->put_doc($doc), '==', 200, 'put_doc');  for ( 1 .. 10 ) {
55            $doc->add_attr('@uri', 'test' . $_);
56            ok( $node->put_doc($doc), "put_doc test$_");
57            #diag $doc->dump_draft;
58    }
59    
60    ok(my $id = $node->uri_to_id( 'data001' ), 'uri_to_id');
61    
62    ok( $node->out_doc( $id ), "out_doc $id");
63    
64    for ( 1 .. 5 ) {
65            ok( $node->out_doc_by_uri( 'test' . $_ ), "out_doc_by_uri test$_");
66    }
67    
68    $doc->add_attr('@uri', 'data001');
69    $doc->add_attr('foo', 'bar');
70    ok( $node->edit_doc( $doc ), 'edit_doc');
71    
72    for ( 6 .. 10 ) {
73            ok( $node->get_doc( $_ ), "get_doc $_");
74            my $uri = 'test' . $_;
75            ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri $uri");
76            ok( my $k = $node->etch_doc_by_uri( $uri ), "etch_doc_by_uri $uri");
77    }

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

  ViewVC Help
Powered by ViewVC 1.1.26