2
0

ChangeLog 7.2 KB

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