ChangeLog 16 KB

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