2
0

ChangeLog 28 KB

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