ChangeLog 14 KB

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