Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XmlDocumentTypeTests.cs « System.Xml « Test « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c80d2a56882028beb0edc2871096651be04d28fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
//
// System.Xml.XmlDocumentTypeTests.cs
//
// Author: Duncan Mak  (duncan@ximian.com)
// Author: Martin Willemoes Hansen (mwh@sysrq.dk)
//
// (C) Ximian, Inc.
// (C) 2003 Martin Willemoes Hansen
//

using System;
using System.Xml;

using NUnit.Framework;

namespace MonoTests.System.Xml
{
	[TestFixture]
	public class XmlDocumentTypeTests
	{
		XmlDocument document;
		XmlDocumentType docType;

		[SetUp]
		public void GetReady ()
		{
			document = new XmlDocument ();
			docType = document.CreateDocumentType ("book", null, null, "<!ELEMENT book ANY>");
			document.AppendChild (docType);
		}

		internal void XmlNodeBaseProperties (XmlNode original, XmlNode cloned)
		{
//			assertequals (original.nodetype + " was incorrectly cloned.",
//				      original.baseuri, cloned.baseuri);			

			Assert.IsNull (cloned.ParentNode);
			Assert.AreEqual (original.Value, cloned.Value, "Value incorrectly cloned");

                        Assert.IsTrue (!Object.ReferenceEquals (original, cloned), "Copies, not pointers");
		}

		[Test]
		public void Name ()
		{
			Assert.AreEqual ("book", docType.Name, "Getting Name property");
		}

		[Test]
		public void LocalName ()
		{
			Assert.AreEqual ("book", docType.LocalName, "Getting LocalName property");
		}

		[Test]
		public void InternalSubset ()
		{
			Assert.AreEqual ("<!ELEMENT book ANY>", docType.InternalSubset, "Getting Internal Subset property");
		}

		[Test]
		public void AppendChild ()
		{
			try {
				XmlDocumentType type1 = document.CreateDocumentType ("book", null, null, null);
				document.AppendChild (type1);

			} catch (InvalidOperationException) {
				return;

			} catch (Exception) {				
				Assert.Fail ("Incorrect Exception thrown.");
			}
		}

		[Test]
		public void NodeType ()
		{
			Assert.AreEqual (docType.NodeType.ToString (), "DocumentType", "NodeType property broken");
		}
		
		[Test]
		public void IsReadOnly ()
		{
			Assert.AreEqual ("True", docType.IsReadOnly.ToString (), "IsReadOnly property");
		}

		[Test]
		[ExpectedException (typeof (XmlException))]
		public void IncorrectInternalSubset ()
		{
			XmlDocument doc = new XmlDocument ();
			XmlDocumentType doctype = doc.CreateDocumentType (
				"root", "public-hogehoge", null,
				"invalid_intsubset");
			doctype = doc.CreateDocumentType ("root",
				"public-hogehoge", null, 
				"<!ENTITY % pe1 '>'> <!ELEMENT e EMPTY%pe1;");
		}

		[Test]
		public void CloneNode ()
		{
			XmlNode original = docType;

			XmlNode cloned1 = docType.CloneNode (true);
			XmlNodeBaseProperties (original, cloned1);

			XmlNode cloned2 = docType.CloneNode (false);
			XmlNodeBaseProperties (original, cloned2);

			Assert.AreEqual (cloned1.Value, cloned2.Value, "Deep and shallow cloning");
		}
	       
	}
}