/[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 106 by dpavlin, Sun Feb 19 14:26:21 2006 UTC revision 107 by dpavlin, Sun Feb 19 17:01:49 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 101;  use Test::More tests => 106;
7  use Test::Exception;  use Test::Exception;
8  use Data::Dumper;  use Data::Dumper;
9    
# Line 32  cmp_ok($node->status, '==', -1, 'status' Line 32  cmp_ok($node->status, '==', -1, 'status'
32    
33  SKIP: {  SKIP: {
34    
35  skip "no $test1_node node in Hyper Estraier", 91, unless($node->name);  skip "no $test1_node node in Hyper Estraier", 97, unless($node->name);
36    
37  my @res = ( -1, 200 );  my @res = ( -1, 200 );
38    
# Line 143  ok($node = new Search::Estraier::Node( u Line 143  ok($node = new Search::Estraier::Node( u
143    
144  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');  ok(! $node->uri_to_id('foobar'), 'uri_to_id without croak');
145    
146    # test users
147    
148    ok(! $node->admins, 'no admins');
149    ok(! $node->guests, 'no guests');
150    
151  SKIP: {  SKIP: {
152          skip "no $test2_node in Hyper Estraier, skipping set_link", 2 unless (my $test2_label = $node2->label);          skip "no $test2_node in Hyper Estraier, skipping set_link", 2 unless (my $test2_label = $node2->label);
153    
154          ok($node->set_link("http://localhost:1978/node/$test2_node", $test2_label, 42), "set_link $test2_node ($test2_label) 42");          my $link_url = "http://localhost:1978/node/$test2_node";
155    
156            ok($node->set_link( $link_url, $test2_label, 42), "set_link $test2_node ($test2_label) 42");
157    
158            ok(my $links = $node->links, 'links');
159    
160            cmp_ok($#{$links}, '==', 0, 'one link');
161    
162            like($links->[0], qr/^$link_url/, 'link correct');
163    
164          ok($node->set_link("http://localhost:1978/node/$test2_node", $test2_label, 0), "set_link $test2_node ($test2_label) delete");          ok($node->set_link("http://localhost:1978/node/$test2_node", $test2_label, 0), "set_link $test2_node ($test2_label) delete");
165  }       # SKIP 2  }       # SKIP 2
166    

Legend:
Removed from v.106  
changed lines
  Added in v.107

  ViewVC Help
Powered by ViewVC 1.1.26