ChangeLog 33 KB

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