ChangeLog 27 KB

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