ChangeLog 16 KB

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