ChangeLog 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. 2004-03-31 Atsushi Enomoto <[email protected]>
  2. * Added nist_dom tests from Mainsoft hackers.
  3. * Added XmlSecureResolverTests.cs.
  4. 2004-03-16 Atsushi Enomoto <[email protected]>
  5. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  6. should be written regardless of document.PreserveWhitespace.)
  7. 2004-03-15 Atsushi Enomoto <[email protected]>
  8. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  9. EndElement.
  10. 2004-03-14 Atsushi Enomoto <[email protected]>
  11. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  12. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  13. 2004-03-04 Atsushi Enomoto <[email protected]>
  14. * XmlDocumentTests.cs : added Implementation().
  15. 2004-02-17 Atsushi Enomoto <[email protected]>
  16. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  17. 2004-02-05 Atsushi Enomoto <[email protected]>
  18. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  19. ReadNodeWhitespace().
  20. * XmlElementTests.cs : Added SetAttributeNodeError().
  21. 2004-02-04 Atsushi Enomoto <[email protected]>
  22. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  23. DescendantsRecursively and added more test lines.
  24. Added ChildNodes().
  25. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  26. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  27. 2004-02-03 Atsushi Enomoto <[email protected]>
  28. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  29. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  30. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  31. 2004-01-28 Atsushi Enomoto <[email protected]>
  32. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  33. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  34. element, removed extraneous test switch for InsertBefore().
  35. * XsdParticleValidationTests.cs,
  36. XsdValidatingReaderTests.cs : These test class names are too
  37. ambiguous so just renamed them. (No bug reports are found on them,
  38. but should be warned in the meantime.)
  39. 2004-01-23 Atsushi Enomoto <[email protected]>
  40. * XmlElementTests.cs : Added SetAttributeXmlns.
  41. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  42. 2004-01-22 Atsushi Enomoto <[email protected]>
  43. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  44. 2004-01-20 Atsushi Enomoto <[email protected]>
  45. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  46. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  47. 2004-01-14 Atsushi Enomoto <[email protected]>
  48. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  49. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  50. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  51. Close or avoid XmlTextReader.
  52. 2004-01-03 Atsushi Enomoto <[email protected]>
  53. * XmlAttributeCollectionTests.cs :
  54. added InsertAfterReplacesInCorrectOrder().
  55. * XmlUrlResolverTests.cs : fixed file path.
  56. * XmlTextReaderTests.cs : fixed file path.
  57. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  58. 2003-12-21 Atsushi Enomoto <[email protected]>
  59. * XmlDocumentTests.cs, XmlElementTests.cs :
  60. Added GetElementsByTagNameNs2().
  61. 2003-12-16 Atsushi Enomoto <[email protected]>
  62. * XmlDeclarationTests.cs : Added InvalidInnerText().
  63. * XmlDocumentTests.cs : CRLF fix (to LF)
  64. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  65. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  66. 2003-11-28 Atsushi Enomoto <[email protected]>
  67. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  68. encoding specification. Added WriteNodeNonEmptyElement().
  69. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  70. and GetEntityWithRelativeFileUri().
  71. * XmlTextWriterTests.cs : Added some namespace related tests.
  72. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  73. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  74. nodes.
  75. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  76. * XmlDeclarationTests.cs : Added InvalidInnerText().
  77. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  78. 2003-10-13 Atsushi Enomoto <[email protected]>
  79. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  80. 2003-10-13 Atsushi Enomoto <[email protected]>
  81. * XmlElementTests.cs : Added more tests on
  82. RemoveDoesNotRemoveDefaultAttributes().
  83. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  84. GetNamespaceOfPrefixNullArg().
  85. * XmlWriterTests.cs : Added WriteNodeNone().
  86. 2003-10-05 Atsushi Enomoto <[email protected]>
  87. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  88. methods.
  89. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  90. and added GetEntityWithNullArgs() (though it is uncommented).
  91. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  92. testing phase.
  93. 2003-09-21 Atsushi Enomoto <[email protected]>
  94. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  95. 2003-09-21 Atsushi Enomoto <[email protected]>
  96. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  97. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  98. which is rather buggy than their XmlNodeReader.
  99. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  100. and trivial messagefix.
  101. 2003-09-21 Atsushi Enomoto <[email protected]>
  102. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  103. 2003-08-24 Atsushi Enomoto <[email protected]>
  104. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  105. EmptyStringHasTextNode().
  106. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  107. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  108. ReadAttributeValue().
  109. * XmlTextReaderTests.cs :
  110. Added NotAllowedCharRef() and ExpandParameterEntity().
  111. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  112. and UndeclaredEntityInStandaloneXml().
  113. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  114. refactory.
  115. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  116. 2003-08-05 Atsushi Enomoto <[email protected]>
  117. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  118. should be ExpandCharEntities.
  119. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  120. ResolveEntity2() and ResolveEntityWithoutDTD().
  121. 2003-07-31 Atsushi Enomoto <[email protected]>
  122. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  123. CreateEntityReferencesWithoutDTD().
  124. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  125. ResolveEntityWithoutDTD().
  126. 2003-07-29 Atsushi Enomoto <[email protected]>
  127. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  128. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  129. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  130. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  131. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  132. entity reference inside text content (and it now fails).
  133. 2003-07-26 Atsushi Enomoto <[email protected]>
  134. * XmlAttributeTests.cs : added IdentityConstraints().
  135. * XmlDocumentTests.cs : added DocumentTypeNodes().
  136. * XmlNodeTests.cs : added InnerText().
  137. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  138. testing reader. Added IndexerAndAttributes().
  139. * XmlValidatingReader.cs : modified TestAttributes() to have
  140. ReadAttributeValue() tests. Added TestIdentityConstraints()
  141. 2003-07-24 Atsushi Enomoto <[email protected]>
  142. * XmlConvertTests.cs,
  143. XmlNodeTests.cs,
  144. XmlTextWriterTests.cs : removed some compilation warning.
  145. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  146. incorrect commit.
  147. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  148. and changed PrepareXmlReader() as returning validating reader.
  149. Added indexer (this[]) property check and ValidationType.None check
  150. to TestAttributeDefaultContribution().
  151. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  152. 2003-07-19 Atsushi Enomoto <[email protected]>
  153. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  154. some code refactory.
  155. 2003-07-12 Atsushi Enomoto <[email protected]>
  156. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  157. TestAttributeDefaultContribution().
  158. 2003-07-12 Atsushi Enomoto <[email protected]>
  159. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  160. ReadState check.
  161. * ChangeLog was incorrectly added about above stuff.
  162. * XmlTextReaderTests.cs : added some reader's state check tests and
  163. ReadAsElementContent and ReadAsAttributeContent.
  164. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  165. 2003-07-06 Atsushi Enomoto <[email protected]>
  166. * added XmlValidatingReaderTests.cs.
  167. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  168. * XmlTextWriterTests.cs: Made use of ExpectedException
  169. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  170. * Made tests which expect an exception use the
  171. ExpectedException Attribute.
  172. 2003-06-20 Atsushi Enomoto <[email protected]>
  173. * added XmlUrlResolverTests.cs.
  174. 2003-06-16 Atsushi Enomoto <[email protected]>
  175. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  176. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  177. in BaseURI test and DTD parameter entity test.
  178. 2003-06-16 Atsushi Enomoto <[email protected]>
  179. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  180. EmptyElementWithAttributes() and was added namespaced attribute tests.
  181. * XmlTextWriterTests.cs : added WriteWhitespace().
  182. 2003-06-10 Zoltan Varga <[email protected]>
  183. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  184. CreateAttribute.
  185. 2003-06-01 Atsushi Enomoto <[email protected]>
  186. * XmlConvertTests.cs : added VerifyNCName().
  187. 2003-05-18 Atsushi Enomoto <[email protected]>
  188. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  189. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  190. added more tests to AttributeWriteAttributeString().
  191. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  192. 2003-05-16 Atsushi Enomoto <[email protected]>
  193. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  194. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  195. and not well-formed xml of OuterXmlWithDefaultXmlns().
  196. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  197. WriteToWithDefaultNamespace().
  198. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  199. ReadInnerXmlWrongInit().
  200. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  201. * XmlReaderCommonTests.cs,
  202. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  203. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  204. to resolve these entity references.
  205. * XmlTextWriterTests.cs : removed English-dependent error message check.
  206. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  207. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  208. XmlDecl() as MS.NET results in.
  209. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  210. * Tests inherits from Assertion and Assertion. prefixes removed
  211. 2003-05-05 Atsushi Enomoto <[email protected]>
  212. * added XmlConvertTests.cs.
  213. 2003-04-29 Atsushi Enomoto <[email protected]>
  214. * XmlAttributeTests.cs : added WriteTo.
  215. * XmlReaderCommonTests.cs,
  216. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  217. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  218. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  219. they requires IsEmptyElement = false, which is always true for
  220. XmlNodeReader).
  221. 2003-04-27 Atsushi Enomoto <[email protected]>
  222. * XmlReaderCommonTests.cs,
  223. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  224. 2003-04-25 Atsushi Enomoto <[email protected]>
  225. * XmlWriterTests.cs : added some WriteNode() related testcases.
  226. 2003-04-13 Atsushi Enomoto <[email protected]>
  227. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  228. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  229. LoadDocumentWithIgnoreSection.
  230. 2003-04-12 Atsushi Enomoto <[email protected]>
  231. * added this file as a new entry.
  232. See ../ChangeLog to find ChangeLog entries before than this day.