ChangeLog 25 KB

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