ChangeLog 12 KB

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