ChangeLog 34 KB

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