ChangeLog 14 KB

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