ChangeLog 14 KB

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