ChangeLog 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. 2006-04-03 Chris Toshok <[email protected]>
  2. * HttpWebRequestTest.cs (Missing_ContentEncoding): add test to
  3. handle missing content encoding header.
  4. 2006-03-28 Atsushi Enomoto <[email protected]>
  5. * DnsTest.cs : added test for GetHostEntry.
  6. 2006-03-28 Atsushi Enomoto <[email protected]>
  7. * IPAddressTest.cs : actually #11 in TryParse() is not working.
  8. added more tests on IsIPv6Blah properties.
  9. 2006-03-27 Atsushi Enomoto <[email protected]>
  10. * IPAddressTest.cs : added some tests for TryParse() and IPv6 related
  11. properties.
  12. 2006-02-03 Carlos Alberto Cortez <[email protected]>
  13. * FtpWebRequestTest.cs: Add a small check for Method.
  14. 2006-02-03 Atsushi Enomoto <[email protected]>
  15. * WebRequestTest.cs : FtpWebRequest is only NET_2_0.
  16. 2006-02-03 Carlos Alberto Cortez <[email protected]>
  17. * FtpWebRequestTest.cs: New file to test properties/methods
  18. that don't need any connection to work.
  19. 2005-02-03 Carlos Alberto Cortez <[email protected]>
  20. * WebRequestTest.cs: Add ftp to the Create () method (to return
  21. a FtpWebRequest instance).
  22. 2005-11-28 Gonzalo Paniagua Javier <[email protected]>
  23. * HttpListenerTest.cs: disable 2 tests. We're throwing the wrong
  24. exception.
  25. 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
  26. * IPAddressTest.cs: more tests for the byte[] ctor.
  27. 2005-11-17 Gonzalo Paniagua Javier <[email protected]>
  28. * HttpListenerPrefixCollectionTest.cs:
  29. * HttpListenerTest.cs:
  30. * HttpListenerBasicIdentityTest.cs:
  31. * HttpListener2Test.cs: tests for HttpListener and related classes.
  32. 2005-11-15 Sebastien Pouliot <[email protected]>
  33. * IPAddressTest.cs: Fixed an LoopbackIPv6 test case (missing '[') that
  34. doesn't work on either MS 1.x or 2.0 (and won't work for long on Mono)
  35. 2005-09-22 Sebastien Pouliot <[email protected]>
  36. * DnsPermissionAttributeTest.cs: Removed *Choice security actions.
  37. * SocketPermissionAttributeTest.cs: Removed *Choice security actions.
  38. * WebPermissionAttributeTest.cs: Removed *Choice security actions.
  39. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  40. * HttpWebRequestTest.cs: added test for a HTTP/1.1 server returning a
  41. chunked response with out a 'last-chunk' mark.
  42. 2005-06-22 Gonzalo Paniagua Javier <[email protected]>
  43. * HttpWebRequestTest.cs: added test for the sslClientStream blocking
  44. issue.
  45. 2005-06-03 Gonzalo Paniagua Javier <[email protected]>
  46. * IPAddressTest.cs: cleanup and added loopback IPv6 test.
  47. 2005-05-19 Sebastien Pouliot <[email protected]>
  48. * DnsCas.cs: New. CAS unit tests for Dns.
  49. * DnsTest.cs: Fixed the wrong End* method being used in AsyncResolve.
  50. * FileWebRequestCas.cs: New. CAS unit tests for FileWebRequest.
  51. * HttpWebRequestCas.cs: New. CAS unit tests for HttpWebRequest.
  52. * WebRequestTest.cs: Added tests to validate exceptions.
  53. 2005-03-31 Gonzalo Paniagua Javier <[email protected]>
  54. * HttpWebRequestTest.cs: added cookie handling test.
  55. 2005-02-01 Zoltan Varga <[email protected]>
  56. * HttpWebRequestTest.cs ServicePointManagerTest.cs ServicePointTest.cs:
  57. Mark some tests with [Caregory ("InetAccess")].
  58. 2005-01-28 Nick Drochak <[email protected]>
  59. * DnsTest.cs: Pick a URL we can most likely fail against.
  60. 2005-01-24 Nick Drochak <[email protected]>
  61. * ServicePointManagerTest.cs: Make sure we have some Service Points
  62. when we try to get one.
  63. 2005-01-20 Sebastien Pouliot <[email protected]>
  64. * ServicePointManagerTest.cs: Add a TearDown method; add setup/teardown
  65. logic to (1) record ServicePointManager.MaxServicePointIdleTime, and
  66. (2) set this to 10 milliseconds in setup. Why? Because when running the
  67. full regression tests, the default timeout of 15 minutes applied, causing
  68. the ServicePointManager to be "full" when ServicePointTest is executed.
  69. This causes ServicePointTest to generate a failure, as it isn't able to
  70. add as many ServicePoints as it expects. Worse, this failure isn't
  71. apparent if you run ServicePointTest individually; it only occurs if it
  72. executes *after* ServicePointManagerTest. Yay Heisenbugs.
  73. 2005-01-19 Sebastien Pouliot <[email protected]>
  74. * WebPermissionAttributeTest.cs: Removed a test for 1.1 as we delay
  75. the regex creation (like 2.0) so the exception is also delayed.
  76. 2005-01-18 Sebastien Pouliot <[email protected]>
  77. * IPAddressTest.cs: Some tests may not work if support for IPv6 is
  78. disabled in machine.config. Tests haven't re-worked to check for
  79. Socket.SupportsIPv6 to ignore them in this case.
  80. 2005-01-18 Gonzalo Paniagua Javier <[email protected]>
  81. * IPAddressTest.cs: this test fails with a FormatException.
  82. 2005-01-10 Nick Drochak <[email protected]>
  83. * IPAddressTest.cs: Make tests pass on Fx1.1
  84. 2005-01-10 Nick Drochak <[email protected]>
  85. * SocketPermissionAttributeTest.cs: Do not run tests on .NET where there
  86. are bugs in the framework.
  87. * WebPermissionAttributeTest.cs: Assuming these all pass on Fx2.0, so
  88. make them pass on 1.1 too.
  89. 2004-12-01 Gonzalo Paniagua Javier <[email protected]>
  90. * CookieContainerTest.cs: added tests for CookieContainer.
  91. 2004-10-10 David Sheldon <[email protected]>
  92. * DnsTest.cs: Updated IP for www.go-mono.com.
  93. 2004-09-10 Sebastien Pouliot <[email protected]>
  94. * DnsPermissionAttributeTest.cs: New. Unit tests for DnsPermissionAttr.
  95. * DnsPermissionTest.cs: New. Unit tests for DnsPermission.
  96. * SocketPermissionAttributeTest.cs: New. Unit tests for
  97. SocketPermissionAttribute.
  98. * WebPermissionAttributeTest.cs: New. Unit tests for WebPermission
  99. Attribute.
  100. 2004-01-02 Nick Drochak <[email protected]>
  101. * ServicePointManagerTest.cs: Use the nunit v2 paradigm, and stop this
  102. test from outputting its debug info with WriteLines.
  103. * ServicePointTest.cs: Make sure MaxServicePoints weren't set to some
  104. other limit in another test or whatever. Suppress debug output.
  105. 2003-12-30 Nick Drochak <[email protected]>
  106. * DnsTest.cs: Update with new IP address for www.go-mono.com and make
  107. test failure output more informative. All Tests pass for me on
  108. .NET 1.1.
  109. * HttpWebRequestTest.cs: Get rid of WriteLines and use Asserts to make
  110. it a proper unit test.
  111. 2003-07-16 Peter Williams <[email protected]>
  112. * IPAddressTest.cs: #if NET_1_1 for some IPv6 tests that
  113. rely on some NET_1_1-only features.
  114. 2003-07-14 Jerome Laban <[email protected]>
  115. * IPAddressTest.cs: Added IPv6 addresses tests.
  116. 2002-09-17 Nick Drochak <[email protected]>
  117. * ServicePointManagerTest.cs: Convert Console.WriteLine() into a Fail()
  118. 2002-05-21 Lawrence Pit <[email protected]>
  119. * WebClientTest.cs: added
  120. * WebProxyTest.cs: more tests
  121. 2002-05-20 Lawrence Pit <[email protected]>
  122. * ServicePointTest.cs: added
  123. * ServicePointManagerTest.cs: added
  124. * WebProxyTest.cs: added
  125. * AllTests.cs: added the above tests
  126. * WebHeaderCollection.cs: added TestIndexers.
  127. 2002-05-19 Lawrence Pit <[email protected]>
  128. * FileWebRequestTest.cs: all the async methods tests to behave the same
  129. as in ms.net
  130. 2002-05-12 Lawrence Pit <[email protected]>
  131. * FileWebRequestTest.cs: added
  132. 2002-05-11 Lawrence Pit <[email protected]>
  133. * WebRequestTest.cs: added
  134. * WebHeaderCollectionTest.cs: added
  135. 2002-05-09 Lawrence Pit <[email protected]>
  136. * Added tests to IPAddressTest.cs
  137. * Fixed tests in CookieTest.cs, SocketPermissionsTest.cs, IPEndPointTest.cs
  138. 2002-05-05 Lawrence Pit <[email protected]>
  139. * CredentialCacheTest.cs: added
  140. * AllTests.cs: added CredentialCacheTest
  141. 2002-05-05 Lawrence Pit <[email protected]>
  142. * IPAddressTest.cs: added test for loopback
  143. 2002-04-30 Nick Drochak <[email protected]>
  144. * IPAddressTest.cs: Remove unused code to eliminate compiler warnings.
  145. 2002-04-27 Lawrence Pit <[email protected]>
  146. * CookieTest.cs: added
  147. * CookieCollectionTest.cs: added
  148. * AllTests.cs: added
  149. 2002-04-24 Nick Drochak <[email protected]>
  150. * IPAddressTest.cs: Make test conform to MS behavior. Also, if wrong
  151. exception is thrown, let eveyone know which one.
  152. 2002-04-23 Gonzalo Paniagua Javier <[email protected]>
  153. * IPAddressTest.cs: use BitConverter to set localhost, catch
  154. OverflowException in TestParseWrong() and changed some constants.
  155. 2002-04-19 Gonzalo Paniagua Javier <[email protected]>
  156. * AllTests.cs: added IPEndPointTest.
  157. * IPEndPointTest.cs: added file (author: Lawrence Pit).
  158. * IPAdressTest.cs: use Fail is expected exception are not raised.
  159. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  160. * IPAddressTest.cs: use System.BitConverter.IsLittleEndian (suggested
  161. by Paolo) instead of guessing the endianness.
  162. 2002-04-15 Gonzalo Paniagua Javier <[email protected]>
  163. * ChangeLog:
  164. * AllTests.cs:
  165. * IPAddressTest.cs: added files.