ChangeLog 15 KB

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