ChangeLog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728
  1. 2010-01-21 Sebastien Pouliot <[email protected]>
  2. * CookieContainerTest.cs: Additional test cases from Tom Philpot
  3. 2010-01-15 Jonathan Pobst <[email protected]>
  4. * HttpWebRequestTest.cs: Mark test WriteServerAborts as
  5. NotWorking. Documented on bug #312968.
  6. 2010-01-12 Sebastien Pouliot <[email protected]>
  7. * NetworkCredentialTest.cs: New. Unit tests.
  8. 2009-12-24 Sebastien Pouliot <[email protected]>
  9. * CookieContainerTest.cs: Split many tests into smaller test
  10. cases. Add test cases for DefaultPerDomainCookieLimit and
  11. DefaultCookieLimit. Remove all [Category ("NotWorking")] since
  12. everything works now.
  13. 2009-10-23 Alexandre Gomes <[email protected]>
  14. * WebClientTest.cs: Test for GetWebRequest overriding
  15. issues
  16. 2009-07-22 Gonzalo Paniagua Javier <[email protected]>
  17. * WebHeaderCollectionTest.cs: test for allowed characters in headers.
  18. 2009-07-22 Gonzalo Paniagua Javier <[email protected]>
  19. * WebHeaderCollectionTest.cs: test for 2.0 IsRestricted().
  20. 2009-07-09 Gonzalo Paniagua Javier <[email protected]>
  21. * HttpWebRequestTest.cs: use different ports for different tests since
  22. the shutdown might take a little bit and tests might conflict.
  23. 2009-07-07 Gonzalo Paniagua Javier <[email protected]>
  24. * WebClientTest.cs: if we write the 100 response, reset the output
  25. stream writer.
  26. 2009-07-06 Gert Driesen <[email protected]>
  27. * HttpWebRequestTest.cs: Enabled tests, and removed test that is now
  28. covered by two separate CanTimeout tests for request and response
  29. stream.
  30. * HttpWebResponseStreamTest.cs: Enabled tests.
  31. 2009-07-06 Gert Driesen <[email protected]>
  32. * HttpWebRequestTest.cs: Marked test notworking on 1.0 profile.
  33. 2009-07-06 Gert Driesen <[email protected]>
  34. * HttpWebRequestTest.cs: Added tests for bug #511851. Added tests
  35. for request stream. Fixed compiler warnings, and fixed code style.
  36. * HttpWebResponseTest.cs: Added tests for response stream. Fixed
  37. compiler warnings.
  38. 2009-07-06 Gonzalo Paniagua Javier <[email protected]>
  39. * HttpWebRequestTest.cs: add tests for POST + redirect and 401.
  40. 2009-06-28 Gonzalo Paniagua Javier <[email protected]>
  41. * HttpWebRequestTest.cs: sleep between reads as we do in
  42. WebClientTest.
  43. 2009-06-27 Gonzalo Paniagua Javier <[email protected]>
  44. * SocketResponder.cs: the listener might be closed right before
  45. Accept() is called and in that case we get an EINVAL.
  46. * WebClientTest.cs: now that we might send separate packets for
  47. headers and body, wait a little bit before checking socket.Available.
  48. 2009-06-26 Gonzalo Paniagua Javier <[email protected]>
  49. * HttpWebRequestTest.cs: add a bunch of tests provided by
  50. Bassan Tabbara.
  51. 2009-06-26 Robert Jordan <[email protected]>
  52. * *.cs: Upgrade to new NUnit style.
  53. 2009-06-20 Gert Driesen <[email protected]>
  54. * HttpWebRequestTest.cs: Improved and enabled test for bug #510642.
  55. 2009-06-20 Gert Driesen <[email protected]>
  56. * SocketResponder.cs: Made a little more robust.
  57. 2009-06-20 Gert Driesen <[email protected]>
  58. * HttpListener2Test.cs: Added test for bug #513849.
  59. * HttpWebRequestTest.cs: Enabled test for bug #508027. Added test for
  60. bug #513087.
  61. * WebClientTest.cs: Added test for bug #484795, for Encoding property.
  62. 2009-06-16 Andrés G. Aragoneses <[email protected]>
  63. * WebRequestTest.cs: Drop NotWorking attrib, more accurate tests.
  64. 2009-06-09 Andrés G. Aragoneses <[email protected]>
  65. * WebRequestTest.cs: Added tests for bug #323452.
  66. 2009-06-06 Gert Driesen <[email protected]>
  67. * HttpWebRequestTest.cs: Added tests for bugs #465613, #510661,
  68. #510642 and #508027.
  69. 2009-05-17 Gert Driesen <[email protected]>
  70. * CookieTest.cs: Added test for Path.
  71. * CookieContainerTest.cs: Added and improved .ctor tests.
  72. Improved tests for Capacity and MaxCookieSize. Added tests for
  73. PerDomainCapacity. Added tests for Add overloads, GetCookieHeader,
  74. GetCookies and SetCookies. Added test for bug #421827.
  75. 2009-05-02 Atsushi Enomoto <[email protected]>
  76. * CredentialCacheTest.cs : new tests for get/add/remove.
  77. Patch by Mineda Nozomi.
  78. 2009-04-21 Gonzalo Paniagua Javier <[email protected]>
  79. * DnsTest.cs: new IP for go-mono and fix AsyncResolve test.
  80. 2009-04-21 Sebastien Pouliot <[email protected]>
  81. * EndPointTest.cs: New
  82. 2009-02-08 Gert Driesen <[email protected]>
  83. * DnsTest.cs: Use Assert syntax, and spaces to tabs. Added tests
  84. for argument checks.
  85. 2009-02-08 Gert Driesen <[email protected]>
  86. * HttpWebRequestTest.cs: Added Not-Modified-Since test. Updated
  87. bug numbers.
  88. 2009-02-05 Gert Driesen <[email protected]>
  89. * HttpListener2Test.cs: Make tests quiet.
  90. * HttpWebRequestTest.cs: Added test for bug #471782.
  91. 2009-01-20 Gonzalo Paniagua Javier <[email protected]>
  92. * IPAddressTest.cs: tests for bug #467472.
  93. 2009-01-16 Gonzalo Paniagua Javier <[email protected]>
  94. * FtpWebRequestTest.cs: add directory listing test when the $HOME is
  95. not /.
  96. 2009-01-12 Gonzalo Paniagua Javier <[email protected]>
  97. * FtpWebRequestTest.cs: test deleting a file.
  98. 2008-11-18 Gonzalo Paniagua Javier <[email protected]>
  99. * HttpListener2Test.cs: make sure we dispose the listener.
  100. 2008-11-17 Gonzalo Paniagua Javier <[email protected]>
  101. * HttpListener2Test.cs: (CreateNS) set a default read/write timeout
  102. of 5s.
  103. 2008-11-13 Gonzalo Paniagua Javier <[email protected]>
  104. * FtpWebRequestTest.cs: the upload test now passes with the MS
  105. runtime. Added another test for download.
  106. 2008-11-12 Gonzalo Paniagua Javier <[email protected]>
  107. * HttpListener2Test.cs: Fixed Test7.
  108. 2008-11-03 Gonzalo Paniagua Javier <[email protected]>
  109. * FtpWebRequestTest.cs: add test for bug 333985.
  110. 2008-10-30 Gonzalo Paniagua Javier <[email protected]>
  111. * HttpWebResponseTest.cs:
  112. * SocketResponder.cs:
  113. * HttpWebRequestTest.cs: don't pretend to be a 1.1 server or the
  114. socket will stay open. Timeout for Ntlm test is 5s now.
  115. 2008-10-19 Gert Driesen <[email protected]>
  116. * HttpWebRequestTest.cs: Fixed test for bug #429200.
  117. 2008-10-18 Gert Driesen <[email protected]>
  118. * HttpWebRequestTest.cs: Added test for bug #429200.
  119. 2008-10-08 Gonzalo Paniagua Javier <[email protected]>
  120. * HttpWebRequestTest.cs: mini-test case for NTLM auth.
  121. 2008-08-06 Atsushi Enomoto <[email protected]>
  122. * IPAddressTest.cs : added test strings for bug #411920 as well as
  123. enabling some ipv4ParseOK strings.
  124. 2008-07-25 Gert Driesen <[email protected]>
  125. * HttpWebResponseTest.cs: Enabled tests.
  126. 2008-07-03 Gert Driesen <[email protected]>
  127. * HttpListener2Test.cs: Added test for multiple responses.
  128. * HttpWebResponseTest.cs: Added tests for disposed checks.
  129. 2008-04-18 Gert Driesen <[email protected]>
  130. * FileWebRequestTest.cs: Now that we have proper locking for file
  131. deletes on unix, bug #323388 applies to unix as well.
  132. 2008-04-06 Geoff Norton <[email protected]>
  133. * HttpListener2Test.cs:
  134. * HttpListenerRequestTest.cs: HttpListener Basic authenticationt test
  135. from Maciej Paszta <[email protected]>
  136. 2008-02-09 Daniel Nauck <[email protected]>
  137. * CookieContainerTest.cs: added some not working Add/Expired tests
  138. 2008-02-09 Daniel Nauck <[email protected]>
  139. * CookieTest.cs: added tests for public fields
  140. 2008-01-27 Gert Driesen <[email protected]>
  141. * IPAddressTest.cs: Remove use of deprecated Assertion. Improved
  142. existing tests.
  143. 2008-01-26 Daniel Nauck <[email protected]>
  144. * CookieTest.cs: enabled ToString () test,
  145. added Version property test
  146. 2008-01-26 Daniel Nauck <[email protected]>
  147. * CookieTest.cs: added tests for Cookie.ToString (), see bug #316017,
  148. fixed line endings
  149. 2008-01-17 Zoltan Varga <[email protected]>
  150. * HttpWebRequestTest.cs: Disable #353495 since it fails on the 2.0 profile.
  151. 2008-01-15 Atsushi Enomoto <[email protected]>
  152. * HttpWebRequestTest.cs : added test for bug #353495.
  153. 2007-12-03 Gert Driesen <[email protected]>
  154. * WebClient.cs: Added tests for argument checks.
  155. 2007-10-21 Gert Driesen <[email protected]>
  156. * WebProxyTest.cs: Remove unused fields.
  157. 2007-10-15 Gert Driesen <[email protected]>
  158. * WebRequestTest.cs: Fixed test for serialization ctor to match
  159. 1.0 profile change. Added trivial tests to argument null checks.
  160. Added test for DefaultWebProxy. Fixed line endings.
  161. 2007-09-30 Gert Driesen <[email protected]>
  162. * HttpListenerRequestTest.cs: Added test for HttpMethod.
  163. 2007-09-30 Gert Driesen <[email protected]>
  164. * HttpListenerRequestTest.cs: Added test for HasEntityBody.
  165. * HttpListener2Test.cs: Removed CWL.
  166. 2007-08-29 Atsushi Enomoto <[email protected]>
  167. * IPAddressTest.cs : added an address with scope id to parse/format
  168. test.
  169. 2007-06-28 Chris Howie <[email protected]>
  170. * ServicePointTest.cs: Add some loose tests for
  171. ServicePoint.BindIPEndPointDelegate.
  172. 2007-08-01 Rodrigo Kumpera <[email protected]>
  173. * HttpListener2Test.cs: Fixed Cookie Test
  174. 2007-07-17 Rodrigo Kumpera <[email protected]>
  175. * HttpListener2Test.cs: Tests for cookie receiving and sending, related to bug #81627
  176. 2007-07-17 Gert Driesen <[email protected]>
  177. * HttpWebRequestTest.cs: Fixed and enabled InternalServerError test.
  178. Added test for response without Content-Length.
  179. 2007-07-15 Gert Driesen <[email protected]>
  180. * HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
  181. Fixed Sync test. Fixed InternalServerError to pass on .NET 2.0, and
  182. renumbered tests. Added test for bug #81504.
  183. 2007-05-18 Gert Driesen <[email protected]>
  184. * HttpWebRequestTest.cs: Added test for exception thrown on read
  185. timeout. Added tests for bug #81624 and #81671.
  186. 2007-04-23 Marek Habersack <[email protected]>
  187. * CookieContainerTest.cs: the GetCookies test works now.
  188. 2007-04-21 Gert Driesen <[email protected]>
  189. * CookieContainerTest.cs: Removed usage of deprecated Asssertion
  190. class. Added test for bug #81421.
  191. * SocketResponder.cs: Thread-safety fixes.
  192. 2007-03-07 Vladimir Krasnov <[email protected]>
  193. * HttpListenerPrefixCollectionTest.cs, HttpListenerTest.cs: removed not
  194. supported calls for TARGET_JVM because of validation failures
  195. 2007-02-24 Gert Driesen <[email protected]>
  196. * HttpWebRequestTest.cs: Added test for bug #80944.
  197. 2007-02-08 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  198. * FileWebRequestTest.cs: Excluded not working under TARGET_JVM
  199. configuration code in GetResponse_File_DoesNotExist test.
  200. * HttpWebRequestTest.cs: Excluded not working under TARGET_JVM
  201. configuration test 'Sync'
  202. 2007-02-02 Gert Driesen <[email protected]>
  203. * SocketResponder.cs: Fixed typo. Moved to correct namespace.
  204. 2007-02-02 Gert Driesen <[email protected]>
  205. * FileWebRequestTest.cs: Separate tests that fail on Windows due to
  206. bug #80700, and ignore them on Windows.
  207. 2007-02-01 Gert Driesen <[email protected]>
  208. * WebProxyTest.cs: Added tests that cover regression introduced by
  209. previous change.
  210. 2007-01-31 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  211. * IPAddressTest.cs, WebProxyTest.cs, WebHeaderCollectionTest.cs,
  212. ServicePointManagerTest.cs, ServicePointTest.cs:
  213. Excluded not working in Grasshopper tests, under 'TARGET_JVM'
  214. directive
  215. * HttpListenerPrefixCollectionTest.cs, HttpListenerTest.cs,
  216. HttpListenerBasicIdentityTest.cs, HttpListener2Test.cs:
  217. Excluded entire test fixture, since HttpListener still not
  218. implemented in Grasshopper.
  219. * FileWebRequestTest.cs, FileWebResponseTest.cs:
  220. Excluded not working in Grasshopper tests and provided different
  221. implementation of helper methods - under 'TARGET_JVM'
  222. 2007-01-30 Atsushi Enomoto <[email protected]>
  223. * HttpWebRequestTest.cs : use correct attribute.
  224. 2007-01-29 Gert Driesen <[email protected]>
  225. * HttpWebRequestTest.cs: Added tests for case-sensitive dealing with
  226. HTTP method.
  227. * SocketResponser.cs: Utility class for tests that require a listener.
  228. 2007-01-29 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  229. * IPAddressTest.cs: Fixed missing bracket (under TARGET_JVM)
  230. 2007-01-28 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  231. * IPAddressTest.cs: Added 'Ignore' attribute for
  232. Constructor0_Address_Invalid test under TARGET_JVM directive.
  233. 2007-01-28 Gert Driesen <[email protected]>
  234. * IPAddressTest.cs: Added test for invalid addresses. Fixed 4-byte
  235. test on 2.0 profile.
  236. 2007-01-28 Gert Driesen <[email protected]>
  237. * FileWebRequestTest.cs: Reworked tests to no longer rely on TMPDIR.
  238. Added tests for ConnectionGroupName, ContentLength, ContentType,
  239. Credentials, GetRequestStream, GetResponse, Method, PreAuthenticate,
  240. Proxy, RequestUri, Timeout. Added binary serialization compatibility
  241. tests.
  242. * FileWebResponseTest.cs: Added tests for ContentLength, ContentType,
  243. GetResponseStream, Headers, ResponseUri.
  244. 2007-01-28 Gert Driesen <[email protected]>
  245. * WebHeaderCollectionTest.cs: Added tests for binary serialization
  246. compatibility.
  247. 2007-01-28 Gert Driesen <[email protected]>
  248. * WebProxyTest.cs: Move IsBypassed null check to separate test, and
  249. fixed it for 2.0 profile. Added test for binary serialization.
  250. 2007-01-25 Ilya Kharmatsky <ilyak -at- mainsoft.com>
  251. * FileWebRequestTest.cs: Workaround Grasshopper's bugs with
  252. 'Ignore' and 'NotWorking' attributes.
  253. 2007-01-11 Miguel de Icaza <[email protected]>
  254. * HttpListener2Test.cs: Put a bunch of verbs that would not be
  255. allowed.
  256. 2006-12-28 Gert Driesen <[email protected]>
  257. * IPAddressTest.cs: Added 4-byte and null address tests.
  258. 2006-11-20 Andrew Skiba <[email protected]>
  259. * WebHeaderCollectionTest.cs: fix Indexers test to compile on 2.0
  260. 2006-11-15 Gonzalo Paniagua Javier <[email protected]>
  261. * WebHeaderCollectionTest.cs: the Indexers test only compiles on 1.x
  262. 2006-11-07 Dick Porter <[email protected]>
  263. * DnsTest.cs: GetHostByAddressString5() should only throw
  264. SocketException on pre-2.0 profiles
  265. 2006-11-03 Dick Porter <[email protected]>
  266. * DnsTest.cs: Re-enable GetHostEntry
  267. 2006-10-22 Zoltan Varga <[email protected]>
  268. * DnsTest.cs: Disable GetHostEntry test as it currently fails.
  269. 2006-08-30 Gonzalo Paniagua Javier <[email protected]>
  270. * HttpListener2Test.cs: new tests for headers sent separate from body
  271. and together.
  272. 2006-08-30 Gonzalo Paniagua Javier <[email protected]>
  273. * HttpListener2Test.cs: test using StreamReader from InputStream.
  274. 2006-08-20 Miguel de Icaza <[email protected]>
  275. * HttpListener2Test.cs: Add test case for bug #79112
  276. 2006-04-03 Chris Toshok <[email protected]>
  277. * HttpWebRequestTest.cs (Missing_ContentEncoding): add test to
  278. handle missing content encoding header.
  279. 2006-03-28 Atsushi Enomoto <[email protected]>
  280. * DnsTest.cs : added test for GetHostEntry.
  281. 2006-03-28 Atsushi Enomoto <[email protected]>
  282. * IPAddressTest.cs : actually #11 in TryParse() is not working.
  283. added more tests on IsIPv6Blah properties.
  284. 2006-03-27 Atsushi Enomoto <[email protected]>
  285. * IPAddressTest.cs : added some tests for TryParse() and IPv6 related
  286. properties.
  287. 2006-02-03 Carlos Alberto Cortez <[email protected]>
  288. * FtpWebRequestTest.cs: Add a small check for Method.
  289. 2006-02-03 Atsushi Enomoto <[email protected]>
  290. * WebRequestTest.cs : FtpWebRequest is only NET_2_0.
  291. 2006-02-03 Carlos Alberto Cortez <[email protected]>
  292. * FtpWebRequestTest.cs: New file to test properties/methods
  293. that don't need any connection to work.
  294. 2005-02-03 Carlos Alberto Cortez <[email protected]>
  295. * WebRequestTest.cs: Add ftp to the Create () method (to return
  296. a FtpWebRequest instance).
  297. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  298. * HttpListenerTest.cs: disable 2 tests. We're throwing the wrong
  299. exception.
  300. 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
  301. * IPAddressTest.cs: more tests for the byte[] ctor.
  302. 2005-11-17 Gonzalo Paniagua Javier <[email protected]>
  303. * HttpListenerPrefixCollectionTest.cs:
  304. * HttpListenerTest.cs:
  305. * HttpListenerBasicIdentityTest.cs:
  306. * HttpListener2Test.cs: tests for HttpListener and related classes.
  307. 2005-11-15 Sebastien Pouliot <[email protected]>
  308. * IPAddressTest.cs: Fixed an LoopbackIPv6 test case (missing '[') that
  309. doesn't work on either MS 1.x or 2.0 (and won't work for long on Mono)
  310. 2005-09-22 Sebastien Pouliot <[email protected]>
  311. * DnsPermissionAttributeTest.cs: Removed *Choice security actions.
  312. * SocketPermissionAttributeTest.cs: Removed *Choice security actions.
  313. * WebPermissionAttributeTest.cs: Removed *Choice security actions.
  314. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  315. * HttpWebRequestTest.cs: added test for a HTTP/1.1 server returning a
  316. chunked response with out a 'last-chunk' mark.
  317. 2005-06-22 Gonzalo Paniagua Javier <[email protected]>
  318. * HttpWebRequestTest.cs: added test for the sslClientStream blocking
  319. issue.
  320. 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
  321. * IPAddressTest.cs: cleanup and added loopback IPv6 test.
  322. 2005-05-19 Sebastien Pouliot <[email protected]>
  323. * DnsCas.cs: New. CAS unit tests for Dns.
  324. * DnsTest.cs: Fixed the wrong End* method being used in AsyncResolve.
  325. * FileWebRequestCas.cs: New. CAS unit tests for FileWebRequest.
  326. * HttpWebRequestCas.cs: New. CAS unit tests for HttpWebRequest.
  327. * WebRequestTest.cs: Added tests to validate exceptions.
  328. 2005-03-31 Gonzalo Paniagua Javier <[email protected]>
  329. * HttpWebRequestTest.cs: added cookie handling test.
  330. 2005-02-01 Zoltan Varga <[email protected]>
  331. * HttpWebRequestTest.cs ServicePointManagerTest.cs ServicePointTest.cs:
  332. Mark some tests with [Caregory ("InetAccess")].
  333. 2005-01-28 Nick Drochak <[email protected]>
  334. * DnsTest.cs: Pick a URL we can most likely fail against.
  335. 2005-01-24 Nick Drochak <[email protected]>
  336. * ServicePointManagerTest.cs: Make sure we have some Service Points
  337. when we try to get one.
  338. 2005-01-20 Sebastien Pouliot <[email protected]>
  339. * ServicePointManagerTest.cs: Add a TearDown method; add setup/teardown
  340. logic to (1) record ServicePointManager.MaxServicePointIdleTime, and
  341. (2) set this to 10 milliseconds in setup. Why? Because when running the
  342. full regression tests, the default timeout of 15 minutes applied, causing
  343. the ServicePointManager to be "full" when ServicePointTest is executed.
  344. This causes ServicePointTest to generate a failure, as it isn't able to
  345. add as many ServicePoints as it expects. Worse, this failure isn't
  346. apparent if you run ServicePointTest individually; it only occurs if it
  347. executes *after* ServicePointManagerTest. Yay Heisenbugs.
  348. 2005-01-19 Sebastien Pouliot <[email protected]>
  349. * WebPermissionAttributeTest.cs: Removed a test for 1.1 as we delay
  350. the regex creation (like 2.0) so the exception is also delayed.
  351. 2005-01-18 Sebastien Pouliot <[email protected]>
  352. * IPAddressTest.cs: Some tests may not work if support for IPv6 is
  353. disabled in machine.config. Tests haven't re-worked to check for
  354. Socket.SupportsIPv6 to ignore them in this case.
  355. 2005-01-18 Gonzalo Paniagua Javier <[email protected]>
  356. * IPAddressTest.cs: this test fails with a FormatException.
  357. 2005-01-10 Nick Drochak <[email protected]>
  358. * IPAddressTest.cs: Make tests pass on Fx1.1
  359. 2005-01-10 Nick Drochak <[email protected]>
  360. * SocketPermissionAttributeTest.cs: Do not run tests on .NET where there
  361. are bugs in the framework.
  362. * WebPermissionAttributeTest.cs: Assuming these all pass on Fx2.0, so
  363. make them pass on 1.1 too.
  364. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  365. * CookieContainerTest.cs: added tests for CookieContainer.
  366. 2004-10-10 David Sheldon <[email protected]>
  367. * DnsTest.cs: Updated IP for www.go-mono.com.
  368. 2004-09-10 Sebastien Pouliot <[email protected]>
  369. * DnsPermissionAttributeTest.cs: New. Unit tests for DnsPermissionAttr.
  370. * DnsPermissionTest.cs: New. Unit tests for DnsPermission.
  371. * SocketPermissionAttributeTest.cs: New. Unit tests for
  372. SocketPermissionAttribute.
  373. * WebPermissionAttributeTest.cs: New. Unit tests for WebPermission
  374. Attribute.
  375. 2004-01-02 Nick Drochak <[email protected]>
  376. * ServicePointManagerTest.cs: Use the nunit v2 paradigm, and stop this
  377. test from outputting its debug info with WriteLines.
  378. * ServicePointTest.cs: Make sure MaxServicePoints weren't set to some
  379. other limit in another test or whatever. Suppress debug output.
  380. 2003-12-30 Nick Drochak <[email protected]>
  381. * DnsTest.cs: Update with new IP address for www.go-mono.com and make
  382. test failure output more informative. All Tests pass for me on
  383. .NET 1.1.
  384. * HttpWebRequestTest.cs: Get rid of WriteLines and use Asserts to make
  385. it a proper unit test.
  386. 2003-07-16 Peter Williams <[email protected]>
  387. * IPAddressTest.cs: #if NET_1_1 for some IPv6 tests that
  388. rely on some NET_1_1-only features.
  389. 2003-07-14 Jerome Laban <[email protected]>
  390. * IPAddressTest.cs: Added IPv6 addresses tests.
  391. 2002-09-17 Nick Drochak <[email protected]>
  392. * ServicePointManagerTest.cs: Convert Console.WriteLine() into a Fail()
  393. 2002-05-21 Lawrence Pit <[email protected]>
  394. * WebClientTest.cs: added
  395. * WebProxyTest.cs: more tests
  396. 2002-05-20 Lawrence Pit <[email protected]>
  397. * ServicePointTest.cs: added
  398. * ServicePointManagerTest.cs: added
  399. * WebProxyTest.cs: added
  400. * AllTests.cs: added the above tests
  401. * WebHeaderCollection.cs: added TestIndexers.
  402. 2002-05-19 Lawrence Pit <[email protected]>
  403. * FileWebRequestTest.cs: all the async methods tests to behave the same
  404. as in ms.net
  405. 2002-05-12 Lawrence Pit <[email protected]>
  406. * FileWebRequestTest.cs: added
  407. 2002-05-11 Lawrence Pit <[email protected]>
  408. * WebRequestTest.cs: added
  409. * WebHeaderCollectionTest.cs: added
  410. 2002-05-09 Lawrence Pit <[email protected]>
  411. * Added tests to IPAddressTest.cs
  412. * Fixed tests in CookieTest.cs, SocketPermissionsTest.cs, IPEndPointTest.cs
  413. 2002-05-05 Lawrence Pit <[email protected]>
  414. * CredentialCacheTest.cs: added
  415. * AllTests.cs: added CredentialCacheTest
  416. 2002-05-05 Lawrence Pit <[email protected]>
  417. * IPAddressTest.cs: added test for loopback
  418. 2002-04-30 Nick Drochak <[email protected]>
  419. * IPAddressTest.cs: Remove unused code to eliminate compiler warnings.
  420. 2002-04-27 Lawrence Pit <[email protected]>
  421. * CookieTest.cs: added
  422. * CookieCollectionTest.cs: added
  423. * AllTests.cs: added
  424. 2002-04-24 Nick Drochak <[email protected]>
  425. * IPAddressTest.cs: Make test conform to MS behavior. Also, if wrong
  426. exception is thrown, let eveyone know which one.
  427. 2002-04-23 Gonzalo Paniagua Javier <[email protected]>
  428. * IPAddressTest.cs: use BitConverter to set localhost, catch
  429. OverflowException in TestParseWrong() and changed some constants.
  430. 2002-04-19 Gonzalo Paniagua Javier <[email protected]>
  431. * AllTests.cs: added IPEndPointTest.
  432. * IPEndPointTest.cs: added file (author: Lawrence Pit).
  433. * IPAdressTest.cs: use Fail is expected exception are not raised.
  434. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  435. * IPAddressTest.cs: use System.BitConverter.IsLittleEndian (suggested
  436. by Paolo) instead of guessing the endianness.
  437. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  438. * ChangeLog:
  439. * AllTests.cs:
  440. * IPAddressTest.cs: added files.