ChangeLog 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  1. 2003-01-19 Atsushi Enomoto <[email protected]>
  2. * XmlElementTests.cs : added TestWriteToDefaultNamespace test.
  3. * XmlNodeTests.cs : added TestGetPrefixOfNamespace test.
  4. 2003-01-18 Atsushi Enomoto <[email protected]>
  5. * added XmlWriterTests.cs file and added it to AllTests.cs
  6. 2003-01-13 Nick Drochak <[email protected]>
  7. * XmlNodeTests.cs: MS.NET doesn't throw an exception here.
  8. 2003-01-11 Atsushi Enomoto <[email protected]>
  9. * XmlElementTests.cs : added TestInnerTextAndEvent test.
  10. (and many coding style fix.)
  11. * XmlTextReaderTests.cs : tiny argument order fix for TestAttributeWithEntityReference test.
  12. 2003-01-08 Atsushi Enomoto <[email protected]>
  13. * XmlDocumentTests.cs : test for attribute value bugfix.
  14. 2003-01-08 Atsushi Enomoto <[email protected]>
  15. * XmlTextReaderTests.cs : test for attribute value bugfix.
  16. 2002-01-02 Atsushi Enomoto <[email protected]>
  17. * SelectNodesTests.cs : added TestAlphabetDigitMixedName.
  18. 2002-12-28 Atsushi Enomoto <[email protected]>
  19. * XmlDocumentTests.cs : Test for bugzilla #34743 (whitespace handling)
  20. 2002-12-28 Atsushi Enomoto <[email protected]>
  21. * XmlDocumentTests.cs : Test for bugzilla #35308 (default ns output)
  22. * XmlElementTests.cs : Test for output of attributes with different NS.
  23. 2002-12-24 Atsushi Enomoto <[email protected]>
  24. * XmlDocumentTests.cs, XmlWhitespaceTests.cs:
  25. fixed whitespace handling (in relation to Ville's patch).
  26. 2002-12-21 Atsushi Enomoto <[email protected]>
  27. * XmlTextWriterTests.cs (TestAttributeNamespacesXmlnsXmlns):
  28. fixed bug in the testcase (in relation to JD Conley's patch).
  29. 2002-12-01 Atsushi Enomoto <[email protected]>
  30. * XmlDeclarationTests.cs (TestValueProperty):
  31. applied patch by David Sheldon
  32. 2002-11-13 Atsushi Enomoto <[email protected]>
  33. * AllTests.cs : added XmlEntityReferenceTests
  34. * XmlDocumentTests.cs : TestCloneNode, TestDocumentWithDoctypeDecl
  35. * XmlDocumentFragmentTests.cs : TestSetInnerXml
  36. * XmlEntityReferenceTests.cs : created
  37. * XmlTextWriterTests.cs : TestWriteAttributes() bugfix (reusing ctx)
  38. * XmlNodeTests.cs : bugfix TestInsertAfter(when refChild = null),
  39. added TestPrependChild
  40. 2002-11-13 Atsushi Enomoto <[email protected]>
  41. * XmlAttributeTests.cs : TestSetInnerAndOuterXml
  42. * XmlSignificantWhitespaceTests.cs : TestDataAndValue
  43. 2002-11-03 Atsushi Enomoto <[email protected]>
  44. * XmlAttributeCollectionTests.cs : TestSetNamedItem,
  45. TestInsertBeforeAfterPrepend, TestRemove
  46. * XmlElementTests.cs : TestWriteToWithDeletedNamespacePrefix,
  47. TestRemoveAttribute()
  48. * XmlDocumentFragmentTests.cs : TestGetInnerXml
  49. 2002-10-29 Atsushi Enomoto <[email protected]>
  50. * XmlElementTests.cs : added an Assert InnerXml with element content.
  51. * XmlNodeTests.cs : TestInsertBefore() and TestInsertAfter()
  52. 2002-10-28 Atsushi Enomoto <[email protected]>
  53. * added XmlDocumentFragmentTests.cs
  54. (including AllTests.cs and System.XML_linux_test.args)
  55. * XmlDocumentTests.cs: added test of XMLDeclaration to TestImportNode()
  56. * XmlElementTests.cs: added check removing children of InnerXml
  57. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  58. * System.XML_linux_test.args: added XPathNavigatorEvaluateTests.cs
  59. * makefile.gnu: pass MONO_PATH when running the tests.
  60. 2002-10-24 Nick Drochak <[email protected]>
  61. * System.XML_test.build: remove legacy build of a standalone exe of the
  62. unit tests
  63. * XmlDocumentTests.cs: Cannot use a URI with Load().
  64. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  65. * XmlTextReaderTests.cs: fixed TestEntityReferenceInsideText.
  66. 2002-10-22 Nick Drochak <[email protected]>
  67. * XmlTextWriterTests.cs: Null is ok when prefix is "xmlns".
  68. 2002-10-21 Duncan Mak <[email protected]>
  69. * XmlTextReaderTests.cs:
  70. * XmlElementTests.cs:
  71. * XmlDocumentTests.cs: Patches from Atsushi Enomoto
  72. <[email protected]>.
  73. 2002-10-18 Duncan Mak <[email protected]>
  74. * XmlDocumentTests.cs: Apply a patch from Atsushi Enomoto
  75. <[email protected]>.
  76. 2002-09-29 Nick Drochak <[email protected]>
  77. * XmlTextReaderTest.cs (AssertEndDocument): Add messages for Asserts()
  78. so we can tell where this is failing.
  79. 2002-09-19 Matt Hunter <[email protected]>
  80. * XmlElementTests.cs: Test for SetAttributeNode(localName, namespaceURI) added.
  81. * XmlAttributeCollectionTests.cs: added TestAppend().
  82. 2002-09-17 Kral Ferch <[email protected]>
  83. * XPathNavigatorEvaluateTests.cs: Tests for string(), concat(),
  84. starts-with(), and contains().
  85. 2002-09-12 Piers Haken <[email protected]>
  86. * XPathNavigatorEvaluateTests.cs: enable string() tests.
  87. 2002-09-12 Piers Haken <[email protected]>
  88. * XPathNavigatorEvaluateTests.cs: enable last() & count() tests.
  89. 2002-09-11 Kral Ferch <[email protected]>
  90. * XPathNavigatorEvaluateTests.cs: Added tests for
  91. local-name, namespace-uri, and string.
  92. 2002-09-11 Kral Ferch <[email protected]>
  93. * Added XPathNavigatorEvaluateTests.cs file to
  94. the MonoMicro.Test project.
  95. * XPathNavigatorEvaluateTests.cs: New file.
  96. * AllTests.cs: Added XPathNavigatorEvaluateTests suite.
  97. * XmlDocumentTests: Added space between namespace decls in
  98. TestGetElementsByTagNameUsingNameSpace. Was causing error
  99. when testing against Microsoft assembly.
  100. * XmlElementTests: Added space between namespace decls in
  101. TestGetElementsByTagNameUsingNameSpace. Was causing error
  102. when testing against Microsoft assembly.
  103. 2002-09-06 Kral Ferch <[email protected]>
  104. * Added XPathNavigatorMatchesTests.cs file to
  105. the MonoMicro.Test project.
  106. 2002-08-22 Jason Diamond <[email protected]>
  107. * AllTests.cs, System.XML_linux_test.args,
  108. XmlAttributeCollectionTests.cs,XmlElementTests.cs: Added test for
  109. RemoveAll and RemoveAllAttributes courtesy of Matt Hunter
  110. <[email protected]>.
  111. 2002-08-22 Jason Diamond <[email protected]>
  112. * XmlElementTests.cs: Correction to previous GetElementsByTagName
  113. patch courtesy of Matt Hunter <[email protected]>.
  114. 2002-08-22 Jason Diamond <[email protected]>
  115. * XmlDocumentTests.cs, XmlElementTests.cs: Added tests for
  116. namespace qualified GetElementsByTagName courtesy of Matt Hunter
  117. <[email protected]>.
  118. 2002-08-19 Jason Diamond <[email protected]>
  119. * XmlDocumentTests.cs, XmlElementTests.cs: Added tests for
  120. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  121. 2002-08-17 Jason Diamond <[email protected]>
  122. * XPathNavigatorMatchesTests.cs: Added tests for absolute patterns
  123. and patterns with predicates.
  124. 2002-08-17 Jason Diamond <[email protected]>
  125. * AllTests.cs: Added XPathNavigatorMatchesTests suite.
  126. * XPathNavigatorMatchesTests.cs: Added.
  127. 2002-08-16 Jason Diamond <[email protected]>
  128. * XmlElementTests.cs: Added test for OuterXml (and WriteTo) for
  129. qualified elements.
  130. 2002-08-16 Jason Diamond <[email protected]>
  131. * makefile.gnu: Added SOURCES_INCLUDE and SOURCES_EXCLUDE variables
  132. to get tests to build with the new build system.
  133. 2002-08-10 Jason Diamond <[email protected]>
  134. * makefile.gnu: Use relative path to NUnitConsole_mono.exe instead of
  135. hardcoding it to /usr/local/bin. Default test suite to AllTests but
  136. allow it to be overridden from the command line.
  137. * XmlTextWriterTests.cs: Split TestWriteString into multiple tests.
  138. Added encoding parameters to all the StreamReaders in
  139. TestBaseConstructorsAndBaseStream. I think this is a bug in Mono's
  140. StreamReader since these aren't required when testing against
  141. Microsoft's.
  142. 2002-08-08 Jason Diamond <[email protected]>
  143. * System.XML_linux_test.args: Added Kral's new test classes.
  144. 2002-08-07 Kral Ferch <[email protected]>
  145. * XmlCharacterDataTests.cs: New file.
  146. * XmlNodeTests.cs: New file.
  147. * AllTests.cs: Added XmlCharacterDataTests and XmlNodeTests.
  148. * XmlDocumentTests.cs: Added tests for NodeChanging, NodeChanged,
  149. NodeInserting, NodeInserted, NodeRemoving, and NodeRemoved events.
  150. 2002-08-03 Jason Diamond <[email protected]>
  151. * makefile.gnu: Added.
  152. * System.XML_linux_test.args: Added.
  153. 2002-07-12 Piers Haken <[email protected]
  154. * SelectNodesTests.cs: Added TestUnion (bug #27548)
  155. 2002-07-11 Jason Diamond <[email protected]>
  156. * SelectNodesTests.cs: Added.
  157. * AllTests.cs: Added SelectNodesTests to suite.
  158. 2002-07-11 Piers Haken <[email protected]>
  159. * XmlElementTests.cs: added TestCreateElement3WithNullNamespace
  160. 2002-06-24 Jason Diamond <[email protected]>
  161. * XPathScannerTests.cs: Removed.
  162. * System.XML_test.build: Removed tests for XPathScanner.
  163. 2002-05-27 Jason Diamond <[email protected]>
  164. * XPathNavigatorTests.cs: Added file to directory.
  165. * AllTests.cs: Added XPathNavigatorTests to suite.
  166. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered
  167. like Microsoft's parser does it.
  168. 2002-05-05 Nick Drochak <[email protected]>
  169. * ChangeLog: Update build file to run correct class in the test dll.
  170. 2002-05-05 Nick Drochak <[email protected]>
  171. * AllTests.cs
  172. * NameTableTests.cs
  173. * TheTests.cs
  174. * XPathScannerTests.cs
  175. * XmlAttributeTests.cs
  176. * XmlCDataSectionTests.cs
  177. * XmlCommentTests.cs
  178. * XmlDeclarationTests.cs
  179. * XmlDocumentTests.cs
  180. * XmlDocumentTypeTests.cs
  181. * XmlElementTests.cs
  182. * XmlNamespaceManagerTests.cs
  183. * XmlNodeListTests.cs
  184. * XmlProcessingInstructionTests.cs
  185. * XmlSignificantWhitespaceTests.cs
  186. * XmlTextReaderTests.cs
  187. * XmlTextTests.cs
  188. * XmlTextWriterTests.cs
  189. * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests.
  190. Changed Ximian.Mono.Tests to MonoTests.System.Xml
  191. 2002-04-08 Kral Ferch <[email protected]>
  192. * AllTests.cs: added XmlProcessingInstructionTests and XmlTextTests.
  193. * MonoMicro.Test.csproj: Added XmlProcessingInstructionTests.cs and
  194. XmlTextTests.cs.
  195. * XmlAttributeTests.cs: Added TestAttributeInnerAndOuterXml.
  196. * XmlCDataSectionTests.cs: Added TestXmlCDataSectionInnerAndOuterXml.
  197. * XmlCommentTests.cs: Added TestXmlCommentInnerAndOuterXml.
  198. * XmlDeclarationTests.cs: Added TestInnerAndOuterXml.
  199. * XmlDocumentTests.cs: Added TestInnerAndOuterXml.
  200. * XmlElementTests.cs: Added TestInnerAndOuterXml.
  201. * XmlProcessingInstructionTests.cs: Initial check-in.
  202. * XmlSignificantWhitespaceTests.cs: Added TestInnerAndOuterXml.
  203. * XmlTextTests.cs: Initial check-in.
  204. * XmlTextWriterTests.cs: Added TestWriteRaw, TestWriteRawInvalidInAttribute,
  205. and TestXmlSpaceRaw.
  206. * XmlWhiteSpacesTests.cs: Added TestInnerAndOuterXml.
  207. 2002-04-05 Kral Ferch <[email protected]>
  208. * XmlDocumentTests.cs: CreateNode tests.
  209. 2002-04-01 Kral Ferch <[email protected]>
  210. * XmlTextWriterTests.cs: Tests for WriteEndDocument and WriteFullEndElement.
  211. 2002-03-31 Kral Ferch <[email protected]>
  212. * XmlTextWriterTests.cs: Tests for LookupPrefix, WriteBase64,
  213. and WriteCharEntity.
  214. 2002-03-31 Kral Ferch <[email protected]>
  215. * XmlTextWriterTests.cs: Finished XmlLang, XmlSpace, and
  216. Attribute namespace declaration tests.
  217. 2002-03-29 Kral Ferch <[email protected]>
  218. * XmlTextWriterTests.cs: XmlLang and XmlSpace tests.
  219. 2002-03-29 Kral Ferch <[email protected]>
  220. * XmlTextWriterTests.cs: Working on Attributes.
  221. 2002-03-28 Duncan Mak <[email protected]>
  222. * XmlDeclarationTests.cs (TestConstructor):
  223. * XmlDocumentTypeTests.cs (TestAppendChild):
  224. * XmlSignificantWhitespaceTests.cs (TestXmlWhitespaceConstructor):
  225. * XmlWhiteSpaceTests.cs (TestXmlWhitespaceConstructor): Fixed the
  226. test for catching Exceptions.
  227. 2002-03-26 Jason Diamond <[email protected]>
  228. * AllTests.cs:
  229. * Mono.Test.csproj: Removed XPathScanner tests.
  230. * System.XML_test.build: Test XPathScanner separately.
  231. 2002-03-26 Duncan Mak <[email protected]>
  232. * AllTests.cs:
  233. * Microsoft.Test.csproj:
  234. * Mono.Test.csproj: Updated to include new test,
  235. XmlDocumentTypeTests.
  236. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class.
  237. * XmlCommentTests.cs (TestXmlNodeBaseProperties): Move the
  238. XmlNode.Value test in here.
  239. 2002-03-26 Jason Diamond <[email protected]>
  240. * XPathScannerTests.cs: More location path tests.
  241. 2002-03-25 Jason Diamond <[email protected]>
  242. * AllTests.cs:
  243. * Microsoft.Test.csproj:
  244. * Mono.Test.csproj: Updated to include new test, XmlScannerTests.
  245. * XPathScannerTests.cs: Added new tests for XPathScanner class.
  246. 2002-03-25 Duncan Mak <[email protected]>
  247. * AllTests.cs:
  248. * Microsoft.Test.csproj:
  249. * Mono.Test.csproj: Updated to include new test,
  250. XmlDeclarationTests.
  251. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class.
  252. 2002-03-23 Kral Ferch <[email protected]>
  253. * XmlTextWriterTests.cs: Tests for BaseStream,
  254. Namespaces = false, and WriteState.
  255. 2002-03-23 Kral Ferch <[email protected]>
  256. * XmlTextWriterTests.cs: constructor tests with
  257. different encodings to test that encoding gets suppressed
  258. on xml declaration when null stream passed to constructor.
  259. WriteStartDocument(standalone) tests. Tests for formatting
  260. and indentation. Test for invalid value set on QuoteChar.
  261. 2002-03-22 Duncan Mak <[email protected]>
  262. * AllTests.cs:
  263. * Microsoft.Test.csproj:
  264. * Mono.Test.csproj: Updated to include new files.
  265. * XmlCDataSectionTests.cs: Added to CVS.
  266. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me
  267. setup a testing environment on VS.NET.
  268. * XmlElementTests.cs: Reformatted.
  269. (TestCloneNode): Added.
  270. * XmlSignificantWhitespaceTests.cs: Added to CVS.
  271. * XmlWhiteSpaceTests.cs: Added to CVS.
  272. 2002-03-21 Kral Ferch <[email protected]>
  273. * XmlDocumentTests.cs: Tessts parent traversal up through
  274. document itself until null. Tests a removed elements next
  275. sibling is null.
  276. * XmlNodeListTests.cs: Tests case where enumerator is on
  277. a node that gets removed from list.
  278. * XmlTextWriterTests.cs: Keeping tests for WriteXXX after
  279. writer is closed up to date as new WriteXXX methods are written.
  280. TestDocumentStart and TestWriteEndElement.
  281. 2002-03-19 Jason Diamond <[email protected]>
  282. * XmlDocumentTests.cs: Added a test to check an element's names after
  283. loading.
  284. 2002-03-17 Kral Ferch <[email protected]>
  285. * XmlDocumentTests.cs: Tests navigation to parents since
  286. that was part of a document.Load() bug reported by Mike Kestner.
  287. * XmlTextWriterTests.cs: Tests for namespaces and prefixes.
  288. 2002-03-17 Kral Ferch <[email protected]>
  289. * XmlDocumentTests.cs: TestOuterXml.
  290. * XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
  291. and ProcessingInstruction.
  292. 2002-03-17 Kral Ferch <[email protected]>
  293. * XmlDocumentTests.cs: More LoadXml tests.
  294. * XmlTextWriterTests.cs: Test for invalid Processing Instructions.
  295. 2002-03-14 Kral Ferch <[email protected]>
  296. * XmlTextWriterTests.cs: Added tests TestCData and TestComment.
  297. 2002-03-14 Kral Ferch <[email protected]>
  298. * XmlTextWriterTests.cs: Initial checkin.
  299. 2002-03-12 Kral Ferch <[email protected]>
  300. * XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
  301. TestZeroChildren, TestOneChild, TestMultipleChildren,
  302. TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
  303. TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
  304. TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset. Made
  305. two other tests but not in use yet until RemoveAll is implemented for
  306. attributes and XmlNode.ReplaceChild is implemented. The tests are called
  307. saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.
  308. 2002-03-08 Jason Diamond <[email protected]>
  309. * XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.
  310. 2002-03-08 Jason Diamond <[email protected]>
  311. * XmlAttributeTests.cs: Test XmlAttribute child nodes.
  312. 2002-03-08 Kral Ferch <[email protected]>
  313. * XmlNodeListTests.cs: New file.
  314. * AllTests.cs: Added XmlNodeListTests.
  315. 2002/03/08 Nick Drochak <[email protected]>
  316. * System_test.build: Don't build test dll by default. Only build
  317. it when 'make test' is specified.
  318. 2002-03-06 Kral Ferch <[email protected]>
  319. * XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
  320. * XmlDocumentTests.cs: Started work on some tests for invalid data in
  321. various nodes created by the document.
  322. 2002-03-02 Kral Ferch <[email protected]>
  323. * XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
  324. TestLoadCDATA(), and TestLoadComment().
  325. 2002-03-02 Jason Diamond <[email protected]>
  326. * XmlElementTests.cs: New file.
  327. * AllTests.cs: Added XmlElementTests.
  328. 2002-03-02 Jason Diamond <[email protected]>
  329. * XmlTextReaderTests.cs: Test MoveToNextAttribute().
  330. * XmlDocumentTests.cs: Test loading document containing attributes
  331. and text nodes.
  332. 2002-03-02 Mike Kestner <[email protected]>
  333. * XmlAttributeTests.cs : New test suite for attrs.
  334. * AllTests.cs : Add the attr suite.
  335. 2002-03-02 Jason Diamond <[email protected]>
  336. * XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager
  337. is using its name table.
  338. * NameTableTests.cs: Make sure NameTable is really returning the
  339. same references.
  340. 2002-02-28 Jason Diamond <[email protected]>
  341. * XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
  342. Kral Ferch <[email protected]>.
  343. 2002-02-28 Jason Diamond <[email protected]>
  344. * XmlTextReaderTests.cs: Test for XmlException when parse fail.
  345. 2002-02-27 Martin Baulig <[email protected]>
  346. * System.XML_test.build: Build new executable RunTests.System.XML.exe
  347. which you can use to run the tests on Linux.
  348. * *.cs: Added zero-args constructors.
  349. 2002-02-26 Duncan Mak <[email protected]>
  350. * NameTableTests.cs: Test for System.Xml.NameTable.
  351. 2002-02-26 Jason Diamond <[email protected]>
  352. * XmlTextReaderTests.cs: Test for namespace declarations as
  353. attributes.
  354. * XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
  355. when creating the XmlNamespaceManager. Properly test HasNamespace.
  356. 2002-02-25 Jason Diamond <[email protected]>
  357. * XmlDocumentTests.cs: Added file.
  358. 2002-02-23 Jason Diamond <[email protected]>
  359. * XmlTextReaderTests.cs: Added tests for qualified attributes.
  360. 2002-02-23 Jason Diamond <[email protected]>
  361. * ChangeLog: Added change log to this directory.
  362. * Test.cs: Renamed to XmlTextReaderTests.cs.
  363. * XmlTextReaderTests.cs: Added tests for NamespaceURI property.
  364. * XmlNamespaceManagerTests.cs: Initial tests.