/[suikacvs]/messaging/manakai/t/DOM-Text.t
Suika

Contents of /messaging/manakai/t/DOM-Text.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download) (as text)
Sun Jul 8 11:28:45 2007 UTC (17 years, 4 months ago) by wakaba
Branch: MAIN
File MIME type: application/x-troff
++ manakai/t/ChangeLog	8 Jul 2007 11:28:41 -0000
	* DOM-CharacterData.t, DOM-Text.t: New test scripts.

2007-07-08  Wakaba  <wakaba@suika.fam.cx>

++ manakai/lib/Message/DOM/ChangeLog	8 Jul 2007 11:28:19 -0000
	* DOMCharacterData.pm (AUTOLOAD): Removed.
	(data): Reimplemented.
	(delete_data, insert_data, replace_data, substring_data): There were
	a number of bugs.

	* Text.pm (AUTOLOAD): Removed.  Unused.

2007-07-08  Wakaba  <wakaba@suika.fam.cx>

1 wakaba 1.1 #!/usr/bin/perl
2     use strict;
3     use Test;
4     BEGIN { plan tests => 121 }
5    
6     require Message::DOM::DOMImplementation;
7     use Message::Util::Error;
8    
9     my $dom = Message::DOM::DOMImplementation->____new;
10     my $doc = $dom->create_document;
11    
12     ## |isElementContentWhitespace|
13     {
14     my $node = $doc->create_text_node ('');
15    
16     ok $node->is_element_content_whitespace ? 1 : 0, 0, 'ecw [0]';
17    
18     $node->is_element_content_whitespace (1);
19     ok $node->is_element_content_whitespace ? 1 : 0, 1, 'rcw [1]';
20    
21     $node->is_element_content_whitespace (0);
22     ok $node->is_element_content_whitespace ? 1 : 0, 0, 'ecw [2]';
23     }
24    
25     ## |wholeText|
26     {
27     my $text1 = $doc->create_text_node ('text1');
28     my $el = $doc->create_element ('el');
29     $el->append_child ($text1);
30    
31     ok $text1->whole_text, 'text1', 'whole_text [1]';
32    
33     my $text2 = $doc->create_text_node ('text2');
34     $el->append_child ($text2);
35    
36     ok $text1->whole_text, 'text1text2', 'whole_text [2]';
37     ok $text2->whole_text, 'text1text2', 'whole_text [3]';
38    
39     my $text3 = $doc->create_cdata_section ('text3');
40     $el->append_child ($text3);
41    
42     ok $text1->whole_text, 'text1text2text3', 'whole_text [4]';
43     ok $text2->whole_text, 'text1text2text3', 'whole_text [5]';
44     ok $text3->whole_text, 'text1text2text3', 'whole_text [6]';
45    
46     my $el1 = $doc->create_element ('el1');
47     $el->append_child ($el1);
48     $el->append_child ($text2);
49    
50     ok $text1->whole_text, 'text1text3', 'whole_text [7]';
51     ok $text2->whole_text, 'text2', 'whole_text [8]';
52     ok $text3->whole_text, 'text1text3', 'whole_text [9]';
53     }
54     {
55     my $el = $doc->create_element ('e');
56     my $text1 = $doc->create_text_node ('text1');
57     $el->append_child ($text1);
58     my $text3 = $doc->create_cdata_section ('text3');
59     $el->append_child ($text3);
60     my $er1 = $doc->create_entity_reference ('er1');
61     $er1->manakai_set_read_only (0, 1);
62     $el->append_child ($er1);
63     my $text4 = $doc->create_text_node ('text4');
64     $er1->append_child ($text4);
65     my $text2 = $doc->create_cdata_section ('text2');
66     $el->append_child ($text2);
67    
68     ok $text1->whole_text, 'text1text3text4text2', 'whole_text [10]';
69     ok $text2->whole_text, 'text1text3text4text2', 'whole_text [11]';
70     ok $text3->whole_text, 'text1text3text4text2', 'whole_text [12]';
71     ok $text4->whole_text, 'text1text3text4text2', 'whole_text [13]';
72     }
73     {
74     my $el = $doc->create_element ('e');
75     my $text1 = $doc->create_text_node ('text1');
76     $el->append_child ($text1);
77     my $text3 = $doc->create_cdata_section ('text3');
78     $el->append_child ($text3);
79     my $er1 = $doc->create_entity_reference ('er1');
80     $er1->manakai_set_read_only (0, 1);
81     $el->append_child ($er1);
82     my $text4 = $doc->create_text_node ('text4');
83     $er1->append_child ($text4);
84     my $com1 = $doc->create_comment ('');
85     $er1->append_child ($com1);
86     my $text2 = $doc->create_text_node ('text2');
87     $el->append_child ($text2);
88    
89     ok $text1->whole_text, 'text1text3text4', 'whole_text [14]';
90     ok $text2->whole_text, 'text2', 'whole_text [15]';
91     ok $text3->whole_text, 'text1text3text4', 'whole_text [16]';
92     ok $text4->whole_text, 'text1text3text4', 'whole_text [17]';
93     }
94    
95     =head1 LICENSE
96    
97     Copyright 2007 Wakaba <w@suika.fam.cx>
98    
99     This program is free software; you can redistribute it and/or
100     modify it under the same terms as Perl itself.
101    
102     =cut
103    
104     ## $Date: 2007/06/17 13:37:42 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24