ChangeLog 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  1. 2006-02-14 Atsushi Enomoto <[email protected]>
  2. * XmlTextWriterTests.cs : added test WriteRaw("") closes open tag.
  3. 2006-02-14 Atsushi Enomoto <[email protected]>
  4. * XmlTextWriterTests.cs : numbered some tests and added some comments.
  5. 2006-01-25 Atsushi Enomoto <[email protected]>
  6. * XmlConvertTests.cs : added test for bug #77350.
  7. 2006-01-16 Atsushi Enomoto <[email protected]>
  8. * XmlConvertTests.cs : added test for bug #77252.
  9. 2006-01-13 Atsushi Enomoto <[email protected]>
  10. * XsdValidatingReaderTests.cs : test from bug #77241.
  11. 2006-01-13 Atsushi Enomoto <[email protected]>
  12. * XmlTextWriterTests.cs : added some tests for XMLdecl state check.
  13. 2006-01-12 Atsushi Enomoto <[email protected]>
  14. * XmlTextWriterTests.cs : Split AutoCreatePrefixes() and marked as
  15. Ignore rather than NotWorking. Also it is not for bug #77086 and
  16. #77077 (they were fixed). See bug #77088.
  17. 2006-01-12 Atsushi Enomoto <[email protected]>
  18. * XmlTextWriterTests.cs : re-enabled WriteNmToken_InvalidChars().
  19. 2006-01-12 Atsushi Enomoto <[email protected]>
  20. * XmlTextWriterTests.cs : re-enabled bug #77094 related tests.
  21. 2006-01-06 Atsushi Enomoto <[email protected]>
  22. * XmlWriterTests.cs : added tests for WriteNode(XPathNavigator, bool)
  23. as well as XPathNavigator.WriteSubtree(XmlWriter).
  24. 2006-01-06 Atsushi Enomoto <[email protected]>
  25. * XsdValidatingReaderTests.cs : test for ReadTypeValue() that it
  26. does not ignore whitespace nodes, and it does not normalize string
  27. incorrectly.
  28. 2006-01-06 Atsushi Enomoto <[email protected]>
  29. * XsdValidatingReaderTests.cs : test for ReadTypeValue() with simple
  30. type restriction.
  31. 2006-01-05 Gert Driesen <[email protected]>
  32. * XmlElementTests.cs: Improved tests for setting prefix to null
  33. or zero-length string. On 2.0 profile, setting prefix to null should
  34. not result in ArgumentNullException.
  35. * XmlTextWriterTests.cs: Enabled WriteNmToken tests and
  36. WriteWhitespace tests for null or zero-length value.
  37. 2006-01-05 Atsushi Enomoto <[email protected]>
  38. * XmlTextWriterTests.cs : removed silly part from
  39. WriteStartElement_XmlPrefix (). We are not reproducing MS bugs.
  40. (kept remaining part of this test; see if it makes sense after
  41. bug #77094 got fixed).
  42. 2005-12-29 Gert Driesen <[email protected]>
  43. * XmlTextWriterTests.cs: Do not yet enable tests for WriteWhitespace
  44. with null or zero-length value (await approval for XmlTextWriter
  45. change from Atsushi).
  46. 2005-12-27 Gert Driesen <[email protected]>
  47. * XmlTextWriterTests.cs: Do not yet enable tests for WriteNmToken
  48. with null or zero-length value (await approval for XmlTextWriter
  49. change from Atsushi).
  50. 2005-12-27 Gert Driesen <[email protected]>
  51. * XmlTextWriterTests.cs: Added tests for WriteWhitespace and
  52. WriteNmToken.
  53. 2005-12-27 Gert Driesen <[email protected]>
  54. * NameTableTests.cs: Added additional tests for Add and Get methods.
  55. 2005-12-27 Gert Driesen <[email protected]>
  56. * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
  57. 2005-12-26 Atsushi Enomoto <[email protected]>
  58. * XmlTextWriterTests.cs : enabled
  59. WriteStartElement_Prefix_EmptyNamespace() and
  60. NamespacesPrefixWithEmptyAndNullNamespaceEmpty().
  61. 2005-12-26 Atsushi Enomoto <[email protected]>
  62. * XmlElementTests.cs : Patch by Vorobiev Maksim.
  63. - setting null to Prefix should raise ArgumentNullException.
  64. - setting String.Empty to Prefix should be allowed.
  65. 2005-12-26 Atsushi Enomoto <[email protected]>
  66. * XsdValidatingReaderTests.cs : test for multi URLs in
  67. schemaLocation. Test by Vorobiev Maskim.
  68. 2005-12-26 Gert Driesen <[email protected]>
  69. * XmlElementTests.cs: Fixed line endings.
  70. 2005-12-26 Gert Driesen <[email protected]>
  71. * XmlTextWriterTests.cs: Renamed tests to avoid ambiguity, and
  72. renumbered some tests. Added tests for WriteStartElement and
  73. WriteElementString for zero-length and null local names.
  74. Added tests bugs #77093, #77094 and #77095.
  75. 2005-12-26 Gert Driesen <[email protected]>
  76. * XmlNamespaceManagerTests.cs: Added tests for xml prefix.
  77. 2005-12-23 Atsushi Enomoto <[email protected]>
  78. * XmlTextWriterTests.cs : XmlSpace_Valid() is working now.
  79. 2005-12-23 Atsushi Enomoto <[email protected]>
  80. * XmlTextWriterTests.cs : XmlNs_Valid2() is working now.
  81. 2005-12-23 Gert Driesen <[email protected]>
  82. * XmlTextWriterTests.cs: Fixed line endings. Enabled XmlPrefix_ValidMS
  83. test. Added bug numbers to test cases.
  84. 2005-12-23 Gert Driesen <[email protected]>
  85. * XmlTextWriterTests.cs: Improved coverage of xml prefix tests.
  86. 2005-12-16 Gert Driesen <[email protected]>
  87. * XmlTextWriterTests.cs: Fixed some tests that caught exception to
  88. become useful. Added few tests that fail on Mono.
  89. 2005-12-16 Gert Driesen <[email protected]>
  90. * XmlTextWriterTests.cs: No longer derive from deprecated Assertion
  91. class. Added WriteDocType tests.
  92. * XmlWriterTests.cs: No longer derive from deprecated Assertion class.
  93. 2005-12-15 Konstantin Triger <[email protected]>
  94. * XmlTextWriterTests.cs: added WriteCDataNull test.
  95. 2005-12-14 Atsushi Enomoto <[email protected]>
  96. * XmlDocumentTests.cs : (CreateNodeNodeTypeName) the previous fix was
  97. wrong; ArgumentException is the expected exception (it anyways won't
  98. work under MS.NET 2.0).
  99. * XmlNodeTests.cs : added labels to assertions. another NotDotNet case.
  100. * XmlAttributeTests.cs : ditto.
  101. 2005-12-14 Atsushi Enomoto <[email protected]>
  102. * XmlDocumentTests.cs, XmlAttributeCollectionTests.cs
  103. XmlElementTests.cs, XmlCharacterDataTests.cs :
  104. Marked NotDotNet for some tests broken under 2.0 (MS bugs).
  105. Marked Ignore for some tests which originally does not make sense.
  106. Changed types in ExpectedException for some tests under 2.0.
  107. 2005-12-12 Atsushi Enomoto <[email protected]>
  108. * XmlAssert.cs : new file.
  109. 2005-12-12 Atsushi Enomoto <[email protected]>
  110. * XmlReaderCommonTests.cs : enabled MoveToNextSibling() tests.
  111. 2005-12-12 Atsushi Enomoto <[email protected]>
  112. * XmlReaderCommonTests.cs : added several tests for 2.0 methods.
  113. 2005-12-09 Atsushi Enomoto <[email protected]>
  114. * XmlTextReaderTests.cs : added test for Encoding property.
  115. 2005-12-09 Atsushi Enomoto <[email protected]>
  116. * XmlReaderCommonTests.cs : added tests for ReadToDescendant() and
  117. ReadToFollowing().
  118. 2005-12-09 Atsushi Enomoto <[email protected]>
  119. * XmlReaderSettingsTests.cs : added some ConformanceLevel tests.
  120. Added CreateClonesSettings() to make sure XmlReader.Create() clones
  121. XmlReaderSettings.
  122. 2005-12-08 Atsushi Enomoto <[email protected]>
  123. * XmlReaderSettingsTests.cs : (DefaultValue)
  124. Added assertion label everywhere.
  125. * XmlWriterTests.cs : WriteNodeError is broken under MS.NET 2.0 (it
  126. should cause an error).
  127. 2005-12-08 Atsushi Enomoto <[email protected]>
  128. * XmlReaderSettingsTests.cs : SetSchemas() should not cause an error.
  129. Added SetSchemasNull() as well.
  130. * XmlUrlResolverTests.cs : (ResolveUriWithNullArgs)
  131. expect ArgumentNullException instead of ArgumentException.
  132. This is a fix in .NET 2.0.
  133. 2005-12-08 Atsushi Enomoto <[email protected]>
  134. * XsdParticleValidationTests.cs : ValidateRootElementOnlyInvalid()
  135. does not throw validation exception under MS 2.0, this NotDotNet.
  136. 2005-12-08 Atsushi Enomoto <[email protected]>
  137. * XmlReaderCommonTests.cs : use ProhibitDtd=false in CreateSimple()
  138. and added CreateSimpleProhibitDtd().
  139. 2005-11-09 Atsushi Enomoto <[email protected]>
  140. * XmlWriterSettingsTests.cs : NormalizeNewLines does not exist anymore
  141. 2005-11-09 Atsushi Enomoto <[email protected]>
  142. * XmlConvertTests.cs : tests for ToUInt16/32/64() and VerifyTOKEN().
  143. 2005-11-09 Atsushi Enomoto <[email protected]>
  144. * XmlConvertTests.cs : some tests for ToInt64(), ToSByte(),
  145. 2005-11-09 Atsushi Enomoto <[email protected]>
  146. * XmlConvertTests.cs : some tests for ToInt16(), ToInt32(),
  147. VerifyName() and VerifyNCName().
  148. 2005-11-07 Atsushi Enomoto <[email protected]>
  149. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags is updated.
  150. 2005-10-23 Atsushi Enomoto <[email protected]>
  151. * XmlNamespaceManagerTests.cs :
  152. well, hence GetNamespacesInScope() is NotDotNet.
  153. 2005-10-23 Atsushi Enomoto <[email protected]>
  154. * XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
  155. labels. Fixed counts; they count default namespaces. MS seems to
  156. have a bug on declaration removal (xmlns='') on .Local.
  157. * XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
  158. allowed at all, so disabled tests that depends on such references.
  159. 2005-10-23 Atsushi Enomoto <[email protected]>
  160. * XmlTextWriterTests.cs : split some tests that try to write nodes
  161. at error state (.NET 2.0 correctly rejects them).
  162. 2005-10-23 Atsushi Enomoto <[email protected]>
  163. * XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
  164. XmlReaderCommonTests.cs : added and fixed tests to make sure that
  165. LookupNamespace("") returns null for default namespace, and checks
  166. that empty namespace URI is not allowed for non-empty prefix.
  167. 2005-10-04 Atsushi Enomoto <[email protected]>
  168. * XmlConvertTests.cs : added test for bug #76328.
  169. 2005-10-01 Atsushi Enomoto <[email protected]>
  170. * XmlWriterSettingsTests.cs : test for NormalizeNewLines.
  171. 2005-10-01 Atsushi Enomoto <[email protected]>
  172. * XmlAttributeTests.cs : test for bug #76311.
  173. 2005-10-01 Atsushi Enomoto <[email protected]>
  174. * XmlReaderCommonTests.cs : added simple Create() test.
  175. 2005-09-28 Atsushi Enomoto <[email protected]>
  176. * XmlNodeReaderTests.cs : added test for bug #76260.
  177. 2005-09-27 Atsushi Enomoto <[email protected]>
  178. * XmlTextReaderTests.cs : added test for bug #76247.
  179. 2005-09-26 Atsushi Enomoto <[email protected]>
  180. * XmlValidatingReaderTests.cs : added test for bug #76234.
  181. 2005-09-25 Atsushi Enomoto <[email protected]>
  182. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
  183. 2005-09-21 Atsushi Enomoto <[email protected]>
  184. * XmlWriterSettingsTests.cs : removed NormalizeNewLines.
  185. 2005-09-21 Atsushi Enomoto <[email protected]>
  186. * XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
  187. * NameTableTests.cs : numbered testcases. fixed argument order.
  188. 2005-09-14 Atsushi Enomoto <[email protected]>
  189. * XmlTextReaderTests.cs : added #76102 testcase.
  190. 2005-09-14 Atsushi Enomoto <[email protected]>
  191. * XmlTextWriterTests.cs : added #76095 testcase.
  192. 2005-08-31 Sebastien Pouliot <[email protected]>
  193. * XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
  194. * XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
  195. * XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
  196. 2005-08-04 Atsushi Enomoto <[email protected]>
  197. * XmlAttributeTests.cs : Test if set_Value() works in such cases that
  198. there was only one child in attribute and it was an entity reference.
  199. 2005-07-28 Atsushi Enomoto <[email protected]>
  200. * XsdValidatingReaderTests.cs : added test case for duplicating
  201. assignment of both Schemas.Add() and xsi:schemaLocation where
  202. schemaLocation could not be resolved.
  203. 2005-07-14 Atsushi Enomoto <[email protected]>
  204. * XmlTextWriterTests.cs : added bug #75546 testcase.
  205. 2005-06-29 Atsushi Enomoto <[email protected]>
  206. * XmlConvertTests.cs : added timespan milliseconds testcase.
  207. 2005-06-27 Atsushi Enomoto <[email protected]>
  208. * XmlTextReaderTests.cs : added a testcase for not-wf entity
  209. declaration which is actually not used in the instance.
  210. 2005-06-23 Atsushi Enomoto <[email protected]>
  211. * XsdParticleValidationTests.cs : XmlSchemaException ->
  212. XmlSchemaValidationException under 2.0 profile.
  213. 2005-06-17 Atsushi Enomoto <[email protected]>
  214. * XmlValidatingReaderTests.cs : added attribute namespace check in
  215. DefaultXmlnsAttributeLookup() as well.
  216. 2005-06-17 Atsushi Enomoto <[email protected]>
  217. * XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
  218. 2005-05-31 Atsushi Enomoto <[email protected]>
  219. * XmlValidatingReaderTests.cs : let's test external DTD as well.
  220. 2005-05-31 Atsushi Enomoto <[email protected]>
  221. * XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
  222. is imported from sys.security.
  223. 2005-05-25 Andrew Skiba <[email protected]>
  224. * W3C : directory added
  225. 2005-05-10 Atsushi Enomoto <[email protected]>
  226. * XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
  227. which was regarded as a bug while it was by design.
  228. 2005-05-05 Atsushi Enomoto <[email protected]>
  229. * XmlNamespaceManagerTests.cs : removed more atomizedName tests.
  230. 2005-05-05 Atsushi Enomoto <[email protected]>
  231. * XmlNamespaceManagerTests.cs : removed atomizedName related tests.
  232. 2005-03-25 Atsushi Enomoto <[email protected]>
  233. * XmlTextWriterTests.cs : added more test case for xml:space.
  234. 2005-03-24 Atsushi Enomoto <[email protected]>
  235. * XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
  236. 2005-03-15 Atsushi Enomoto <[email protected]>
  237. * XmlValidatingReaderTests.cs : Added test for sequential text nodes
  238. which affects on ExpandEntities.
  239. 2005-03-09 Atsushi Enomoto <[email protected]>
  240. * XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
  241. 2005-03-07 Atsushi Enomoto <[email protected]>
  242. * XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
  243. Test case by Konstantin Triger.
  244. 2005-03-07 Atsushi Enomoto <[email protected]>
  245. * XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
  246. 2005-03-03 Atsushi Enomoto <[email protected]>
  247. * XmlTextWriterTests.cs : added testcase for duplicating namespace
  248. mapping processing (should create another prefix, not exception).
  249. 2005-03-02 Atsushi Enomoto <[email protected]>
  250. * XmlTextWriterTests.cs : Added test for LookupPrefix() for
  251. overriden prefix.
  252. 2005-02-25 Atsushi Enomoto <[email protected]>
  253. * XmlNodeTests.cs : added Clone() of readonly node returns a node
  254. that is not readonly.
  255. 2005-02-25 Atsushi Enomoto <[email protected]>
  256. * XmlAttributeTests.cs : added nonNCName Prefix case.
  257. 2005-02-24 Atsushi Enomoto <[email protected]>
  258. * XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
  259. 2005-02-16 Atsushi Enomoto <[email protected]>
  260. * XmlConvertTests.cs : added some null/empty string cases for
  261. EncodeName()/EncodeLocalName()/EncodeNmToken().
  262. 2005-02-15 Atsushi Enomoto <[email protected]>
  263. * XmlElementTests.cs : assertion numbering on
  264. RemoveDoesNotRemoveDefaultAttributes().
  265. 2005-01-26 Nick Drochak <[email protected]>
  266. * XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
  267. test method and ignore it on .NET.
  268. 2005-01-17 Atsushi Enomoto <[email protected]>
  269. * XmlReaderSettingsTests.cs : added some .ctor() tests.
  270. 2005-01-13 Atsushi Enomoto <[email protected]>
  271. * XmlReaderCommonTests.cs : added labels for tests.
  272. Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
  273. no consistent reference implementation to follow.
  274. 2005-01-13 Atsushi Enomoto <[email protected]>
  275. * XmlValidatingReaderTests.cs,
  276. XmlReaderCommonTests.cs,
  277. XmlTextWriterTests.cs,
  278. XmlUrlResolverTests.cs :
  279. Marked as NotDotNet for those tests that fails under MS.NET.
  280. Commented out some XmlTextWriter implementation-dependent assertions.
  281. Fixed ResolveUriWithNullArgs () expected return type.
  282. 2005-01-11 Atsushi Enomoto <[email protected]>
  283. * XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
  284. 2004-01-11 Atsushi Enomoto <[email protected]>
  285. * XmlReaderCommonTests.cs :
  286. Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
  287. 2004-01-11 Atsushi Enomoto <[email protected]>
  288. * XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
  289. that is buggy on attribute value's Prefix and NamespaceURI.
  290. 2005-01-10 Nick Drochak <[email protected]>
  291. * XmlWriterTests.cs: Fix build warnings.
  292. * XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
  293. has different default attributes it seems.
  294. 2004-12-15 Raja R Harinath <[email protected]>
  295. * XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
  296. XsdValidate references to use ValidationType.
  297. 2004-12-08 Atsushi Enomoto <[email protected]>
  298. * XmlReaderSettingsTests.cs : updated some boolean flags to
  299. XmlSchemaValidationFlags.
  300. 2004-11-22 Atsushi Enomoto <[email protected]>
  301. * XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
  302. 2004-11-14 Atsushi Enomoto <[email protected]>
  303. * XmlWriterTests.cs : Added test for WriteAttributes().
  304. 2004-11-08 Atsushi Enomoto <[email protected]>
  305. * XmlNodeReaderTests.cs : numbered some of asserts.
  306. 2004-11-08 Atsushi Enomoto <[email protected]>
  307. * XmlTextReaderTests.cs : added tests for 2.0 entity handling.
  308. * XmlValidatingReaderTests.cs : modified tests for entity handling
  309. that are changed in 2.0.
  310. 2004-10-29 Atsushi Enomoto <[email protected]>
  311. * XmlReaderCommonTests.cs : ReadAsObject() is removed.
  312. * XmlTextWriterTests.cs : added CloseTwice().
  313. * XmlNodeTests.cs : added labels.
  314. 2004-09-08 Atsushi Enomoto <[email protected]>
  315. * XmlWriterSettingsTests.cs : added.
  316. 2004-09-07 Atsushi Enomoto <[email protected]>
  317. * XmlReaderCommonTests.cs : Added tests for ReadAsObject().
  318. 2004-09-07 Atsushi Enomoto <[email protected]>
  319. * XmlNamespaceManagerTests.cs : Added test for duplicate addition,
  320. atomization, complex RemoveNamespace() and GetNamespacesInScope().
  321. 2004-09-07 Atsushi Enomoto <[email protected]>
  322. * XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
  323. * XmlTextReaderTests.cs : added normalization and Setting sests.
  324. 2004-09-06 Atsushi Enomoto <[email protected]>
  325. * XmlElementTests.cs : added another set_InnerXml test.
  326. * XmlNodeTests.cs : added BaseURI test.
  327. * XmlTextReaderTests.cs : added tests for Normalization, EOF,
  328. LineNumber, LinePosition (all reported ones).
  329. * XsdValidatingReaderTests.cs : more descriptions.
  330. 2004-09-06 Atsushi Enomoto <[email protected]>
  331. * XmlTextReaderTests.cs : added ProhibitDtd().
  332. * XmlWriterTests.cs : added WriteNodeError().
  333. 2004-06-21 Atsushi Enomoto <[email protected]>
  334. * XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
  335. It requires CAS.
  336. 2004-06-18 Atsushi Enomoto <[email protected]>
  337. * XmlSecureResolverTests.cs : [TestFixture] was missing.
  338. 2004-06-14 Atsushi Enomoto <[email protected]>
  339. * XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
  340. 2004-06-14 Atsushi Enomoto <[email protected]>
  341. * XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
  342. URI file:///usr/local/src as correct file path. MS.NET is not aware
  343. of such format and parses as "host = usr, path = /local/src".
  344. 2004-06-06 Atsushi Enomoto <[email protected]>
  345. * XmlTextWriterTests.cs : Added indentation testcase (it might now
  346. work due to CompareInfo.IndexOf() bug).
  347. 2004-06-06 Atsushi Enomoto <[email protected]>
  348. * XmlTextReaderTests.cs : added some namespace check tests.
  349. 2004-05-27 Atsushi Enomoto <[email protected]>
  350. * XmlTextReaderTests.cs : added test for bug #59142.
  351. * XmlTextWriterTests.cs : added test for bug #59154.
  352. * XmlDocumentTests.cs : added test for bug #59155.
  353. 2004-05-24 Atsushi Enomoto <[email protected]>
  354. * XmlNodeTests.cs : added Normalize2().
  355. 2004-05-13 Atsushi Enomoto <[email protected]>
  356. * XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
  357. kind of thing that should be supported.
  358. * XmlValidatingReaderTests.cs : commented a bit.
  359. 2004-04-24 Atsushi Enomoto <[email protected]>
  360. * XmlConvertTests.cs : Commented out locale-dependent tests.
  361. * XmlDocumentTests.cs : Uncommented now-testable lines.
  362. Commented out that should not be allowed, such as non-XML-name node.
  363. 2004-04-24 Atsushi Enomoto <[email protected]>
  364. * XmlDeclarationTests.cs : More InnerText tests.
  365. 2004-04-20 Atsushi Enomoto <[email protected]>
  366. * XmlCharacterDataTests.cs : Added more tests for Substring().
  367. * XmlConvertTests.cs : Commented out locale-dependent tests.
  368. * XmlDocumentTests.cs : Added LoadEntityReference().
  369. 2004-03-31 Atsushi Enomoto <[email protected]>
  370. * Added nist_dom tests from Mainsoft hackers.
  371. * Added XmlSecureResolverTests.cs.
  372. 2004-03-16 Atsushi Enomoto <[email protected]>
  373. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  374. should be written regardless of document.PreserveWhitespace.)
  375. 2004-03-15 Atsushi Enomoto <[email protected]>
  376. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  377. EndElement.
  378. 2004-03-14 Atsushi Enomoto <[email protected]>
  379. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  380. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  381. 2004-03-04 Atsushi Enomoto <[email protected]>
  382. * XmlDocumentTests.cs : added Implementation().
  383. 2004-02-17 Atsushi Enomoto <[email protected]>
  384. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  385. 2004-02-05 Atsushi Enomoto <[email protected]>
  386. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  387. ReadNodeWhitespace().
  388. * XmlElementTests.cs : Added SetAttributeNodeError().
  389. 2004-02-04 Atsushi Enomoto <[email protected]>
  390. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  391. DescendantsRecursively and added more test lines.
  392. Added ChildNodes().
  393. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  394. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  395. 2004-02-03 Atsushi Enomoto <[email protected]>
  396. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  397. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  398. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  399. 2004-01-28 Atsushi Enomoto <[email protected]>
  400. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  401. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  402. element, removed extraneous test switch for InsertBefore().
  403. * XsdParticleValidationTests.cs,
  404. XsdValidatingReaderTests.cs : These test class names are too
  405. ambiguous so just renamed them. (No bug reports are found on them,
  406. but should be warned in the meantime.)
  407. 2004-01-23 Atsushi Enomoto <[email protected]>
  408. * XmlElementTests.cs : Added SetAttributeXmlns.
  409. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  410. 2004-01-22 Atsushi Enomoto <[email protected]>
  411. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  412. 2004-01-20 Atsushi Enomoto <[email protected]>
  413. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  414. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  415. 2004-01-14 Atsushi Enomoto <[email protected]>
  416. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  417. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  418. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  419. Close or avoid XmlTextReader.
  420. 2004-01-03 Atsushi Enomoto <[email protected]>
  421. * XmlAttributeCollectionTests.cs :
  422. added InsertAfterReplacesInCorrectOrder().
  423. * XmlUrlResolverTests.cs : fixed file path.
  424. * XmlTextReaderTests.cs : fixed file path.
  425. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  426. 2003-12-21 Atsushi Enomoto <[email protected]>
  427. * XmlDocumentTests.cs, XmlElementTests.cs :
  428. Added GetElementsByTagNameNs2().
  429. 2003-12-16 Atsushi Enomoto <[email protected]>
  430. * XmlDeclarationTests.cs : Added InvalidInnerText().
  431. * XmlDocumentTests.cs : CRLF fix (to LF)
  432. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  433. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  434. 2003-11-28 Atsushi Enomoto <[email protected]>
  435. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  436. encoding specification. Added WriteNodeNonEmptyElement().
  437. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  438. and GetEntityWithRelativeFileUri().
  439. * XmlTextWriterTests.cs : Added some namespace related tests.
  440. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  441. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  442. nodes.
  443. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  444. * XmlDeclarationTests.cs : Added InvalidInnerText().
  445. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  446. 2003-10-13 Atsushi Enomoto <[email protected]>
  447. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  448. 2003-10-13 Atsushi Enomoto <[email protected]>
  449. * XmlElementTests.cs : Added more tests on
  450. RemoveDoesNotRemoveDefaultAttributes().
  451. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  452. GetNamespaceOfPrefixNullArg().
  453. * XmlWriterTests.cs : Added WriteNodeNone().
  454. 2003-10-05 Atsushi Enomoto <[email protected]>
  455. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  456. methods.
  457. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  458. and added GetEntityWithNullArgs() (though it is uncommented).
  459. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  460. testing phase.
  461. 2003-09-21 Atsushi Enomoto <[email protected]>
  462. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  463. 2003-09-21 Atsushi Enomoto <[email protected]>
  464. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  465. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  466. which is rather buggy than their XmlNodeReader.
  467. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  468. and trivial messagefix.
  469. 2003-09-21 Atsushi Enomoto <[email protected]>
  470. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  471. 2003-08-24 Atsushi Enomoto <[email protected]>
  472. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  473. EmptyStringHasTextNode().
  474. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  475. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  476. ReadAttributeValue().
  477. * XmlTextReaderTests.cs :
  478. Added NotAllowedCharRef() and ExpandParameterEntity().
  479. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  480. and UndeclaredEntityInStandaloneXml().
  481. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  482. refactory.
  483. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  484. 2003-08-05 Atsushi Enomoto <[email protected]>
  485. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  486. should be ExpandCharEntities.
  487. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  488. ResolveEntity2() and ResolveEntityWithoutDTD().
  489. 2003-07-31 Atsushi Enomoto <[email protected]>
  490. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  491. CreateEntityReferencesWithoutDTD().
  492. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  493. ResolveEntityWithoutDTD().
  494. 2003-07-29 Atsushi Enomoto <[email protected]>
  495. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  496. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  497. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  498. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  499. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  500. entity reference inside text content (and it now fails).
  501. 2003-07-26 Atsushi Enomoto <[email protected]>
  502. * XmlAttributeTests.cs : added IdentityConstraints().
  503. * XmlDocumentTests.cs : added DocumentTypeNodes().
  504. * XmlNodeTests.cs : added InnerText().
  505. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  506. testing reader. Added IndexerAndAttributes().
  507. * XmlValidatingReader.cs : modified TestAttributes() to have
  508. ReadAttributeValue() tests. Added TestIdentityConstraints()
  509. 2003-07-24 Atsushi Enomoto <[email protected]>
  510. * XmlConvertTests.cs,
  511. XmlNodeTests.cs,
  512. XmlTextWriterTests.cs : removed some compilation warning.
  513. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  514. incorrect commit.
  515. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  516. and changed PrepareXmlReader() as returning validating reader.
  517. Added indexer (this[]) property check and ValidationType.None check
  518. to TestAttributeDefaultContribution().
  519. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  520. 2003-07-19 Atsushi Enomoto <[email protected]>
  521. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  522. some code refactory.
  523. 2003-07-12 Atsushi Enomoto <[email protected]>
  524. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  525. TestAttributeDefaultContribution().
  526. 2003-07-12 Atsushi Enomoto <[email protected]>
  527. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  528. ReadState check.
  529. * ChangeLog was incorrectly added about above stuff.
  530. * XmlTextReaderTests.cs : added some reader's state check tests and
  531. ReadAsElementContent and ReadAsAttributeContent.
  532. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  533. 2003-07-06 Atsushi Enomoto <[email protected]>
  534. * added XmlValidatingReaderTests.cs.
  535. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  536. * XmlTextWriterTests.cs: Made use of ExpectedException
  537. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  538. * Made tests which expect an exception use the
  539. ExpectedException Attribute.
  540. 2003-06-20 Atsushi Enomoto <[email protected]>
  541. * added XmlUrlResolverTests.cs.
  542. 2003-06-16 Atsushi Enomoto <[email protected]>
  543. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  544. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  545. in BaseURI test and DTD parameter entity test.
  546. 2003-06-16 Atsushi Enomoto <[email protected]>
  547. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  548. EmptyElementWithAttributes() and was added namespaced attribute tests.
  549. * XmlTextWriterTests.cs : added WriteWhitespace().
  550. 2003-06-10 Zoltan Varga <[email protected]>
  551. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  552. CreateAttribute.
  553. 2003-06-01 Atsushi Enomoto <[email protected]>
  554. * XmlConvertTests.cs : added VerifyNCName().
  555. 2003-05-18 Atsushi Enomoto <[email protected]>
  556. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  557. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  558. added more tests to AttributeWriteAttributeString().
  559. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  560. 2003-05-16 Atsushi Enomoto <[email protected]>
  561. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  562. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  563. and not well-formed xml of OuterXmlWithDefaultXmlns().
  564. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  565. WriteToWithDefaultNamespace().
  566. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  567. ReadInnerXmlWrongInit().
  568. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  569. * XmlReaderCommonTests.cs,
  570. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  571. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  572. to resolve these entity references.
  573. * XmlTextWriterTests.cs : removed English-dependent error message check.
  574. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  575. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  576. XmlDecl() as MS.NET results in.
  577. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  578. * Tests inherits from Assertion and Assertion. prefixes removed
  579. 2003-05-05 Atsushi Enomoto <[email protected]>
  580. * added XmlConvertTests.cs.
  581. 2003-04-29 Atsushi Enomoto <[email protected]>
  582. * XmlAttributeTests.cs : added WriteTo.
  583. * XmlReaderCommonTests.cs,
  584. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  585. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  586. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  587. they requires IsEmptyElement = false, which is always true for
  588. XmlNodeReader).
  589. 2003-04-27 Atsushi Enomoto <[email protected]>
  590. * XmlReaderCommonTests.cs,
  591. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  592. 2003-04-25 Atsushi Enomoto <[email protected]>
  593. * XmlWriterTests.cs : added some WriteNode() related testcases.
  594. 2003-04-13 Atsushi Enomoto <[email protected]>
  595. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  596. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  597. LoadDocumentWithIgnoreSection.
  598. 2003-04-12 Atsushi Enomoto <[email protected]>
  599. * added this file as a new entry.
  600. See ../ChangeLog to find ChangeLog entries before than this day.