ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. 2005-11-09 Atsushi Enomoto <[email protected]>
  2. * XmlConvertTests.cs : some tests for ToInt64(), ToSByte(),
  3. 2005-11-09 Atsushi Enomoto <[email protected]>
  4. * XmlConvertTests.cs : some tests for ToInt16(), ToInt32(),
  5. VerifyName() and VerifyNCName().
  6. 2005-11-07 Atsushi Enomoto <[email protected]>
  7. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags is updated.
  8. 2005-10-23 Atsushi Enomoto <[email protected]>
  9. * XmlNamespaceManagerTests.cs :
  10. well, hence GetNamespacesInScope() is NotDotNet.
  11. 2005-10-23 Atsushi Enomoto <[email protected]>
  12. * XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
  13. labels. Fixed counts; they count default namespaces. MS seems to
  14. have a bug on declaration removal (xmlns='') on .Local.
  15. * XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
  16. allowed at all, so disabled tests that depends on such references.
  17. 2005-10-23 Atsushi Enomoto <[email protected]>
  18. * XmlTextWriterTests.cs : split some tests that try to write nodes
  19. at error state (.NET 2.0 correctly rejects them).
  20. 2005-10-23 Atsushi Enomoto <[email protected]>
  21. * XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
  22. XmlReaderCommonTests.cs : added and fixed tests to make sure that
  23. LookupNamespace("") returns null for default namespace, and checks
  24. that empty namespace URI is not allowed for non-empty prefix.
  25. 2005-10-04 Atsushi Enomoto <[email protected]>
  26. * XmlConvertTests.cs : added test for bug #76328.
  27. 2005-10-01 Atsushi Enomoto <[email protected]>
  28. * XmlWriterSettingsTests.cs : test for NormalizeNewLines.
  29. 2005-10-01 Atsushi Enomoto <[email protected]>
  30. * XmlAttributeTests.cs : test for bug #76311.
  31. 2005-10-01 Atsushi Enomoto <[email protected]>
  32. * XmlReaderCommonTests.cs : added simple Create() test.
  33. 2005-09-28 Atsushi Enomoto <[email protected]>
  34. * XmlNodeReaderTests.cs : added test for bug #76260.
  35. 2005-09-27 Atsushi Enomoto <[email protected]>
  36. * XmlTextReaderTests.cs : added test for bug #76247.
  37. 2005-09-26 Atsushi Enomoto <[email protected]>
  38. * XmlValidatingReaderTests.cs : added test for bug #76234.
  39. 2005-09-25 Atsushi Enomoto <[email protected]>
  40. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
  41. 2005-09-21 Atsushi Enomoto <[email protected]>
  42. * XmlWriterSettingsTests.cs : removed NormalizeNewLines.
  43. 2005-09-21 Atsushi Enomoto <[email protected]>
  44. * XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
  45. * NameTableTests.cs : numbered testcases. fixed argument order.
  46. 2005-09-14 Atsushi Enomoto <[email protected]>
  47. * XmlTextReaderTests.cs : added #76102 testcase.
  48. 2005-09-14 Atsushi Enomoto <[email protected]>
  49. * XmlTextWriterTests.cs : added #76095 testcase.
  50. 2005-08-31 Sebastien Pouliot <[email protected]>
  51. * XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
  52. * XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
  53. * XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
  54. 2005-08-04 Atsushi Enomoto <[email protected]>
  55. * XmlAttributeTests.cs : Test if set_Value() works in such cases that
  56. there was only one child in attribute and it was an entity reference.
  57. 2005-07-28 Atsushi Enomoto <[email protected]>
  58. * XsdValidatingReaderTests.cs : added test case for duplicating
  59. assignment of both Schemas.Add() and xsi:schemaLocation where
  60. schemaLocation could not be resolved.
  61. 2005-07-14 Atsushi Enomoto <[email protected]>
  62. * XmlTextWriterTests.cs : added bug #75546 testcase.
  63. 2005-06-29 Atsushi Enomoto <[email protected]>
  64. * XmlConvertTests.cs : added timespan milliseconds testcase.
  65. 2005-06-27 Atsushi Enomoto <[email protected]>
  66. * XmlTextReaderTests.cs : added a testcase for not-wf entity
  67. declaration which is actually not used in the instance.
  68. 2005-06-23 Atsushi Enomoto <[email protected]>
  69. * XsdParticleValidationTests.cs : XmlSchemaException ->
  70. XmlSchemaValidationException under 2.0 profile.
  71. 2005-06-17 Atsushi Enomoto <[email protected]>
  72. * XmlValidatingReaderTests.cs : added attribute namespace check in
  73. DefaultXmlnsAttributeLookup() as well.
  74. 2005-06-17 Atsushi Enomoto <[email protected]>
  75. * XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
  76. 2005-05-31 Atsushi Enomoto <[email protected]>
  77. * XmlValidatingReaderTests.cs : let's test external DTD as well.
  78. 2005-05-31 Atsushi Enomoto <[email protected]>
  79. * XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
  80. is imported from sys.security.
  81. 2005-05-25 Andrew Skiba <[email protected]>
  82. * W3C : directory added
  83. 2005-05-10 Atsushi Enomoto <[email protected]>
  84. * XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
  85. which was regarded as a bug while it was by design.
  86. 2005-05-05 Atsushi Enomoto <[email protected]>
  87. * XmlNamespaceManagerTests.cs : removed more atomizedName tests.
  88. 2005-05-05 Atsushi Enomoto <[email protected]>
  89. * XmlNamespaceManagerTests.cs : removed atomizedName related tests.
  90. 2005-03-25 Atsushi Enomoto <[email protected]>
  91. * XmlTextWriterTests.cs : added more test case for xml:space.
  92. 2005-03-24 Atsushi Enomoto <[email protected]>
  93. * XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
  94. 2005-03-15 Atsushi Enomoto <[email protected]>
  95. * XmlValidatingReaderTests.cs : Added test for sequential text nodes
  96. which affects on ExpandEntities.
  97. 2005-03-09 Atsushi Enomoto <[email protected]>
  98. * XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
  99. 2005-03-07 Atsushi Enomoto <[email protected]>
  100. * XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
  101. Test case by Konstantin Triger.
  102. 2005-03-07 Atsushi Enomoto <[email protected]>
  103. * XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
  104. 2005-03-03 Atsushi Enomoto <[email protected]>
  105. * XmlTextWriterTests.cs : added testcase for duplicating namespace
  106. mapping processing (should create another prefix, not exception).
  107. 2005-03-02 Atsushi Enomoto <[email protected]>
  108. * XmlTextWriterTests.cs : Added test for LookupPrefix() for
  109. overriden prefix.
  110. 2005-02-25 Atsushi Enomoto <[email protected]>
  111. * XmlNodeTests.cs : added Clone() of readonly node returns a node
  112. that is not readonly.
  113. 2005-02-25 Atsushi Enomoto <[email protected]>
  114. * XmlAttributeTests.cs : added nonNCName Prefix case.
  115. 2005-02-24 Atsushi Enomoto <[email protected]>
  116. * XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
  117. 2005-02-16 Atsushi Enomoto <[email protected]>
  118. * XmlConvertTests.cs : added some null/empty string cases for
  119. EncodeName()/EncodeLocalName()/EncodeNmToken().
  120. 2005-02-15 Atsushi Enomoto <[email protected]>
  121. * XmlElementTests.cs : assertion numbering on
  122. RemoveDoesNotRemoveDefaultAttributes().
  123. 2005-01-26 Nick Drochak <[email protected]>
  124. * XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
  125. test method and ignore it on .NET.
  126. 2005-01-17 Atsushi Enomoto <[email protected]>
  127. * XmlReaderSettingsTests.cs : added some .ctor() tests.
  128. 2005-01-13 Atsushi Enomoto <[email protected]>
  129. * XmlReaderCommonTests.cs : added labels for tests.
  130. Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
  131. no consistent reference implementation to follow.
  132. 2005-01-13 Atsushi Enomoto <[email protected]>
  133. * XmlValidatingReaderTests.cs,
  134. XmlReaderCommonTests.cs,
  135. XmlTextWriterTests.cs,
  136. XmlUrlResolverTests.cs :
  137. Marked as NotDotNet for those tests that fails under MS.NET.
  138. Commented out some XmlTextWriter implementation-dependent assertions.
  139. Fixed ResolveUriWithNullArgs () expected return type.
  140. 2005-01-11 Atsushi Enomoto <[email protected]>
  141. * XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
  142. 2004-01-11 Atsushi Enomoto <[email protected]>
  143. * XmlReaderCommonTests.cs :
  144. Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
  145. 2004-01-11 Atsushi Enomoto <[email protected]>
  146. * XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
  147. that is buggy on attribute value's Prefix and NamespaceURI.
  148. 2005-01-10 Nick Drochak <[email protected]>
  149. * XmlWriterTests.cs: Fix build warnings.
  150. * XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
  151. has different default attributes it seems.
  152. 2004-12-15 Raja R Harinath <[email protected]>
  153. * XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
  154. XsdValidate references to use ValidationType.
  155. 2004-12-08 Atsushi Enomoto <[email protected]>
  156. * XmlReaderSettingsTests.cs : updated some boolean flags to
  157. XmlSchemaValidationFlags.
  158. 2004-11-22 Atsushi Enomoto <[email protected]>
  159. * XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
  160. 2004-11-14 Atsushi Enomoto <[email protected]>
  161. * XmlWriterTests.cs : Added test for WriteAttributes().
  162. 2004-11-08 Atsushi Enomoto <[email protected]>
  163. * XmlNodeReaderTests.cs : numbered some of asserts.
  164. 2004-11-08 Atsushi Enomoto <[email protected]>
  165. * XmlTextReaderTests.cs : added tests for 2.0 entity handling.
  166. * XmlValidatingReaderTests.cs : modified tests for entity handling
  167. that are changed in 2.0.
  168. 2004-10-29 Atsushi Enomoto <[email protected]>
  169. * XmlReaderCommonTests.cs : ReadAsObject() is removed.
  170. * XmlTextWriterTests.cs : added CloseTwice().
  171. * XmlNodeTests.cs : added labels.
  172. 2004-09-08 Atsushi Enomoto <[email protected]>
  173. * XmlWriterSettingsTests.cs : added.
  174. 2004-09-07 Atsushi Enomoto <[email protected]>
  175. * XmlReaderCommonTests.cs : Added tests for ReadAsObject().
  176. 2004-09-07 Atsushi Enomoto <[email protected]>
  177. * XmlNamespaceManagerTests.cs : Added test for duplicate addition,
  178. atomization, complex RemoveNamespace() and GetNamespacesInScope().
  179. 2004-09-07 Atsushi Enomoto <[email protected]>
  180. * XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
  181. * XmlTextReaderTests.cs : added normalization and Setting sests.
  182. 2004-09-06 Atsushi Enomoto <[email protected]>
  183. * XmlElementTests.cs : added another set_InnerXml test.
  184. * XmlNodeTests.cs : added BaseURI test.
  185. * XmlTextReaderTests.cs : added tests for Normalization, EOF,
  186. LineNumber, LinePosition (all reported ones).
  187. * XsdValidatingReaderTests.cs : more descriptions.
  188. 2004-09-06 Atsushi Enomoto <[email protected]>
  189. * XmlTextReaderTests.cs : added ProhibitDtd().
  190. * XmlWriterTests.cs : added WriteNodeError().
  191. 2004-06-21 Atsushi Enomoto <[email protected]>
  192. * XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
  193. It requires CAS.
  194. 2004-06-18 Atsushi Enomoto <[email protected]>
  195. * XmlSecureResolverTests.cs : [TestFixture] was missing.
  196. 2004-06-14 Atsushi Enomoto <[email protected]>
  197. * XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
  198. 2004-06-14 Atsushi Enomoto <[email protected]>
  199. * XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
  200. URI file:///usr/local/src as correct file path. MS.NET is not aware
  201. of such format and parses as "host = usr, path = /local/src".
  202. 2004-06-06 Atsushi Enomoto <[email protected]>
  203. * XmlTextWriterTests.cs : Added indentation testcase (it might now
  204. work due to CompareInfo.IndexOf() bug).
  205. 2004-06-06 Atsushi Enomoto <[email protected]>
  206. * XmlTextReaderTests.cs : added some namespace check tests.
  207. 2004-05-27 Atsushi Enomoto <[email protected]>
  208. * XmlTextReaderTests.cs : added test for bug #59142.
  209. * XmlTextWriterTests.cs : added test for bug #59154.
  210. * XmlDocumentTests.cs : added test for bug #59155.
  211. 2004-05-24 Atsushi Enomoto <[email protected]>
  212. * XmlNodeTests.cs : added Normalize2().
  213. 2004-05-13 Atsushi Enomoto <[email protected]>
  214. * XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
  215. kind of thing that should be supported.
  216. * XmlValidatingReaderTests.cs : commented a bit.
  217. 2004-04-24 Atsushi Enomoto <[email protected]>
  218. * XmlConvertTests.cs : Commented out locale-dependent tests.
  219. * XmlDocumentTests.cs : Uncommented now-testable lines.
  220. Commented out that should not be allowed, such as non-XML-name node.
  221. 2004-04-24 Atsushi Enomoto <[email protected]>
  222. * XmlDeclarationTests.cs : More InnerText tests.
  223. 2004-04-20 Atsushi Enomoto <[email protected]>
  224. * XmlCharacterDataTests.cs : Added more tests for Substring().
  225. * XmlConvertTests.cs : Commented out locale-dependent tests.
  226. * XmlDocumentTests.cs : Added LoadEntityReference().
  227. 2004-03-31 Atsushi Enomoto <[email protected]>
  228. * Added nist_dom tests from Mainsoft hackers.
  229. * Added XmlSecureResolverTests.cs.
  230. 2004-03-16 Atsushi Enomoto <[email protected]>
  231. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  232. should be written regardless of document.PreserveWhitespace.)
  233. 2004-03-15 Atsushi Enomoto <[email protected]>
  234. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  235. EndElement.
  236. 2004-03-14 Atsushi Enomoto <[email protected]>
  237. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  238. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  239. 2004-03-04 Atsushi Enomoto <[email protected]>
  240. * XmlDocumentTests.cs : added Implementation().
  241. 2004-02-17 Atsushi Enomoto <[email protected]>
  242. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  243. 2004-02-05 Atsushi Enomoto <[email protected]>
  244. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  245. ReadNodeWhitespace().
  246. * XmlElementTests.cs : Added SetAttributeNodeError().
  247. 2004-02-04 Atsushi Enomoto <[email protected]>
  248. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  249. DescendantsRecursively and added more test lines.
  250. Added ChildNodes().
  251. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  252. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  253. 2004-02-03 Atsushi Enomoto <[email protected]>
  254. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  255. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  256. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  257. 2004-01-28 Atsushi Enomoto <[email protected]>
  258. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  259. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  260. element, removed extraneous test switch for InsertBefore().
  261. * XsdParticleValidationTests.cs,
  262. XsdValidatingReaderTests.cs : These test class names are too
  263. ambiguous so just renamed them. (No bug reports are found on them,
  264. but should be warned in the meantime.)
  265. 2004-01-23 Atsushi Enomoto <[email protected]>
  266. * XmlElementTests.cs : Added SetAttributeXmlns.
  267. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  268. 2004-01-22 Atsushi Enomoto <[email protected]>
  269. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  270. 2004-01-20 Atsushi Enomoto <[email protected]>
  271. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  272. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  273. 2004-01-14 Atsushi Enomoto <[email protected]>
  274. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  275. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  276. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  277. Close or avoid XmlTextReader.
  278. 2004-01-03 Atsushi Enomoto <[email protected]>
  279. * XmlAttributeCollectionTests.cs :
  280. added InsertAfterReplacesInCorrectOrder().
  281. * XmlUrlResolverTests.cs : fixed file path.
  282. * XmlTextReaderTests.cs : fixed file path.
  283. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  284. 2003-12-21 Atsushi Enomoto <[email protected]>
  285. * XmlDocumentTests.cs, XmlElementTests.cs :
  286. Added GetElementsByTagNameNs2().
  287. 2003-12-16 Atsushi Enomoto <[email protected]>
  288. * XmlDeclarationTests.cs : Added InvalidInnerText().
  289. * XmlDocumentTests.cs : CRLF fix (to LF)
  290. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  291. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  292. 2003-11-28 Atsushi Enomoto <[email protected]>
  293. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  294. encoding specification. Added WriteNodeNonEmptyElement().
  295. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  296. and GetEntityWithRelativeFileUri().
  297. * XmlTextWriterTests.cs : Added some namespace related tests.
  298. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  299. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  300. nodes.
  301. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  302. * XmlDeclarationTests.cs : Added InvalidInnerText().
  303. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  304. 2003-10-13 Atsushi Enomoto <[email protected]>
  305. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  306. 2003-10-13 Atsushi Enomoto <[email protected]>
  307. * XmlElementTests.cs : Added more tests on
  308. RemoveDoesNotRemoveDefaultAttributes().
  309. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  310. GetNamespaceOfPrefixNullArg().
  311. * XmlWriterTests.cs : Added WriteNodeNone().
  312. 2003-10-05 Atsushi Enomoto <[email protected]>
  313. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  314. methods.
  315. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  316. and added GetEntityWithNullArgs() (though it is uncommented).
  317. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  318. testing phase.
  319. 2003-09-21 Atsushi Enomoto <[email protected]>
  320. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  321. 2003-09-21 Atsushi Enomoto <[email protected]>
  322. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  323. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  324. which is rather buggy than their XmlNodeReader.
  325. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  326. and trivial messagefix.
  327. 2003-09-21 Atsushi Enomoto <[email protected]>
  328. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  329. 2003-08-24 Atsushi Enomoto <[email protected]>
  330. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  331. EmptyStringHasTextNode().
  332. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  333. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  334. ReadAttributeValue().
  335. * XmlTextReaderTests.cs :
  336. Added NotAllowedCharRef() and ExpandParameterEntity().
  337. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  338. and UndeclaredEntityInStandaloneXml().
  339. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  340. refactory.
  341. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  342. 2003-08-05 Atsushi Enomoto <[email protected]>
  343. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  344. should be ExpandCharEntities.
  345. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  346. ResolveEntity2() and ResolveEntityWithoutDTD().
  347. 2003-07-31 Atsushi Enomoto <[email protected]>
  348. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  349. CreateEntityReferencesWithoutDTD().
  350. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  351. ResolveEntityWithoutDTD().
  352. 2003-07-29 Atsushi Enomoto <[email protected]>
  353. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  354. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  355. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  356. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  357. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  358. entity reference inside text content (and it now fails).
  359. 2003-07-26 Atsushi Enomoto <[email protected]>
  360. * XmlAttributeTests.cs : added IdentityConstraints().
  361. * XmlDocumentTests.cs : added DocumentTypeNodes().
  362. * XmlNodeTests.cs : added InnerText().
  363. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  364. testing reader. Added IndexerAndAttributes().
  365. * XmlValidatingReader.cs : modified TestAttributes() to have
  366. ReadAttributeValue() tests. Added TestIdentityConstraints()
  367. 2003-07-24 Atsushi Enomoto <[email protected]>
  368. * XmlConvertTests.cs,
  369. XmlNodeTests.cs,
  370. XmlTextWriterTests.cs : removed some compilation warning.
  371. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  372. incorrect commit.
  373. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  374. and changed PrepareXmlReader() as returning validating reader.
  375. Added indexer (this[]) property check and ValidationType.None check
  376. to TestAttributeDefaultContribution().
  377. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  378. 2003-07-19 Atsushi Enomoto <[email protected]>
  379. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  380. some code refactory.
  381. 2003-07-12 Atsushi Enomoto <[email protected]>
  382. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  383. TestAttributeDefaultContribution().
  384. 2003-07-12 Atsushi Enomoto <[email protected]>
  385. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  386. ReadState check.
  387. * ChangeLog was incorrectly added about above stuff.
  388. * XmlTextReaderTests.cs : added some reader's state check tests and
  389. ReadAsElementContent and ReadAsAttributeContent.
  390. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  391. 2003-07-06 Atsushi Enomoto <[email protected]>
  392. * added XmlValidatingReaderTests.cs.
  393. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  394. * XmlTextWriterTests.cs: Made use of ExpectedException
  395. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  396. * Made tests which expect an exception use the
  397. ExpectedException Attribute.
  398. 2003-06-20 Atsushi Enomoto <[email protected]>
  399. * added XmlUrlResolverTests.cs.
  400. 2003-06-16 Atsushi Enomoto <[email protected]>
  401. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  402. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  403. in BaseURI test and DTD parameter entity test.
  404. 2003-06-16 Atsushi Enomoto <[email protected]>
  405. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  406. EmptyElementWithAttributes() and was added namespaced attribute tests.
  407. * XmlTextWriterTests.cs : added WriteWhitespace().
  408. 2003-06-10 Zoltan Varga <[email protected]>
  409. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  410. CreateAttribute.
  411. 2003-06-01 Atsushi Enomoto <[email protected]>
  412. * XmlConvertTests.cs : added VerifyNCName().
  413. 2003-05-18 Atsushi Enomoto <[email protected]>
  414. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  415. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  416. added more tests to AttributeWriteAttributeString().
  417. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  418. 2003-05-16 Atsushi Enomoto <[email protected]>
  419. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  420. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  421. and not well-formed xml of OuterXmlWithDefaultXmlns().
  422. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  423. WriteToWithDefaultNamespace().
  424. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  425. ReadInnerXmlWrongInit().
  426. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  427. * XmlReaderCommonTests.cs,
  428. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  429. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  430. to resolve these entity references.
  431. * XmlTextWriterTests.cs : removed English-dependent error message check.
  432. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  433. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  434. XmlDecl() as MS.NET results in.
  435. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  436. * Tests inherits from Assertion and Assertion. prefixes removed
  437. 2003-05-05 Atsushi Enomoto <[email protected]>
  438. * added XmlConvertTests.cs.
  439. 2003-04-29 Atsushi Enomoto <[email protected]>
  440. * XmlAttributeTests.cs : added WriteTo.
  441. * XmlReaderCommonTests.cs,
  442. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  443. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  444. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  445. they requires IsEmptyElement = false, which is always true for
  446. XmlNodeReader).
  447. 2003-04-27 Atsushi Enomoto <[email protected]>
  448. * XmlReaderCommonTests.cs,
  449. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  450. 2003-04-25 Atsushi Enomoto <[email protected]>
  451. * XmlWriterTests.cs : added some WriteNode() related testcases.
  452. 2003-04-13 Atsushi Enomoto <[email protected]>
  453. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  454. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  455. LoadDocumentWithIgnoreSection.
  456. 2003-04-12 Atsushi Enomoto <[email protected]>
  457. * added this file as a new entry.
  458. See ../ChangeLog to find ChangeLog entries before than this day.