ChangeLog 16 KB

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