/[Search-Estraier]/trunk/t/1_Document.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/1_Document.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6 by dpavlin, Wed Jan 4 14:48:11 2006 UTC revision 60 by dpavlin, Sat Jan 7 00:00:15 2006 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 25;  use Test::More tests => 37;
7    use Test::Exception;
8    use Data::Dumper;
9    
10  BEGIN { use_ok('Search::Estraier') };  BEGIN { use_ok('Search::Estraier') };
11    
# Line 17  my $attr_data = { Line 19  my $attr_data = {
19          'size' => 42,          'size' => 42,
20  };  };
21    
22    my @test_texts = (
23            'This is a test',
24            'of pure-perl bindings',
25            'for HyperEstraier'
26    );
27    
28  ok(my $doc = new Search::Estraier::Document, 'new');  ok(my $doc = new Search::Estraier::Document, 'new');
29    
30    isa_ok($doc, 'Search::Estraier::Document');
31    
32  cmp_ok($doc->id, '==', -1, 'id');  cmp_ok($doc->id, '==', -1, 'id');
33    
34  ok($doc->delete, "delete");  ok($doc->delete, "delete");
# Line 26  ok($doc->delete, "delete"); Line 36  ok($doc->delete, "delete");
36  ok($doc = new Search::Estraier::Document, 'new');  ok($doc = new Search::Estraier::Document, 'new');
37    
38  foreach my $a (keys %{$attr_data}) {  foreach my $a (keys %{$attr_data}) {
39          ok($doc->add_attr($a, $attr_data->{$a}), "add_attr $a");          my $d = $attr_data->{$a} || die;
40            ok($doc->add_attr($a, $d), "add_attr $a");
41            cmp_ok($doc->attr($a), 'eq', $d, "attr $a = $d");
42    }
43    
44    foreach my $t (@test_texts) {
45            ok($doc->add_text($t), "add_text: $t");
46  }  }
47    
 ok($doc->add_text('This is a demo'), 'add_text');  
48  ok($doc->add_hidden_text('This is hidden text'), 'add_hidden_text');  ok($doc->add_hidden_text('This is hidden text'), 'add_hidden_text');
49    
50    ok(my @texts = $doc->texts, 'texts');
51    
52  ok(my $draft = $doc->dump_draft, 'dump_draft');  ok(my $draft = $doc->dump_draft, 'dump_draft');
53    
54  diag "dump_draft:\n$draft";  #diag "dump_draft:\n$draft";
55    
56  ok(my $doc2 = new_from_draft Search::Estraier::Document($draft), 'new_from_draft');  ok(my $doc2 = new Search::Estraier::Document($draft), 'new from draft');
57  cmp_ok($doc2->dump_draft, 'eq', $draft, 'drafts same');  cmp_ok($doc2->dump_draft, 'eq', $draft, 'drafts same');
58    
59  cmp_ok($doc->id, '==', -1, 'id');  cmp_ok($doc->id, '==', -1, 'id');
60  cmp_ok($doc2->id, '==', -1, 'id');  cmp_ok($doc2->id, '==', -1, 'id');
61    
62  my @attr = $doc->attr_names;  ok(my @attr = $doc->attr_names, 'attr_names');
63  diag "attr_names: ", join(',',@attr), "\n";  #diag "attr_names: ", join(',',@attr), "\n";
64    
65  cmp_ok(scalar @attr, '==', 2, 'attr_names');  cmp_ok(scalar @attr, '==', 2, 'attr_names');
66    
# Line 51  ok(! $doc->attr('foobar'), "non-existant Line 68  ok(! $doc->attr('foobar'), "non-existant
68    
69  foreach my $a (keys %{$attr_data}) {  foreach my $a (keys %{$attr_data}) {
70          cmp_ok($attr_data->{$a}, 'eq', $doc->attr($a), "attr $a = ".$attr_data->{$a});          cmp_ok($attr_data->{$a}, 'eq', $doc->attr($a), "attr $a = ".$attr_data->{$a});
71          ok($doc->add_attr($a, ''), "delete attribute");          ok($doc->add_attr($a, undef), "delete attribute");
72  }  }
73    
74    @attr = $doc->attr_names;
75  #diag "attr_names left: ", join(',',$doc->attr_names), "\n";  #diag "attr_names left: ", join(',',$doc->attr_names), "\n";
76  cmp_ok($doc->attr_names, '==' , 0, "attributes removed");  cmp_ok(@attr, '==' , 0, "attributes removed");
   
 my @texts = $doc->texts;  
 diag "texts: ", join(',',@texts), "\n";  
77    
78  cmp_ok(scalar @texts, '==', 1, 'texts');  #diag "texts: ", join(',',@texts), "\n";
79    ok(eq_array(\@test_texts, \@texts), 'texts');
80    
81  SKIP: {  ok(my $cat_text = $doc->cat_texts, 'cat_text');
82          skip "est_keywords not implemented", 2;  #diag "cat_texts: $cat_text";
83    
84          my @keywords = $doc->keywords;  ok($doc = new Search::Estraier::Document, 'new empty');
85          diag "keywords: ", join(',',@keywords), "\n";  ok(! $doc->texts, 'texts');
86    cmp_ok($doc->dump_draft, 'eq', "\n", 'dump_draft');
87          cmp_ok(scalar @keywords, '==', 1, 'keywords');  cmp_ok($doc->id, '==', -1, 'id');
88  }  ok(! $doc->attr_names, 'attr_names');
89    ok(! $doc->attr(undef), 'attr');
90    ok(! $doc->cat_texts, 'cat_texts');
 ok(my $snippet = $doc->make_snippet(480, 96, 96, qw(demo is)), "make_snippet");  
 diag "make_snippet:\n$snippet";  
91    
92  ok($doc->scan_words(qw(this is demo)), "scan_words");  #diag Dumper($doc);

Legend:
Removed from v.6  
changed lines
  Added in v.60

  ViewVC Help
Powered by ViewVC 1.1.26