ChangeLog 34 KB

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