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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download) (as text)
Sun Jun 17 13:37:42 2007 UTC (17 years, 10 months ago) by wakaba
Branch: MAIN
File MIME type: application/x-troff
++ manakai/t/ChangeLog	17 Jun 2007 13:37:22 -0000
2007-06-17  Wakaba  <wakaba@suika.fam.cx>

	* DOM-Attr.t, DOM-AttributeDefinition.t, DOM-DocumentType.t,
	DOM-Element.t, DOM-Entity.t, DOM-EntityReference.t,
	DOM-Notation.t, DOM-ProcessingInstruction.t: New.

	* DOM-Document.t, DOM-Node.t: Tests for newly-implemented attributes
	and methods are added.

	* Makefile (test-module-dom-old): Renamed from |test-module-dom|.
	(test-module-dom): New.

++ manakai/lib/Message/DOM/ChangeLog	17 Jun 2007 13:34:54 -0000
2007-06-17  Wakaba  <wakaba@suika.fam.cx>

	* Attr.pm (____new): Initialize |specified| as 1.
	(base_uri, manakai_attribute_type, specified): Implemented.
	(prefix): Don't check read-only flag unless |strict_error_checking|.
	(value): Call |text_content| for now.

	* AttributeDefinition.pm (DeclaredValueType, DefaultValueType): Added.
	(declared_type, default_type): Implemented.

	* CharacterData.pm (____new): Allow a scalar reference
	as an input for the |data| attribute.
	(base_uri, manakai_append_text): Implemented.

	* DOMConfiguration.pm (set_parameter): Resetting implemented.

	* DOMDocument.pm (____new): Set default values to
	configuration parameter whose default is true.
	(document_uri, input_encoding): Implemented.
	(all_declarations_processed, manakai_is_html): Implemented.
	(base_uri, manakai_append_text,
	manakai_entity_base_uri, strict_error_checking,
	xml_encoding, xml_version, xml_standalone): Implemented.

	* DOMElement.pm (manakai_base_uri, base_uri): Implemented.
	(get_attribute, get_attribute_node): Alpha version.
	(set_attribute_node, set_attribute_node_ns): Implemented.
	(set_attribute_ns): Accept non-ARRAY qualified name.

	* DOMException.pm (___error_def): |WRONG_DOCUMENT_ERR|,
	|NOT_SUPPORTED_ERR|, and |INUSE_ATTRIBUTE_ERR| are added.

	* DocumentType.pm (public_id, system_id): Implemented.
	(base_uri, declaration_base_uri, manakai_declaration_base_uri,
	manakai_append_text): Implemented.
	(element_types, general_entities, notations,
	set_element_type_definition_node, set_general_entity_node,
	set_notation_node): Alpha version.

	* ElementTypeDefinition.pm (manakai_append_text): Implemented.
	(attribute_definitions, set_attribute_definition_node): Alpha version.

	* Entity.pm (has_replacement_tree, public_id, system_id,
	manakai_declaration_base_uri, manakai_entity_base_uri,
	manakai_entity_uri): Implemented.

	* EntityReference.pm (manakai_expanded, manakai_external): Implemented.
	(base_uri, manakai_entity_base_uri): Implemented.

	* Node.pm (base_uri): Implemented.
	(text_content): Don't check read-only or not
	unless |strict_error_checking|.
	(manakai_append_text): Implemented.
	(get_feature): Alpha.
	(manakai_set_read_only): Implemented.

	* Notation.pm (public_id, system_id, manakai_append_text,
	manakai_declaration_base_uri): Implemented.

	* ProcessingInstruction.pm (manakai_base_uri,
	base_uri, manakai_append_text): Implemented.

1 #!/usr/bin/perl
2 use strict;
3 use Test;
4 BEGIN { plan tests => 70 }
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 my $ent = $doc->create_attribute_definition ('ad');
13
14 ## Constants
15 my $constants = [
16 [NO_TYPE_ATTR => 0],
17 [CDATA_ATTR => 1],
18 [ID_ATTR => 2],
19 [IDREF_ATTR => 3],
20 [IDREFS_ATTR => 4],
21 [ENTITY_ATTR => 5],
22 [ENTITIES_ATTR => 6],
23 [NMTOKEN_ATTR => 7],
24 [NMTOKENS_ATTR => 8],
25 [NOTATION_ATTR => 9],
26 [ENUMERATION_ATTR => 10],
27 [UNKNOWN_ATTR => 11],
28 [UNKNOWN_DEFAULT => 0],
29 [FIXED_DEFAULT => 1],
30 [REQUIRED_DEFAULT => 2],
31 [IMPLIED_DEFAULT => 3],
32 [EXPLICIT_DEFAULT => 4],
33 ];
34 for (@$constants) {
35 my $const_name = $_->[0];
36 ok $ent->can ($const_name) ? 1 : 0, 1, "can ($const_name)";
37 ok $ent->$const_name, $_->[1], $const_name;
38 }
39
40 for my $prop (qw/declared_type default_type/) {
41 ok $ent->can ($prop) ? 1 : 0, 1, 'can ' . $prop;
42 local $^W = 0;
43
44 for (-3..10, 'abc', '') {
45 $ent->$prop ($_);
46 ok $ent->$prop, 0+$_, $prop . $_;
47 }
48
49 $ent->$prop (undef);
50 ok $ent->$prop, 0, $prop . ' undef';
51 }
52
53 =head1 LICENSE
54
55 Copyright 2007 Wakaba <w@suika.fam.cx>
56
57 This program is free software; you can redistribute it and/or
58 modify it under the same terms as Perl itself.
59
60 =cut
61
62 ## $Date: 2007/06/16 08:49:00 $

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24