ChangeLog 11 KB

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