ChangeLog 14 KB

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