ChangeLog 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498
  1. 2010-01-25 Atsushi Enomoto <[email protected]>
  2. * XmlConvertTest.cs : test convert TimeSpan.MinValue to string.
  3. Patch by Tiaan Geldenhuys.
  4. 2010-01-15 Atsushi Enomoto <[email protected]>
  5. * XmlConvertTests.cs : add test for ToString(TimeSpan) with small
  6. ticks.
  7. 2010-01-15 Atsushi Enomoto <[email protected]>
  8. * XmlConvertTests.cs : add test for ToTimeSpan() with spaces.
  9. 2010-01-15 Atsushi Enomoto <[email protected]>
  10. * XmlConvertTests.cs : add test for ToDateTimeOffset() with date
  11. string with spaces.
  12. 2010-01-12 Atsushi Enomoto <[email protected]>
  13. * XmlConvertTests.cs : added commented-out tests for the remaining
  14. parse tests by Tiaan Geldenhuys for XLinq, with the reason why.
  15. 2010-01-12 Atsushi Enomoto <[email protected]>
  16. * XmlConvertTests.cs : float parse should do the same. Fix NaN test.
  17. 2010-01-12 Atsushi Enomoto <[email protected]>
  18. * XmlConvertTests.cs : another double parse test for string with
  19. spaces, for string constants such as NaN.
  20. 2010-01-12 Atsushi Enomoto <[email protected]>
  21. * XmlConvertTests.cs : add double parse test for string with spaces.
  22. 2010-01-12 Atsushi Enomoto <[email protected]>
  23. * XmlWriterTests.cs : added a corner case test for empty string handling
  24. difference between XmlTextWriter and XmlWriter.Create().
  25. 2009-11-17 Atsushi Enomoto <[email protected]>
  26. * XmlConvertTests.cs : add test for DateTimeOffset roundtrip.
  27. 2009-11-13 Andreia Gaita <[email protected]>
  28. * XmlTextReaderTests.cs: Added ParsingWithNSMgrSubclass test to check
  29. r146175 fix (chained namespace lookups using XmlNamespaceManager
  30. subclasses)
  31. 2009-11-11 Atsushi Enomoto <[email protected]>
  32. * XmlNodeReaderTests.cs : added test for bug #550379.
  33. 2009-09-15 Atsushi Enomoto <[email protected]>
  34. * XmlAttributeCollectionTests.cs : add test for bug #508296 by
  35. Tom Hindle.
  36. 2009-08-21 Atsushi Enomoto <[email protected]>
  37. * XmlTextReaderTests.cs : added test for null nametable in parser
  38. context.
  39. 2009-07-22 Atsushi Enomoto <[email protected]>
  40. * XmlNamespaceManagerTests.cs : add test for bug #514015.
  41. 2009-07-22 Atsushi Enomoto <[email protected]>
  42. * XmlTextReaderTests.cs : added test for bug #523971 by Hib Eris.
  43. 2009-06-26 Robert Jordan <[email protected]>
  44. * *.cs: Upgrade to new NUnit style.
  45. 2009-05-22 Gert Driesen <[email protected]>
  46. * XmlResolverTest.cs: Fix ResolveUri test on Windows when current
  47. directory is not on C drive.
  48. 2009-05-12 Jonas Larsson <[email protected]>
  49. * XmlValidatingReaderTests.cs : test for bug #502168
  50. 2009-05-11 Atsushi Enomoto <[email protected]>
  51. * XmlValidatingReaderTests.cs : test for bug #501814 by Jonas
  52. Larsson.
  53. 2009-05-11 Atsushi Enomoto <[email protected]>
  54. * XsdValidatingReaderTest.cs : test for bug #501763 by Jonas Larsson.
  55. 2009-04-28 Sebastien Pouliot <[email protected]>
  56. * XmlReaderCommonTests.cs: Add test case for an empty string url
  57. 2009-04-28 Sebastien Pouliot <[email protected]>
  58. * XmlResolverTest.cs: New. Unit tests for base features.
  59. 2009-04-22 Atsushi Enomoto <[email protected]>
  60. * XmlAttributeCollectionTests.cs : added test for bug #496022.
  61. 2009-03-16 Atsushi Enomoto <[email protected]>
  62. * XmlParserContextTests.cs : added test for bug #484519.
  63. 2009-03-16 Atsushi Enomoto <[email protected]>
  64. * XmlReaderCommonTests.cs : added test for bug #480066.
  65. 2009-03-16 Atsushi Enomoto <[email protected]>
  66. * XmlWriterTests.cs : only bogus XmlTextWriter ignores null namespace
  67. for namespae conflict check.
  68. 2009-02-10 Atsushi Enomoto <[email protected]>
  69. * XmlTextWriterTests.cs : added test for bug #474091.
  70. 2009-02-09 Atsushi Enomoto <[email protected]>
  71. * XmlElementTests.cs : added test for bug #464394.
  72. 2009-02-06 Atsushi Enomoto <[email protected]>
  73. * XmlTextWriterTests.cs : added test for bug #472634.
  74. 2009-01-20 Atsushi Enomoto <[email protected]>
  75. * XmlReaderCommonTests.cs : added test for bug #464229.
  76. 2009-01-08 Atsushi Enomoto <[email protected]>
  77. * XmlReaderCommonTests.cs : added test for ReadContentAsString()
  78. and ReadElementContentAsString() against certain node types.
  79. 2008-12-09 Atsushi Enomoto <[email protected]>
  80. * XmlValidatingReaderTests.cs : added test for validating mixed
  81. element under xs:any.
  82. 2008-09-17 Atsushi Enomoto <[email protected]>
  83. * XmlReaderCommonTests.cs : another Subtree+EmptyElement case.
  84. 2008-09-17 Atsushi Enomoto <[email protected]>
  85. * XmlReaderCommonTests.cs :
  86. added test for NodeType for empty element.
  87. 2008-09-17 Atsushi Enomoto <[email protected]>
  88. * XmlReaderCommonTests.cs :
  89. added test for ReadSubtree() on non-element.
  90. 2008-07-28 Atsushi Enomoto <[email protected]>
  91. * XmlTextReaderTests.cs : added test for bug #412657.
  92. 2008-06-11 Atsushi Enomoto <[email protected]>
  93. * XmlConvertTests.cs : added test for bug #397934
  94. 2008-06-11 Atsushi Enomoto <[email protected]>
  95. * XmlConvertTests.cs : no need for TARGET_JVM. Fix wrong comparison.
  96. 2008-06-09 Atsushi Enomoto <[email protected]>
  97. * XmlTextReaderTests.cs : added test for bug #398374.
  98. 2008-06-05 Atsushi Enomoto <[email protected]>
  99. * XmlConvertTests.cs : added test for bug #320424.
  100. 2008-05-22 Atsushi Enomoto <[email protected]>
  101. * XmlReaderSettingsTests.cs : added test for bug #392385.
  102. 2008-05-07 Atsushi Enomoto <[email protected]>
  103. * XmlReaderCommonTests.cs : added test for bug #385638.
  104. 2008-04-17 Atsushi Enomoto <[email protected]>
  105. * XmlElementTests.cs : added test for bug #380720.
  106. * XmlAttributeTests.cs : numbered some assertions.
  107. 2008-04-02 Atsushi Enomoto <[email protected]>
  108. * XsdValidatingReaderTests.cs : added test for bug #376395.
  109. 2008-03-31 Gert Driesen <[email protected]>
  110. * XmlDocumentTests.cs: Fixed line endings.
  111. * XmlAttributeCollectionTests.cs: Fixed line endings.
  112. * XmlDocumentEventTests.cs: Fixed line endings.
  113. * XmlNodeTests.cs: Fixed line endings.
  114. * XsdValidatingReaderTests.cs: Fixed line endings.
  115. * XmlDocumentTypeTests.cs: Fixed line endings.
  116. * XmlEntityReferenceTests.cs: Fixed line endings.
  117. 2008-03-31 Gert Driesen <[email protected]>
  118. * XmlAttributeTests.cs: Use Assert instead of deprecated Assertion
  119. class. Improved a few tests. Added link to MS bug report for regression
  120. in .NET 2.0. Numbered tests.
  121. 2008-02-19 Atsushi Enomoto <[email protected]>
  122. * XmlParserContextTests.cs : they are working. case #3 should not
  123. try to parse broken internalSubset (we do not allow broken
  124. intsubset and it is almost no worthy of assuring only-nominal
  125. .net compat that such broken internalSubset should be allowed).
  126. 2008-01-25 Atsushi Enomoto <[email protected]>
  127. * XmlReaderCommonTests.cs : added test for bug #347768.
  128. 2008-01-15 Gert Driesen <[email protected]>
  129. * XmlParserContextTests.cs: Added ctor tests.
  130. 2007-12-06 Atsushi Enomoto <[email protected]>
  131. * XmlUrlResolverTests.cs : fixed test; file://file.txt is to access
  132. such a server whose (domain) name is "file.txt", which is actually
  133. an absolute URI. Remove "regression" in the nunit test.
  134. 2007-11-12 Atsushi Enomoto <[email protected]>
  135. * XsdValidatingReaderTests.cs : added test for #339934.
  136. 2007-11-09 Atsushi Enomoto <[email protected]>
  137. * XmlConvertTests.cs : added test for #339004 and more.
  138. 2007-10-31 Gert Driesen <[email protected]>
  139. * XmlConvertTests.cs: Added link to MS bug report.
  140. 2007-10-31 Atsushi Enomoto <[email protected]>
  141. * XsdValidatingReaderTests.cs : added test for #336625.
  142. 2007-10-30 Atsushi Enomoto <[email protected]>
  143. * XmlConvertTest.cs : added test for DateTime roundtrip.
  144. 2007-10-19 Atsushi Enomoto <[email protected]>
  145. * XmlReaderCommonTests.cs : added test for bug #334752.
  146. 2007-09-28 Atsushi Enomoto <[email protected]>
  147. * XmlWriterTests.cs : added WriteNodeXPathNavigatorAttribute().
  148. 2007-09-27 Atsushi Enomoto <[email protected]>
  149. * XmlWriterTests.cs : added test for WriteValue(object).
  150. * XmlTextWriterTests.cs : added WriteQualifiedName() test with empty
  151. namespace.
  152. 2007-08-13 Atsushi Enomoto <[email protected]>
  153. * XmlWriterSettingsTests.cs : added test for extraneous newline on
  154. OmitXmlDeclaration mode.
  155. 2007-08-02 Atsushi Enomoto <[email protected]>
  156. * XsdValidatingReaderTests.cs : test for bug #82010.
  157. 2007-08-02 Atsushi Enomoto <[email protected]>
  158. * XsdValidatingReaderTests.cs : another test posted on bug #82183.
  159. 2007-07-17 Atsushi Enomoto <[email protected]>
  160. * XsdValidatingReaderTests.cs : added test for bug #82099.
  161. 2007-07-12 Atsushi Enomoto <[email protected]>
  162. * XmlWriterTests.cs : added test for bug #82051.
  163. 2007-07-11 Atsushi Enomoto <[email protected]>
  164. * XmlReaderSettingsTests.cs : added test for bug #82062.
  165. 2007-06-30 Gert Driesen <[email protected]>
  166. * XmlTextReaderTests.cs: Enable ProhibitDtd test on 1.0 profile too.
  167. Fixed line endings.
  168. 2007-06-13 Atsushi Enomoto <[email protected]>
  169. * XmlDocumentFragmentTests.cs : added InnerText().
  170. * XmlWriterSettingsTests.cs : replace \r\n with \n to make it pass
  171. on windows.
  172. 2007-05-31 Atsushi Enomoto <[email protected]>
  173. * XmlWriterSettingsTests.cs : added test for NewLineOnAttributes.
  174. 2007-05-26 Gert Driesen <[email protected]>
  175. * XmlWriterTests.cs: Renamed Close* tests to Create*, and improved
  176. their coverage. Commented out newly introduced tests since they fail
  177. on Mono. Added NotWorking Create_XmlWriter2 test.
  178. 2007-05-16 Gert Driesen <[email protected]>
  179. * XmlWriterTests.cs: Added tests for Close that verify closing of
  180. underlying stream.
  181. 2007-04-27 Atsushi Enomoto <[email protected]>
  182. * XsdValidatingReaderTests.cs : added test for bug #81460.
  183. 2007-04-25 Atsushi Enomoto <[email protected]>
  184. * XmlConvertTests.cs : added test for MaxValue serialization with
  185. every XmlDateTimeSerializationMode.
  186. 2007-04-25 Atsushi Enomoto <[email protected]>
  187. * XmlReaderCommonTests.cs : added test for bug #81451.
  188. 2007-04-24 Atsushi Enomoto <[email protected]>
  189. * XsdValidatingReaderTests.cs : added test for bug #81360.
  190. 2007-04-03 Atsushi Enomoto <[email protected]>
  191. * XmlTextReaderTests.cs : added test for bug #81294.
  192. 2007-03-05 Atsushi Enomoto <[email protected]>
  193. * XmlReaderSettingsTests.cs : added test for bug #81000.
  194. 2007-02-07 Atsushi Enomoto <[email protected]>
  195. * XmlReaderCommonTests.cs : added test for bug #80848.
  196. 2007-02-07 Atsushi Enomoto <[email protected]>
  197. * XmlReaderCommonTests.cs : added ReadElementContentAsStringEmpty().
  198. 2006-12-20 Atsushi Enomoto <[email protected]>
  199. * XmlNodeTests.cs : added tests for bug #80331.
  200. 2006-12-19 Atsushi Enomoto <[email protected]>
  201. * XmlTextReaderTests.cs : added test for bug #80308.
  202. 2006-12-12 Atsushi Enomoto <[email protected]>
  203. * XmlNodeTests.cs : added test for bug #80233.
  204. 2006-12-12 Atsushi Enomoto <[email protected]>
  205. * XmlValidatingReaderTests.cs : #if NET_2_0 was missing.
  206. 2006-12-12 Atsushi Enomoto <[email protected]>
  207. * XmlReaderSettingsTests.cs : added test to make sure that Create()
  208. returns a validating XmlReader.
  209. 2006-12-12 Atsushi Enomoto <[email protected]>
  210. * XmlValidatingReaderTests.cs : added test for bug #80231.
  211. 2006-12-11 Atsushi Enomoto <[email protected]>
  212. * XmlDocumentTests.cs : make sure to call overriden CreateAttribute()
  213. when loading from XmlReader.
  214. 2006-12-05 Atsushi Enomoto <[email protected]>
  215. * XmlNodeTests.cs : added another test for GetPrefixOfNamespace().
  216. 2006-11-20 Atsushi Enomoto <[email protected]>
  217. * XmlWriterSettingsTests.cs : added tests for relationship between
  218. ConformanceLevel, OmitXmlDeclaration and WriteStartDocument().
  219. 2006-11-17 Atsushi Enomoto <[email protected]>
  220. * XmlReaderSettingsTests.cs : added test for bug #79224; it does not
  221. load external schemas when validation mode is none.
  222. 2006-11-14 Atsushi Enomoto <[email protected]>
  223. * XmlReaderSettingsTests.cs : added validation event handler test
  224. case.
  225. 2006-11-13 Atsushi Enomoto <[email protected]>
  226. * XmlReaderSettingsTests.cs : added custom resolver case for primary
  227. XML stream (custom resolver is indeed used and here it should cause
  228. error).
  229. 2006-11-13 Atsushi Enomoto <[email protected]>
  230. * XmlReaderSettingsTests.cs : added NullResolver() case.
  231. 2006-10-27 Atsushi Enomoto <[email protected]>
  232. * XsdValidatingReaderTests.cs : the previous test raises different
  233. exception in 2.0.
  234. 2006-10-27 Atsushi Enomoto <[email protected]>
  235. * XsdValidatingReaderTests.cs : added bug #79650 case.
  236. 2006-10-27 Atsushi Enomoto <[email protected]>
  237. * XmlTextReaderTests.cs : added bug #79683 case.
  238. 2006-09-26 Atsushi Enomoto <[email protected]>
  239. * XmlDeclarationTests.cs : added bug #79496 case.
  240. 2006-09-21 Atsushi Enomoto <[email protected]>
  241. * XmlDocumentTests.cs : added bug #79468 case.
  242. 2006-09-19 Atsushi Enomoto <[email protected]>
  243. * XmlElementTests.cs : added test for #79420.
  244. * XmlAttributeTests.cs : added similar test.
  245. * XmlDocumentTests.cs : fix warnings.
  246. 2006-09-04 Atsushi Enomoto <[email protected]>
  247. * XmlReaderCommonTests.cs : added test for bug #79268.
  248. 2006-09-01 Atsushi Enomoto <[email protected]>
  249. * XmlTextWriterTests.cs : added test for bug #79047
  250. 2006-08-26 Atsushi Enomoto <[email protected]>
  251. * XmlDocumentTests.cs : added test for bug #79163.
  252. 2006-08-14 Atsushi Enomoto <[email protected]>
  253. * XmlTextReaderTests.cs : added test for whitespace node value which
  254. comes after a text declaration in XML external entity (i.e. .ctor()
  255. with XmlNodeType.Element).
  256. 2006-08-10 Atsushi Enomoto <[email protected]>
  257. * XmlTextWriterTests.cs : more indentation tests.
  258. 2006-08-07 Atsushi Enomoto <[email protected]>
  259. * XmlTextWriterTests.cs : test for #79019.
  260. 2006-07-28 Atsushi Enomoto <[email protected]>
  261. * XmlTextWriterTests.cs : added test case for comments, PIs and
  262. indentation.
  263. 2006-07-25 Atsushi Enomoto <[email protected]>
  264. * XmlConvertTest.cs :
  265. Added TimeSpan conversion test for min/max values.
  266. 2006-06-26 Atsushi Enomoto <[email protected]>
  267. * XmlReaderCommonTests.cs : added test for bug #78706.
  268. 2006-06-08 Atsushi Enomoto <[email protected]>
  269. * XmlTextWriterTests.cs : added test for bug #78598.
  270. 2006-05-09 Atsushi Enomoto <[email protected]>
  271. * XmlAttributeTests.cs : added NonEmptyPrefixWithEmptyNS().
  272. 2006-04-21 Atsushi Enomoto <[email protected]>
  273. * XmlTextWriterTests.cs : test for bug #78148.
  274. 2006-04-14 Atsushi Enomoto <[email protected]>
  275. * XmlReaderCommonTests.cs : added test for ReadElementContentAs()
  276. with argument typeof(object).
  277. 2006-04-12 Atsushi Enomoto <[email protected]>
  278. * XmlReaderSettingsTests.cs :
  279. Added CreateValidatorFromNonIXmlNamespaceResolver() which is
  280. uncovered by NVDL validator.
  281. * XmlDefaultReader.cs : new file for above.
  282. 2006-04-06 Atsushi Enomoto <[email protected]>
  283. * XmlReaderCommonTests.cs : added test for
  284. ReadElementContentAsString() and empty element.
  285. 2006-04-05 Atsushi Enomoto <[email protected]>
  286. * XmlWriterSettingsTest.cs : added tests on set_Encoding(),
  287. set_NewLineChars() and OmitXmlDeclaration.
  288. 2006-03-08 Atsushi Enomoto <[email protected]>
  289. * XmlReaderCommonTests.cs : Added tests for ReadContentAsString() and
  290. ReadElementContentAsString().
  291. 2006-02-24 Atsushi Enomoto <[email protected]>
  292. * XmlTextWriterTests.cs : added test for bug #77623. Also fixed
  293. WriteString() test which failed to fail (Assert.Fail).
  294. 2006-02-22 Atsushi Enomoto <[email protected]>
  295. * XmlTextWriterTests.cs : added invalid character processing test.
  296. 2006-02-20 Atsushi Enomoto <[email protected]>
  297. * XmlReaderCommonTests.cs : added custom assertion overload that takes
  298. test label.
  299. * XmlNodeReaderTests.cs : labeled some.
  300. * XmlTextWriterTests.cs :
  301. Changed the semantics of AttributeNamespacesXmlnsXmlns() and
  302. removed NotDotNet (in contrast this test should fail with previous
  303. version of XmlTextWriter). See the code comment for details.
  304. Added WriteQualifiedNameXmlnsError().
  305. 2006-02-14 Atsushi Enomoto <[email protected]>
  306. * XmlTextReaderTests.cs : added WhitespaceHandling tests.
  307. 2006-02-14 Atsushi Enomoto <[email protected]>
  308. * XmlTextWriterTests.cs : tiny test name fix, as it does not actually
  309. test WriteString().
  310. 2006-02-14 Atsushi Enomoto <[email protected]>
  311. * XmlTextWriterTests.cs : added test WriteRaw("") closes open tag.
  312. 2006-02-14 Atsushi Enomoto <[email protected]>
  313. * XmlTextWriterTests.cs : numbered some tests and added some comments.
  314. 2006-01-25 Atsushi Enomoto <[email protected]>
  315. * XmlConvertTests.cs : added test for bug #77350.
  316. 2006-01-16 Atsushi Enomoto <[email protected]>
  317. * XmlConvertTests.cs : added test for bug #77252.
  318. 2006-01-13 Atsushi Enomoto <[email protected]>
  319. * XsdValidatingReaderTests.cs : test from bug #77241.
  320. 2006-01-13 Atsushi Enomoto <[email protected]>
  321. * XmlTextWriterTests.cs : added some tests for XMLdecl state check.
  322. 2006-01-12 Atsushi Enomoto <[email protected]>
  323. * XmlTextWriterTests.cs : Split AutoCreatePrefixes() and marked as
  324. Ignore rather than NotWorking. Also it is not for bug #77086 and
  325. #77077 (they were fixed). See bug #77088.
  326. 2006-01-12 Atsushi Enomoto <[email protected]>
  327. * XmlTextWriterTests.cs : re-enabled WriteNmToken_InvalidChars().
  328. 2006-01-12 Atsushi Enomoto <[email protected]>
  329. * XmlTextWriterTests.cs : re-enabled bug #77094 related tests.
  330. 2006-01-06 Atsushi Enomoto <[email protected]>
  331. * XmlWriterTests.cs : added tests for WriteNode(XPathNavigator, bool)
  332. as well as XPathNavigator.WriteSubtree(XmlWriter).
  333. 2006-01-06 Atsushi Enomoto <[email protected]>
  334. * XsdValidatingReaderTests.cs : test for ReadTypeValue() that it
  335. does not ignore whitespace nodes, and it does not normalize string
  336. incorrectly.
  337. 2006-01-06 Atsushi Enomoto <[email protected]>
  338. * XsdValidatingReaderTests.cs : test for ReadTypeValue() with simple
  339. type restriction.
  340. 2006-01-05 Gert Driesen <[email protected]>
  341. * XmlElementTests.cs: Improved tests for setting prefix to null
  342. or zero-length string. On 2.0 profile, setting prefix to null should
  343. not result in ArgumentNullException.
  344. * XmlTextWriterTests.cs: Enabled WriteNmToken tests and
  345. WriteWhitespace tests for null or zero-length value.
  346. 2006-01-05 Atsushi Enomoto <[email protected]>
  347. * XmlTextWriterTests.cs : removed silly part from
  348. WriteStartElement_XmlPrefix (). We are not reproducing MS bugs.
  349. (kept remaining part of this test; see if it makes sense after
  350. bug #77094 got fixed).
  351. 2005-12-29 Gert Driesen <[email protected]>
  352. * XmlTextWriterTests.cs: Do not yet enable tests for WriteWhitespace
  353. with null or zero-length value (await approval for XmlTextWriter
  354. change from Atsushi).
  355. 2005-12-27 Gert Driesen <[email protected]>
  356. * XmlTextWriterTests.cs: Do not yet enable tests for WriteNmToken
  357. with null or zero-length value (await approval for XmlTextWriter
  358. change from Atsushi).
  359. 2005-12-27 Gert Driesen <[email protected]>
  360. * XmlTextWriterTests.cs: Added tests for WriteWhitespace and
  361. WriteNmToken.
  362. 2005-12-27 Gert Driesen <[email protected]>
  363. * NameTableTests.cs: Added additional tests for Add and Get methods.
  364. 2005-12-27 Gert Driesen <[email protected]>
  365. * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
  366. 2005-12-26 Atsushi Enomoto <[email protected]>
  367. * XmlTextWriterTests.cs : enabled
  368. WriteStartElement_Prefix_EmptyNamespace() and
  369. NamespacesPrefixWithEmptyAndNullNamespaceEmpty().
  370. 2005-12-26 Atsushi Enomoto <[email protected]>
  371. * XmlElementTests.cs : Patch by Vorobiev Maksim.
  372. - setting null to Prefix should raise ArgumentNullException.
  373. - setting String.Empty to Prefix should be allowed.
  374. 2005-12-26 Atsushi Enomoto <[email protected]>
  375. * XsdValidatingReaderTests.cs : test for multi URLs in
  376. schemaLocation. Test by Vorobiev Maskim.
  377. 2005-12-26 Gert Driesen <[email protected]>
  378. * XmlElementTests.cs: Fixed line endings.
  379. 2005-12-26 Gert Driesen <[email protected]>
  380. * XmlTextWriterTests.cs: Renamed tests to avoid ambiguity, and
  381. renumbered some tests. Added tests for WriteStartElement and
  382. WriteElementString for zero-length and null local names.
  383. Added tests bugs #77093, #77094 and #77095.
  384. 2005-12-26 Gert Driesen <[email protected]>
  385. * XmlNamespaceManagerTests.cs: Added tests for xml prefix.
  386. 2005-12-23 Atsushi Enomoto <[email protected]>
  387. * XmlTextWriterTests.cs : XmlSpace_Valid() is working now.
  388. 2005-12-23 Atsushi Enomoto <[email protected]>
  389. * XmlTextWriterTests.cs : XmlNs_Valid2() is working now.
  390. 2005-12-23 Gert Driesen <[email protected]>
  391. * XmlTextWriterTests.cs: Fixed line endings. Enabled XmlPrefix_ValidMS
  392. test. Added bug numbers to test cases.
  393. 2005-12-23 Gert Driesen <[email protected]>
  394. * XmlTextWriterTests.cs: Improved coverage of xml prefix tests.
  395. 2005-12-16 Gert Driesen <[email protected]>
  396. * XmlTextWriterTests.cs: Fixed some tests that caught exception to
  397. become useful. Added few tests that fail on Mono.
  398. 2005-12-16 Gert Driesen <[email protected]>
  399. * XmlTextWriterTests.cs: No longer derive from deprecated Assertion
  400. class. Added WriteDocType tests.
  401. * XmlWriterTests.cs: No longer derive from deprecated Assertion class.
  402. 2005-12-15 Konstantin Triger <[email protected]>
  403. * XmlTextWriterTests.cs: added WriteCDataNull test.
  404. 2005-12-14 Atsushi Enomoto <[email protected]>
  405. * XmlDocumentTests.cs : (CreateNodeNodeTypeName) the previous fix was
  406. wrong; ArgumentException is the expected exception (it anyways won't
  407. work under MS.NET 2.0).
  408. * XmlNodeTests.cs : added labels to assertions. another NotDotNet case.
  409. * XmlAttributeTests.cs : ditto.
  410. 2005-12-14 Atsushi Enomoto <[email protected]>
  411. * XmlDocumentTests.cs, XmlAttributeCollectionTests.cs
  412. XmlElementTests.cs, XmlCharacterDataTests.cs :
  413. Marked NotDotNet for some tests broken under 2.0 (MS bugs).
  414. Marked Ignore for some tests which originally does not make sense.
  415. Changed types in ExpectedException for some tests under 2.0.
  416. 2005-12-12 Atsushi Enomoto <[email protected]>
  417. * XmlAssert.cs : new file.
  418. 2005-12-12 Atsushi Enomoto <[email protected]>
  419. * XmlReaderCommonTests.cs : enabled MoveToNextSibling() tests.
  420. 2005-12-12 Atsushi Enomoto <[email protected]>
  421. * XmlReaderCommonTests.cs : added several tests for 2.0 methods.
  422. 2005-12-09 Atsushi Enomoto <[email protected]>
  423. * XmlTextReaderTests.cs : added test for Encoding property.
  424. 2005-12-09 Atsushi Enomoto <[email protected]>
  425. * XmlReaderCommonTests.cs : added tests for ReadToDescendant() and
  426. ReadToFollowing().
  427. 2005-12-09 Atsushi Enomoto <[email protected]>
  428. * XmlReaderSettingsTests.cs : added some ConformanceLevel tests.
  429. Added CreateClonesSettings() to make sure XmlReader.Create() clones
  430. XmlReaderSettings.
  431. 2005-12-08 Atsushi Enomoto <[email protected]>
  432. * XmlReaderSettingsTests.cs : (DefaultValue)
  433. Added assertion label everywhere.
  434. * XmlWriterTests.cs : WriteNodeError is broken under MS.NET 2.0 (it
  435. should cause an error).
  436. 2005-12-08 Atsushi Enomoto <[email protected]>
  437. * XmlReaderSettingsTests.cs : SetSchemas() should not cause an error.
  438. Added SetSchemasNull() as well.
  439. * XmlUrlResolverTests.cs : (ResolveUriWithNullArgs)
  440. expect ArgumentNullException instead of ArgumentException.
  441. This is a fix in .NET 2.0.
  442. 2005-12-08 Atsushi Enomoto <[email protected]>
  443. * XsdParticleValidationTests.cs : ValidateRootElementOnlyInvalid()
  444. does not throw validation exception under MS 2.0, this NotDotNet.
  445. 2005-12-08 Atsushi Enomoto <[email protected]>
  446. * XmlReaderCommonTests.cs : use ProhibitDtd=false in CreateSimple()
  447. and added CreateSimpleProhibitDtd().
  448. 2005-11-09 Atsushi Enomoto <[email protected]>
  449. * XmlWriterSettingsTests.cs : NormalizeNewLines does not exist anymore
  450. 2005-11-09 Atsushi Enomoto <[email protected]>
  451. * XmlConvertTests.cs : tests for ToUInt16/32/64() and VerifyTOKEN().
  452. 2005-11-09 Atsushi Enomoto <[email protected]>
  453. * XmlConvertTests.cs : some tests for ToInt64(), ToSByte(),
  454. 2005-11-09 Atsushi Enomoto <[email protected]>
  455. * XmlConvertTests.cs : some tests for ToInt16(), ToInt32(),
  456. VerifyName() and VerifyNCName().
  457. 2005-11-07 Atsushi Enomoto <[email protected]>
  458. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags is updated.
  459. 2005-10-23 Atsushi Enomoto <[email protected]>
  460. * XmlNamespaceManagerTests.cs :
  461. well, hence GetNamespacesInScope() is NotDotNet.
  462. 2005-10-23 Atsushi Enomoto <[email protected]>
  463. * XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
  464. labels. Fixed counts; they count default namespaces. MS seems to
  465. have a bug on declaration removal (xmlns='') on .Local.
  466. * XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
  467. allowed at all, so disabled tests that depends on such references.
  468. 2005-10-23 Atsushi Enomoto <[email protected]>
  469. * XmlTextWriterTests.cs : split some tests that try to write nodes
  470. at error state (.NET 2.0 correctly rejects them).
  471. 2005-10-23 Atsushi Enomoto <[email protected]>
  472. * XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
  473. XmlReaderCommonTests.cs : added and fixed tests to make sure that
  474. LookupNamespace("") returns null for default namespace, and checks
  475. that empty namespace URI is not allowed for non-empty prefix.
  476. 2005-10-04 Atsushi Enomoto <[email protected]>
  477. * XmlConvertTests.cs : added test for bug #76328.
  478. 2005-10-01 Atsushi Enomoto <[email protected]>
  479. * XmlWriterSettingsTests.cs : test for NormalizeNewLines.
  480. 2005-10-01 Atsushi Enomoto <[email protected]>
  481. * XmlAttributeTests.cs : test for bug #76311.
  482. 2005-10-01 Atsushi Enomoto <[email protected]>
  483. * XmlReaderCommonTests.cs : added simple Create() test.
  484. 2005-09-28 Atsushi Enomoto <[email protected]>
  485. * XmlNodeReaderTests.cs : added test for bug #76260.
  486. 2005-09-27 Atsushi Enomoto <[email protected]>
  487. * XmlTextReaderTests.cs : added test for bug #76247.
  488. 2005-09-26 Atsushi Enomoto <[email protected]>
  489. * XmlValidatingReaderTests.cs : added test for bug #76234.
  490. 2005-09-25 Atsushi Enomoto <[email protected]>
  491. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
  492. 2005-09-21 Atsushi Enomoto <[email protected]>
  493. * XmlWriterSettingsTests.cs : removed NormalizeNewLines.
  494. 2005-09-21 Atsushi Enomoto <[email protected]>
  495. * XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
  496. * NameTableTests.cs : numbered testcases. fixed argument order.
  497. 2005-09-14 Atsushi Enomoto <[email protected]>
  498. * XmlTextReaderTests.cs : added #76102 testcase.
  499. 2005-09-14 Atsushi Enomoto <[email protected]>
  500. * XmlTextWriterTests.cs : added #76095 testcase.
  501. 2005-08-31 Sebastien Pouliot <[email protected]>
  502. * XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
  503. * XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
  504. * XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
  505. 2005-08-04 Atsushi Enomoto <[email protected]>
  506. * XmlAttributeTests.cs : Test if set_Value() works in such cases that
  507. there was only one child in attribute and it was an entity reference.
  508. 2005-07-28 Atsushi Enomoto <[email protected]>
  509. * XsdValidatingReaderTests.cs : added test case for duplicating
  510. assignment of both Schemas.Add() and xsi:schemaLocation where
  511. schemaLocation could not be resolved.
  512. 2005-07-14 Atsushi Enomoto <[email protected]>
  513. * XmlTextWriterTests.cs : added bug #75546 testcase.
  514. 2005-06-29 Atsushi Enomoto <[email protected]>
  515. * XmlConvertTests.cs : added timespan milliseconds testcase.
  516. 2005-06-27 Atsushi Enomoto <[email protected]>
  517. * XmlTextReaderTests.cs : added a testcase for not-wf entity
  518. declaration which is actually not used in the instance.
  519. 2005-06-23 Atsushi Enomoto <[email protected]>
  520. * XsdParticleValidationTests.cs : XmlSchemaException ->
  521. XmlSchemaValidationException under 2.0 profile.
  522. 2005-06-17 Atsushi Enomoto <[email protected]>
  523. * XmlValidatingReaderTests.cs : added attribute namespace check in
  524. DefaultXmlnsAttributeLookup() as well.
  525. 2005-06-17 Atsushi Enomoto <[email protected]>
  526. * XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
  527. 2005-05-31 Atsushi Enomoto <[email protected]>
  528. * XmlValidatingReaderTests.cs : let's test external DTD as well.
  529. 2005-05-31 Atsushi Enomoto <[email protected]>
  530. * XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
  531. is imported from sys.security.
  532. 2005-05-25 Andrew Skiba <[email protected]>
  533. * W3C : directory added
  534. 2005-05-10 Atsushi Enomoto <[email protected]>
  535. * XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
  536. which was regarded as a bug while it was by design.
  537. 2005-05-05 Atsushi Enomoto <[email protected]>
  538. * XmlNamespaceManagerTests.cs : removed more atomizedName tests.
  539. 2005-05-05 Atsushi Enomoto <[email protected]>
  540. * XmlNamespaceManagerTests.cs : removed atomizedName related tests.
  541. 2005-03-25 Atsushi Enomoto <[email protected]>
  542. * XmlTextWriterTests.cs : added more test case for xml:space.
  543. 2005-03-24 Atsushi Enomoto <[email protected]>
  544. * XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
  545. 2005-03-15 Atsushi Enomoto <[email protected]>
  546. * XmlValidatingReaderTests.cs : Added test for sequential text nodes
  547. which affects on ExpandEntities.
  548. 2005-03-09 Atsushi Enomoto <[email protected]>
  549. * XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
  550. 2005-03-07 Atsushi Enomoto <[email protected]>
  551. * XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
  552. Test case by Konstantin Triger.
  553. 2005-03-07 Atsushi Enomoto <[email protected]>
  554. * XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
  555. 2005-03-03 Atsushi Enomoto <[email protected]>
  556. * XmlTextWriterTests.cs : added testcase for duplicating namespace
  557. mapping processing (should create another prefix, not exception).
  558. 2005-03-02 Atsushi Enomoto <[email protected]>
  559. * XmlTextWriterTests.cs : Added test for LookupPrefix() for
  560. overriden prefix.
  561. 2005-02-25 Atsushi Enomoto <[email protected]>
  562. * XmlNodeTests.cs : added Clone() of readonly node returns a node
  563. that is not readonly.
  564. 2005-02-25 Atsushi Enomoto <[email protected]>
  565. * XmlAttributeTests.cs : added nonNCName Prefix case.
  566. 2005-02-24 Atsushi Enomoto <[email protected]>
  567. * XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
  568. 2005-02-16 Atsushi Enomoto <[email protected]>
  569. * XmlConvertTests.cs : added some null/empty string cases for
  570. EncodeName()/EncodeLocalName()/EncodeNmToken().
  571. 2005-02-15 Atsushi Enomoto <[email protected]>
  572. * XmlElementTests.cs : assertion numbering on
  573. RemoveDoesNotRemoveDefaultAttributes().
  574. 2005-01-26 Nick Drochak <[email protected]>
  575. * XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
  576. test method and ignore it on .NET.
  577. 2005-01-17 Atsushi Enomoto <[email protected]>
  578. * XmlReaderSettingsTests.cs : added some .ctor() tests.
  579. 2005-01-13 Atsushi Enomoto <[email protected]>
  580. * XmlReaderCommonTests.cs : added labels for tests.
  581. Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
  582. no consistent reference implementation to follow.
  583. 2005-01-13 Atsushi Enomoto <[email protected]>
  584. * XmlValidatingReaderTests.cs,
  585. XmlReaderCommonTests.cs,
  586. XmlTextWriterTests.cs,
  587. XmlUrlResolverTests.cs :
  588. Marked as NotDotNet for those tests that fails under MS.NET.
  589. Commented out some XmlTextWriter implementation-dependent assertions.
  590. Fixed ResolveUriWithNullArgs () expected return type.
  591. 2005-01-11 Atsushi Enomoto <[email protected]>
  592. * XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
  593. 2004-01-11 Atsushi Enomoto <[email protected]>
  594. * XmlReaderCommonTests.cs :
  595. Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
  596. 2004-01-11 Atsushi Enomoto <[email protected]>
  597. * XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
  598. that is buggy on attribute value's Prefix and NamespaceURI.
  599. 2005-01-10 Nick Drochak <[email protected]>
  600. * XmlWriterTests.cs: Fix build warnings.
  601. * XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
  602. has different default attributes it seems.
  603. 2004-12-15 Raja R Harinath <[email protected]>
  604. * XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
  605. XsdValidate references to use ValidationType.
  606. 2004-12-08 Atsushi Enomoto <[email protected]>
  607. * XmlReaderSettingsTests.cs : updated some boolean flags to
  608. XmlSchemaValidationFlags.
  609. 2004-11-22 Atsushi Enomoto <[email protected]>
  610. * XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
  611. 2004-11-14 Atsushi Enomoto <[email protected]>
  612. * XmlWriterTests.cs : Added test for WriteAttributes().
  613. 2004-11-08 Atsushi Enomoto <[email protected]>
  614. * XmlNodeReaderTests.cs : numbered some of asserts.
  615. 2004-11-08 Atsushi Enomoto <[email protected]>
  616. * XmlTextReaderTests.cs : added tests for 2.0 entity handling.
  617. * XmlValidatingReaderTests.cs : modified tests for entity handling
  618. that are changed in 2.0.
  619. 2004-10-29 Atsushi Enomoto <[email protected]>
  620. * XmlReaderCommonTests.cs : ReadAsObject() is removed.
  621. * XmlTextWriterTests.cs : added CloseTwice().
  622. * XmlNodeTests.cs : added labels.
  623. 2004-09-08 Atsushi Enomoto <[email protected]>
  624. * XmlWriterSettingsTests.cs : added.
  625. 2004-09-07 Atsushi Enomoto <[email protected]>
  626. * XmlReaderCommonTests.cs : Added tests for ReadAsObject().
  627. 2004-09-07 Atsushi Enomoto <[email protected]>
  628. * XmlNamespaceManagerTests.cs : Added test for duplicate addition,
  629. atomization, complex RemoveNamespace() and GetNamespacesInScope().
  630. 2004-09-07 Atsushi Enomoto <[email protected]>
  631. * XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
  632. * XmlTextReaderTests.cs : added normalization and Setting sests.
  633. 2004-09-06 Atsushi Enomoto <[email protected]>
  634. * XmlElementTests.cs : added another set_InnerXml test.
  635. * XmlNodeTests.cs : added BaseURI test.
  636. * XmlTextReaderTests.cs : added tests for Normalization, EOF,
  637. LineNumber, LinePosition (all reported ones).
  638. * XsdValidatingReaderTests.cs : more descriptions.
  639. 2004-09-06 Atsushi Enomoto <[email protected]>
  640. * XmlTextReaderTests.cs : added ProhibitDtd().
  641. * XmlWriterTests.cs : added WriteNodeError().
  642. 2004-06-21 Atsushi Enomoto <[email protected]>
  643. * XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
  644. It requires CAS.
  645. 2004-06-18 Atsushi Enomoto <[email protected]>
  646. * XmlSecureResolverTests.cs : [TestFixture] was missing.
  647. 2004-06-14 Atsushi Enomoto <[email protected]>
  648. * XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
  649. 2004-06-14 Atsushi Enomoto <[email protected]>
  650. * XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
  651. URI file:///usr/local/src as correct file path. MS.NET is not aware
  652. of such format and parses as "host = usr, path = /local/src".
  653. 2004-06-06 Atsushi Enomoto <[email protected]>
  654. * XmlTextWriterTests.cs : Added indentation testcase (it might now
  655. work due to CompareInfo.IndexOf() bug).
  656. 2004-06-06 Atsushi Enomoto <[email protected]>
  657. * XmlTextReaderTests.cs : added some namespace check tests.
  658. 2004-05-27 Atsushi Enomoto <[email protected]>
  659. * XmlTextReaderTests.cs : added test for bug #59142.
  660. * XmlTextWriterTests.cs : added test for bug #59154.
  661. * XmlDocumentTests.cs : added test for bug #59155.
  662. 2004-05-24 Atsushi Enomoto <[email protected]>
  663. * XmlNodeTests.cs : added Normalize2().
  664. 2004-05-13 Atsushi Enomoto <[email protected]>
  665. * XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
  666. kind of thing that should be supported.
  667. * XmlValidatingReaderTests.cs : commented a bit.
  668. 2004-04-24 Atsushi Enomoto <[email protected]>
  669. * XmlConvertTests.cs : Commented out locale-dependent tests.
  670. * XmlDocumentTests.cs : Uncommented now-testable lines.
  671. Commented out that should not be allowed, such as non-XML-name node.
  672. 2004-04-24 Atsushi Enomoto <[email protected]>
  673. * XmlDeclarationTests.cs : More InnerText tests.
  674. 2004-04-20 Atsushi Enomoto <[email protected]>
  675. * XmlCharacterDataTests.cs : Added more tests for Substring().
  676. * XmlConvertTests.cs : Commented out locale-dependent tests.
  677. * XmlDocumentTests.cs : Added LoadEntityReference().
  678. 2004-03-31 Atsushi Enomoto <[email protected]>
  679. * Added nist_dom tests from Mainsoft hackers.
  680. * Added XmlSecureResolverTests.cs.
  681. 2004-03-16 Atsushi Enomoto <[email protected]>
  682. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  683. should be written regardless of document.PreserveWhitespace.)
  684. 2004-03-15 Atsushi Enomoto <[email protected]>
  685. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  686. EndElement.
  687. 2004-03-14 Atsushi Enomoto <[email protected]>
  688. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  689. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  690. 2004-03-04 Atsushi Enomoto <[email protected]>
  691. * XmlDocumentTests.cs : added Implementation().
  692. 2004-02-17 Atsushi Enomoto <[email protected]>
  693. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  694. 2004-02-05 Atsushi Enomoto <[email protected]>
  695. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  696. ReadNodeWhitespace().
  697. * XmlElementTests.cs : Added SetAttributeNodeError().
  698. 2004-02-04 Atsushi Enomoto <[email protected]>
  699. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  700. DescendantsRecursively and added more test lines.
  701. Added ChildNodes().
  702. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  703. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  704. 2004-02-03 Atsushi Enomoto <[email protected]>
  705. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  706. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  707. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  708. 2004-01-28 Atsushi Enomoto <[email protected]>
  709. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  710. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  711. element, removed extraneous test switch for InsertBefore().
  712. * XsdParticleValidationTests.cs,
  713. XsdValidatingReaderTests.cs : These test class names are too
  714. ambiguous so just renamed them. (No bug reports are found on them,
  715. but should be warned in the meantime.)
  716. 2004-01-23 Atsushi Enomoto <[email protected]>
  717. * XmlElementTests.cs : Added SetAttributeXmlns.
  718. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  719. 2004-01-22 Atsushi Enomoto <[email protected]>
  720. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  721. 2004-01-20 Atsushi Enomoto <[email protected]>
  722. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  723. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  724. 2004-01-14 Atsushi Enomoto <[email protected]>
  725. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  726. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  727. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  728. Close or avoid XmlTextReader.
  729. 2004-01-03 Atsushi Enomoto <[email protected]>
  730. * XmlAttributeCollectionTests.cs :
  731. added InsertAfterReplacesInCorrectOrder().
  732. * XmlUrlResolverTests.cs : fixed file path.
  733. * XmlTextReaderTests.cs : fixed file path.
  734. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  735. 2003-12-21 Atsushi Enomoto <[email protected]>
  736. * XmlDocumentTests.cs, XmlElementTests.cs :
  737. Added GetElementsByTagNameNs2().
  738. 2003-12-16 Atsushi Enomoto <[email protected]>
  739. * XmlDeclarationTests.cs : Added InvalidInnerText().
  740. * XmlDocumentTests.cs : CRLF fix (to LF)
  741. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  742. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  743. 2003-11-28 Atsushi Enomoto <[email protected]>
  744. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  745. encoding specification. Added WriteNodeNonEmptyElement().
  746. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  747. and GetEntityWithRelativeFileUri().
  748. * XmlTextWriterTests.cs : Added some namespace related tests.
  749. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  750. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  751. nodes.
  752. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  753. * XmlDeclarationTests.cs : Added InvalidInnerText().
  754. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  755. 2003-10-13 Atsushi Enomoto <[email protected]>
  756. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  757. 2003-10-13 Atsushi Enomoto <[email protected]>
  758. * XmlElementTests.cs : Added more tests on
  759. RemoveDoesNotRemoveDefaultAttributes().
  760. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  761. GetNamespaceOfPrefixNullArg().
  762. * XmlWriterTests.cs : Added WriteNodeNone().
  763. 2003-10-05 Atsushi Enomoto <[email protected]>
  764. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  765. methods.
  766. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  767. and added GetEntityWithNullArgs() (though it is uncommented).
  768. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  769. testing phase.
  770. 2003-09-21 Atsushi Enomoto <[email protected]>
  771. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  772. 2003-09-21 Atsushi Enomoto <[email protected]>
  773. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  774. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  775. which is rather buggy than their XmlNodeReader.
  776. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  777. and trivial messagefix.
  778. 2003-09-21 Atsushi Enomoto <[email protected]>
  779. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  780. 2003-08-24 Atsushi Enomoto <[email protected]>
  781. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  782. EmptyStringHasTextNode().
  783. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  784. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  785. ReadAttributeValue().
  786. * XmlTextReaderTests.cs :
  787. Added NotAllowedCharRef() and ExpandParameterEntity().
  788. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  789. and UndeclaredEntityInStandaloneXml().
  790. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  791. refactory.
  792. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  793. 2003-08-05 Atsushi Enomoto <[email protected]>
  794. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  795. should be ExpandCharEntities.
  796. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  797. ResolveEntity2() and ResolveEntityWithoutDTD().
  798. 2003-07-31 Atsushi Enomoto <[email protected]>
  799. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  800. CreateEntityReferencesWithoutDTD().
  801. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  802. ResolveEntityWithoutDTD().
  803. 2003-07-29 Atsushi Enomoto <[email protected]>
  804. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  805. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  806. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  807. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  808. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  809. entity reference inside text content (and it now fails).
  810. 2003-07-26 Atsushi Enomoto <[email protected]>
  811. * XmlAttributeTests.cs : added IdentityConstraints().
  812. * XmlDocumentTests.cs : added DocumentTypeNodes().
  813. * XmlNodeTests.cs : added InnerText().
  814. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  815. testing reader. Added IndexerAndAttributes().
  816. * XmlValidatingReader.cs : modified TestAttributes() to have
  817. ReadAttributeValue() tests. Added TestIdentityConstraints()
  818. 2003-07-24 Atsushi Enomoto <[email protected]>
  819. * XmlConvertTests.cs,
  820. XmlNodeTests.cs,
  821. XmlTextWriterTests.cs : removed some compilation warning.
  822. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  823. incorrect commit.
  824. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  825. and changed PrepareXmlReader() as returning validating reader.
  826. Added indexer (this[]) property check and ValidationType.None check
  827. to TestAttributeDefaultContribution().
  828. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  829. 2003-07-19 Atsushi Enomoto <[email protected]>
  830. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  831. some code refactory.
  832. 2003-07-12 Atsushi Enomoto <[email protected]>
  833. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  834. TestAttributeDefaultContribution().
  835. 2003-07-12 Atsushi Enomoto <[email protected]>
  836. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  837. ReadState check.
  838. * ChangeLog was incorrectly added about above stuff.
  839. * XmlTextReaderTests.cs : added some reader's state check tests and
  840. ReadAsElementContent and ReadAsAttributeContent.
  841. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  842. 2003-07-06 Atsushi Enomoto <[email protected]>
  843. * added XmlValidatingReaderTests.cs.
  844. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  845. * XmlTextWriterTests.cs: Made use of ExpectedException
  846. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  847. * Made tests which expect an exception use the
  848. ExpectedException Attribute.
  849. 2003-06-20 Atsushi Enomoto <[email protected]>
  850. * added XmlUrlResolverTests.cs.
  851. 2003-06-16 Atsushi Enomoto <[email protected]>
  852. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  853. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  854. in BaseURI test and DTD parameter entity test.
  855. 2003-06-16 Atsushi Enomoto <[email protected]>
  856. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  857. EmptyElementWithAttributes() and was added namespaced attribute tests.
  858. * XmlTextWriterTests.cs : added WriteWhitespace().
  859. 2003-06-10 Zoltan Varga <[email protected]>
  860. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  861. CreateAttribute.
  862. 2003-06-01 Atsushi Enomoto <[email protected]>
  863. * XmlConvertTests.cs : added VerifyNCName().
  864. 2003-05-18 Atsushi Enomoto <[email protected]>
  865. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  866. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  867. added more tests to AttributeWriteAttributeString().
  868. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  869. 2003-05-16 Atsushi Enomoto <[email protected]>
  870. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  871. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  872. and not well-formed xml of OuterXmlWithDefaultXmlns().
  873. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  874. WriteToWithDefaultNamespace().
  875. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  876. ReadInnerXmlWrongInit().
  877. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  878. * XmlReaderCommonTests.cs,
  879. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  880. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  881. to resolve these entity references.
  882. * XmlTextWriterTests.cs : removed English-dependent error message check.
  883. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  884. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  885. XmlDecl() as MS.NET results in.
  886. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  887. * Tests inherits from Assertion and Assertion. prefixes removed
  888. 2003-05-05 Atsushi Enomoto <[email protected]>
  889. * added XmlConvertTests.cs.
  890. 2003-04-29 Atsushi Enomoto <[email protected]>
  891. * XmlAttributeTests.cs : added WriteTo.
  892. * XmlReaderCommonTests.cs,
  893. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  894. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  895. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  896. they requires IsEmptyElement = false, which is always true for
  897. XmlNodeReader).
  898. 2003-04-27 Atsushi Enomoto <[email protected]>
  899. * XmlReaderCommonTests.cs,
  900. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  901. 2003-04-25 Atsushi Enomoto <[email protected]>
  902. * XmlWriterTests.cs : added some WriteNode() related testcases.
  903. 2003-04-13 Atsushi Enomoto <[email protected]>
  904. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  905. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  906. LoadDocumentWithIgnoreSection.
  907. 2003-04-12 Atsushi Enomoto <[email protected]>
  908. * added this file as a new entry.
  909. See ../ChangeLog to find ChangeLog entries before than this day.