ChangeLog 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. 2004-05-26 Sebastien Pouliot <[email protected]>
  2. * BufferedStreamTest.cs: Added new unit tests for exceptions.
  3. 2003-05-26 Atsushi Enomoto <[email protected]>
  4. * FileInfoTest.cs : incorrect \ fix. added more cases.
  5. 2003-05-26 Atsushi Enomoto <[email protected]>
  6. * FileInfoTest.cs : added tests for ToString().
  7. 2004-05-25 Gonzalo Paniagua Javier <[email protected]>
  8. * DirectoryTest.cs: added test from bug 58875.
  9. 2004-05-24 Sebastien Pouliot <[email protected]>
  10. * MemoryStreamTest.cs: Test that we zeroize old data when we manipulate
  11. the length of the stream. Verify that we throw the same exceptions as
  12. MS fx.
  13. * StreamReaderTest.cs: New tests for integer overflow and null handling
  14. * StreamWriterTest.cs: New tests for integer overflow, disposed
  15. exceptions and null handling.
  16. * StringWriterTest.cs: New tests for integer overflow and disposed
  17. exceptions.
  18. 2004-05-20 Sebastien Pouliot <[email protected]>
  19. * MemoryStream.cs: SetUp is now public (required for new nunit).
  20. 2004-05-20 Jackson Harper <[email protected]>
  21. * DirectoryInfoTest.cs: Add test for CreateSubdirectory.
  22. 2004-04-12 David Sheldon <[email protected]>
  23. * BinaryReaderTest.cs: Changed series of bytes in
  24. ReadDecimal to be a cleaner representation of a real
  25. decimal, as was not a technically correct decimal.
  26. 2004-04-01 Lluis Sanchez Gual <[email protected]>
  27. * BufferedStreamTest.cs: Added test for Position.
  28. 2003-04-03 Atsushi Enomoto <[email protected]>
  29. * PathTest.cs : Added more patterns on TestChangeExtension().
  30. 2004-02-16 Jackson Harper <[email protected]>
  31. * FileTest.cs: We do not need to convert to local time because we
  32. are getting creation time, not utc time.
  33. 2004-01-31 David Sheldon <[email protected]>
  34. * FileSystemInfoTest.cs: Added code to skip CreationTime tests
  35. on Unix, as it doesn't support them.
  36. 2004-01-31 David Sheldon <[email protected]>
  37. * FileSystemInfoTest.cs: Change tests for default times to
  38. be TimeZone agnostic by conversion to universal time before
  39. testing.
  40. 2004-01-22 David Sheldon <[email protected]>
  41. * FileStreamTest.cs: CtorArgumentOutOfRangeException4, we were
  42. testing for this ecveption, but the other parameters were also
  43. invalid. Made them correct. We don't care that MS throw
  44. exceptions in a different order do we?
  45. 2004-01-22 David Sheldon <[email protected]>
  46. * DirectoryTest.cs: Added Ignore to the CreationTime tests,
  47. as Unix filesystems don't support them. Should we only ignore
  48. them on Unix?
  49. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  50. * PathTest.cs: added some unix-only tests for GetFullPath.
  51. 2004-01-20 Gonzalo Paniagua Javier <[email protected]>
  52. * PathTest.cs: a couple of tests for bugs.
  53. 2003-01-06 Atsushi Enomoto <[email protected]>
  54. * DirectoryTest.cs : remoed incorrect args.
  55. 2003-12-25 Atsushi Enomoto <[email protected]>
  56. * PathTest.cs : On Unix, "Z:" can be valid local file.
  57. And cosmetic character case fix.
  58. 2003-12-19 Nick Drochak <[email protected]>
  59. * PathTest.cs: Make tests pass on .NET 1.1. Probably still
  60. need to handle different directory and volume separators for
  61. other OS's.
  62. 2003-12-17 Atsushi Enomoto <[email protected]>
  63. * PathTest.cs :
  64. Added more GetPathRoot and GetFullPath tests for windows.
  65. Fixed incorrectly specified arguments in the previous patch.
  66. 2003-12-17 Atsushi Enomoto <[email protected]>
  67. * PathTest.cs : Added more tests for IsPathRooted, HasExtension
  68. and GetExtension.
  69. 2003-12-17 Atsushi Enomoto <[email protected]>
  70. * DirectoryTests.cs : Added some SetCurrentDirectory tests.
  71. 2003-12-17 Nick Drochak <[email protected]>
  72. * FileStreamTest.cs: Ok, it wasn't a 1.1 thing. The test simply would
  73. fail randomly because location 12 was sometimes a file handle.
  74. 2003-12-16 Nick Drochak <[email protected]>
  75. * FileStreamTest.cs: Exception not thrown in .NET 1.1.
  76. And Happy Birthday to Me!
  77. 2003-11-15 Gonzalo Paniagua Javier <[email protected]>
  78. * StringReaderTest.cs: added test from bug #51020.
  79. 2003-10-21 Nick Drochak <[email protected]>
  80. * BufferedSTreamTest.cs: Make TearDown smarter about possible
  81. null member value.
  82. 2003-07-10 Gonzalo Paniagua Javier <[email protected]>
  83. * MemoryStreamTest.cs: added a couple of tests for WriteByte.
  84. 2003-06-30 Zoltan Varga <[email protected]>
  85. * FileStreamTest.cs: New tests for flushing when disposed and zero
  86. buffer size.
  87. 2003-06-18 Nick Drochak <[email protected]>
  88. * FileSystemInfoTest.cs: Simplify a bit.
  89. 2003-06-18 Nick Drochak <[email protected]>
  90. * FileSystemInfoTest.cs: Works on .NET 1.1 now. If these values are
  91. different on 1.0 then we need to wrap with a #if NET_1_1.
  92. 2003-06-12 Zoltan Varga <[email protected]>
  93. * FileStreamTest.cs: New tests for recently fixed bugs.
  94. 2003-06-08 Ville Palo <[email protected]>
  95. * BinaryWriterTest.cs:
  96. * BinaryReaderTest.cs:
  97. * DirectoryTest.cs:
  98. * FileTest.cs: now works with ms.net, clean ups, nunit2, ...
  99. 2003-05-29 Nick Drochak <[email protected]>
  100. * ms_run_test.sh: added .NET verion of helper script
  101. * BinaryReaderTest.cs: fix my oversight
  102. * BinaryWriterTest.cs: cleanups
  103. * BufferedStreamTest.cs: cleanups
  104. * DirectoryInfoTest.cs: cleanups
  105. * DirectoryTest.cs: cleanups
  106. * FileStreamTest.cs: cleanups
  107. 2003-05-29 Nick Drochak <[email protected]>
  108. * BinaryReaderTest.cs:
  109. * BinaryWriterTest.cs:
  110. * DirectoryInfoTest.cs:
  111. * DirectoryTest.cs:
  112. * FileInfoTest.cs:
  113. * FileStreamTest.cs:
  114. * FileSystemInfoTest.cs: Stop throwing exceptions on windows, and sub-
  115. class from Assertion for brevity.
  116. 2003-05-22 Ben Maurer <[email protected]>
  117. StringWriterTest.cs: Added tests from bug #43431 (by Ian MacLean).
  118. 2003-05-22 Nick Drochak <[email protected]>
  119. * StreamReaderTest.cs:
  120. * StreamWriterTest.cs: Forgot nunit v2 TestFixture attribute
  121. 2003-05-22 Zoltan Varga <[email protected]>
  122. * FileTest.cs: Added tests for moving directories.
  123. 2003-05-20 Nick Drochak <[email protected]>
  124. * FileTest.cs:
  125. * StreamReaderTest.cs:
  126. * StreamWriterTest.cs: Workaround for process holding on to directory
  127. that prevented cleanup and deletion.
  128. 2003-05-19 Ville Palo <[email protected]>
  129. * DirectoryTest.cs: Added tests for GetDirectories() and
  130. GetFiles ()
  131. 2003-05-18 Ben Maurer <[email protected]>
  132. * *.cs Cleaned up tests to work around bug that prevented
  133. System.IO from seeing directories starting with '.'
  134. 2003-05-15 Ville Palo <[email protected]>
  135. * FileStreamTest.cs: more cleaning
  136. 2003-05-15 Ville Palo <[email protected]>
  137. * StreamReaderTest.cs:
  138. * StreamWriterTest.cs: now use temp-dir
  139. 2003-05-15 Ville Palo <[email protected]>
  140. * BinaryReaderTest.cs:
  141. * BinaryWriterTest.cs:
  142. * BufferedStreamTest.cs:
  143. * DirectoryInfoTest.cs:
  144. * DirectoryTest.cs:
  145. * FileInfoTest.cs:
  146. * FileSystemInfoTest.cs: clean up, now use temp-dir
  147. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  148. * PathTest.cs: added test for GetFullPath (".") and ".."
  149. 2003-05-13 Ville Palo <[email protected]>
  150. * FileStreamTest.cs:
  151. * FileTest.cs: Clean up. Now use temp directory. also some nunit2
  152. changes
  153. 2003-05-98 Ville Palo <[email protected]>
  154. * FileSystemInfoTest.cs; new file
  155. 2003-05-07 Ben Maurer <[email protected]>
  156. * PathTest.cs
  157. Even more GetFullPath () tests. Includes UNC tests.
  158. 2003-05-06 Ville Palo <[email protected]>
  159. * DirectoryInfoTest.cs: Removed OS-specific test
  160. 2003-05-06 Ville Palo <[email protected]>
  161. * DirectoryTest: Fixed Utc errors
  162. * FileTest: Fixes Utc errors. Now these tests works in other
  163. timezones too.
  164. 2003-05-04 Ben Maurer <[email protected]>
  165. * PathTest.cs
  166. Added new tests for GetFullPath () that include a path with
  167. . and ..
  168. 2003-05-05 Ville Palo <[email protected]>
  169. * DirectoryInfoTest.cs: new file.
  170. 2003-05-04 Ville Palo <[email protected]>
  171. * FileInfoTest.cs: new file.
  172. * FileStreamTest.cs: new tests for Seek ()
  173. 2003-04-29 Ville Palo <[email protected]>
  174. * FileStreamTest.cs: Tests for Flush() adn one one more test for
  175. Ctor exceptions
  176. 2003-04-25 Ville Palo <[email protected]>
  177. * FileTest.cs: more tests..
  178. 2003-04-24 Ville Palo <[email protected]>
  179. * FileTest.cs: Fixed tests and added some.
  180. 2003-04-22 Ville Palo <[email protected]>
  181. * FileTest.cs: More tests.
  182. 2003-04-21 Ville Palo <[email protected]>
  183. * DirectoryTest.cs: lots of new tests. and some fixes and clean ups
  184. 2003-04-20 Miguel de Icaza <[email protected]>
  185. * StringReaderTest.cs: Update test to include read-past-the-end
  186. 2003-04-20 Ville Palo <[email protected]>
  187. * DirectoryTest.cs: new file
  188. 2003-04-16 Ville Palo <[email protected]>
  189. * BufferedStreamTest.cs: new file
  190. 2003-04-14 Ville Palo <[email protected]>
  191. * BinaryWriterTest.cs: Added new file.
  192. 2003-04-13 Ville Palo <[email protected]>
  193. * BinaryReaderTest.cs: Added lots of tests. Somehow I missed that
  194. there are already testcases for BinaryStreamReader :/
  195. 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
  196. * FileStreamTest.cs: added more tests by Gert Driesen
  197. ([email protected]).
  198. 2003-04-12 Ville Palo <[email protected]>
  199. * FileStreamTest.cs More tests.
  200. 2003-04-11 Ville Palo <[email protected]>
  201. * FileStreamTest.cs: File Added and some tests in it.
  202. 2003-04-11 Ville Palo <[email protected]>
  203. * StringReaderTest.cs: Tests for close and some exceptions
  204. 2003-04-11 Ville Palo <[email protected]>
  205. * StringWriterTest.cs: Added some Exception tests.
  206. 2003-04-10 Ville Palo <[email protected]>
  207. * StringWriterTest.cs: Added couple of tests.
  208. 2003-04-05 Nick Drochak <[email protected]>
  209. * PathTest.cs: Use nunit2 convention for exception test.
  210. 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
  211. * StreamReaderTest.cs: added test for exception when the nase stream is
  212. closed. Make the reader.CurrentEncoding test work.
  213. 2003-03-05 Dick Porter <[email protected]>
  214. * MemoryStreamTest.cs: Some more tests
  215. 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
  216. * MemoryStreamTest.cs: some nunit2 love. Added a bunch of new tests.
  217. 2003-02-05 Nick Drochak <[email protected]>
  218. * FileTest.cs: Have setup remove files before testing as well in case
  219. tests were interrupted before TearDown could be called in a previous
  220. run. Also test for specific exception in TestGetCreationTime ().
  221. 2003-01-28 Zoltan Varga <[email protected]>
  222. * FileTest.cs: Added tests for GetCreationTime.
  223. 2002-12-21 Nick Drochak <[email protected]>
  224. * all: make tests build and run under nunit2
  225. 2002-09-24 Gonzalo Paniagua Javier <[email protected]>
  226. * PathTest.cs: added test for null argument in IsPathRooted.
  227. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  228. * BinaryReaderTest.cs: added more tests.
  229. Patch from Eduardo García Cebollero ([email protected]).
  230. 2002-09-19 Nick Drochak <[email protected]>
  231. * StreamReaderTest.cs: Pinpoint error closing streams
  232. 2002-09-10 Gonzalo Paniagua Javier <[email protected]>
  233. * FileTest.cs: don't leave AFile.txt open.
  234. 2002-09-08 Nick Drochak <[email protected]>
  235. * PathTest.cs (TestCombine): XP puts it's system root in WINDOWS not
  236. WINNT.
  237. 2002-09-04 Gonzalo Paniagua Javier <[email protected]>
  238. * PathTest.cs: some fixes to make it work also on unix.
  239. 2002-08-30 Nick Drochak <[email protected]>
  240. * PathTest.cs (TestGetPathRoot): Don't assume current directory will
  241. be on the C: drive (mine wasn't).
  242. 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
  243. * PathTest.cs: improved.
  244. 2002-08-26 Nick Drochak <[email protected]>
  245. * BinaryReaderTest.cs: Closing the stream twice doesn not throw any
  246. exceptions on .NET.
  247. 2002-08-17 Eduardo Garcia Cebollero <[email protected]>
  248. * AllTests.cs: added BinaryReaderTest.Suite.
  249. * BinaryReaderTest.cs: New file.
  250. 2002-06-12 Nick Drochak <[email protected]>
  251. * StringReaderTest.cs: Regression test for a bug that we had were
  252. ReadLine() was not returning null when the string ended with newline.
  253. 2002-05-15 Nick Drochak <[email protected]>
  254. * StreamReaderTest.cs:
  255. * StreamWriterTest.cs:
  256. Make sure invalid file name has invalid characters in it. These are
  257. platform dependant.
  258. 2002-05-14 Nick Drochak <[email protected]>
  259. * FileTest.cs: Delete temporary files after each test method; Catch
  260. unexpected exceptions and report them; Make some Assert messages
  261. unique; Make sure temp files exist before trying Move and Delete, etc.
  262. 2002-05-13 Mike Gray <[email protected]>
  263. * FileTest.cs: Adding better tests for File.Delete, File.Move
  264. 2002-05-12 Mike Gray <[email protected]>
  265. * FileTest.cs: Adding better tests for File.Exists, File.Create,
  266. and File.Copy
  267. 2002-05-12 Nick Drochak <[email protected]>
  268. * StringTest.cs: Add a couple more tests.
  269. * PathTest.cs: Make tests work a bit better on W32 and Linux.
  270. 2002/05/10 Nick Drochak <[email protected]>
  271. * StreamWriterTest.cs: Use "resources" directory and use OS friendly
  272. directory separator characters. This makes the tests run correctly
  273. against MS.NET, but not yet in mono on Linux.
  274. 2002/05/08 Nick Drochak <[email protected]>
  275. * FileTest.cs: Use "resources" directory and use OS friendly
  276. directory separator characters. This makes the tests run correctly
  277. against MS.NET, but not yet in mono on Linux.
  278. 2002-05-08 Nick Drochak <[email protected]>
  279. * StreamWriter.cs: Wrap a try-catch around block of code to find out
  280. what exception is being thrown when it shouldn't.
  281. 2002-05-07 Nick Drochak <[email protected]>
  282. * FileTest.cs: Added TestOpen() from Mike Gray.
  283. * AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
  284. as well.
  285. 2002-05-05 Nick Drochak <[email protected]>
  286. * StreamReaderTest.cs: Change location of sample file. In some places,
  287. use memory stream instead of file stream to eliminate reliance on file
  288. io for now. That area is still a bit immature. Added a bunch of
  289. markers to tell where errors were occuring.
  290. * resources: New directory to hold files open/read, etc. by unit
  291. tests.
  292. 2002-05-01 Nick Drochak <[email protected]>
  293. * StreamReaderTest.cs:
  294. * StreamWriterTest.cs: Catch and display exception info where it wasn't
  295. being caught before.
  296. 2002-03-02 Jason Diamond <[email protected]>
  297. * StringReader.cs: Added test for peeking and reading at the end of
  298. a string.
  299. 2002-02-28 Nick Drochak <[email protected]>
  300. * MemoryStreamTest.cs
  301. * StreamWriterTest.cs
  302. * StringReaderTest.cs: Fix test bugs found by running against mscorlib.
  303. AssertEquals() requires the expected and atual values to be the same
  304. type if they are to be considered equal.
  305. 2002-02-05 Duncan Mak <[email protected]>
  306. * FileTest.cs: Added to CVS. However, this portion of the code
  307. can't be tested right now.
  308. 2002-01-20 Nick Drochak <[email protected]>
  309. * AllTests.cs: removed duplicate MemoryStream test
  310. * MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
  311. tests. These were throwing exceptions that NUnit wasn't catching. I
  312. don't think it used to behave this way before .NET.1.0.
  313. 2003-05-04 Ben Maurer <[email protected]>
  314. * Path.cs
  315. (CanonicalizePath) Added optimizations per Miguel's requests.