/[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 38 by dpavlin, Thu Jan 5 22:27:03 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 => 12;  use Test::More tests => 87;
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 = 0;
13    
14  # name of node for test  # name of node for test
15  my $test_node = 'Search-Estraier';  my $test_node = 'Search-Estraier';
16    
17  ok(my $node = new Search::Estraier::Node, 'new');  ok(my $node = new Search::Estraier::Node($debug), 'new');
18  isa_ok($node, 'Search::Estraier::Node');  isa_ok($node, 'Search::Estraier::Node');
19    
20  ok($node->set_url('http://localhost:1978/'), 'set_url');  ok($node->set_url('http://localhost:1978/node/searchestraier'), 'set_url');
21    
22  ok($node->set_proxy('', 8080), 'set_proxy');  ok($node->set_proxy('', 8080), 'set_proxy');
23  throws_ok {$node->set_proxy('proxy.example.com', 'foo') } qr/port/, 'set_proxy port NaN';  throws_ok {$node->set_proxy('proxy.example.com', 'foo') } qr/port/, 'set_proxy port NaN';
# Line 23  throws_ok {$node->set_proxy('proxy.examp Line 25  throws_ok {$node->set_proxy('proxy.examp
25  ok($node->set_timeout(42), 'set_timeout');  ok($node->set_timeout(42), 'set_timeout');
26  throws_ok {$node->set_timeout('foo') } qr/timeout/, 'set_timeout NaN';  throws_ok {$node->set_timeout('foo') } qr/timeout/, 'set_timeout NaN';
27    
28  ok($node->set_auth('foo','bar'), 'set_auth');  ok($node->set_auth('admin','admin'), 'set_auth');
29    
30  cmp_ok($node->status, '==', -1, 'status');  cmp_ok($node->status, '==', -1, 'status');
31    
32  my @res = ( -1, 200 );  my @res = ( -1, 200 );
33    
34  my $nodelist;  my $nodelist;
35  foreach my $url (qw{?action=nodelist http://localhost:1978/master_ui?action=nodelist}) {  foreach my $url (qw{?action=nodelist http://localhost:1978/master?action=nodelist}) {
36          cmp_ok(          cmp_ok(
37                  $node->shuttle_url( $url, 'text/plain', undef, \$nodelist)                  $node->shuttle_url( $url, 'text/plain', undef, \$nodelist)
38          ,'==', shift @res, 'nodelist');          ,'==', shift @res, 'nodelist');
# Line 46  You know that we are living in a materia Line 48  You know that we are living in a materia
48  And I am a material girl  And I am a material girl
49  _END_OF_DRAFT_  _END_OF_DRAFT_
50    
51  diag "draft:\n$draft";  #diag "draft:\n$draft";
52    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 ) {
57            $doc->add_attr('@uri', 'test' . $_);
58            ok( $node->put_doc($doc), "put_doc test$_");
59            #diag $doc->dump_draft;
60    }
61    
62    my $id;
63    ok($id = $node->uri_to_id( 'data001' ), "uri_to_id = $id");
64    
65    for ( 1 .. 5 ) {
66            ok( $node->out_doc_by_uri( 'test' . $_ ), "out_doc_by_uri test$_");
67    }
68    
69    ok($doc = $node->get_doc( $id ), 'get_doc for edit');
70    $doc->add_attr('foo', 'bar');
71    #diag Dumper($doc);
72    ok( $node->edit_doc( $doc ), 'edit_doc');
73    
74    ok( $node->out_doc( $id ), "out_doc $id");
75    
76    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 ) {
91            my $uri = 'test' . $_;
92            ok( my $id = $node->uri_to_id( $uri ), "uri_to_id $uri");
93            ok( $node->get_doc( $id ), "get_doc $id");
94            ok( $node->get_doc_by_uri( $uri ), "get_doc_by_uri $uri");
95            cmp_ok( $node->get_doc_attr( $id, '@uri' ), 'eq', $uri, "get_doc_attr $id");
96            cmp_ok( $node->get_doc_attr_by_uri( $uri, '@uri' ), 'eq', $uri, "get_doc_attr $id");
97            ok( my $k = $node->etch_doc( $id ), "etch_doc_by_uri $uri");
98            ok( my $k2 = $node->etch_doc_by_uri( $uri ), "etch_doc_by_uri $uri");
99            #diag Dumper($k, $k2);
100            ok( eq_hash( $k, $k2 ), "keywords");
101    }
102    
103    my $v;
104    ok($v = $node->name, "name: $v");
105    ok($v = $node->label, "label: $v");
106    ok($v = $node->doc_num, "doc_num: $v");
107    ok($v = $node->word_num, "word_num: $v");
108    ok($v = $node->size, "size: $v");
109    

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

  ViewVC Help
Powered by ViewVC 1.1.26