ChangeLog 18 KB

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