2
0

ChangeLog 32 KB

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