ChangeLog 25 KB

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