ChangeLog 11 KB

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