ChangeLog 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. 2006-09-04 Igor Zelmanovich <[email protected]>
  2. * HttpUtilityTest.cs: new test added.
  3. 2006-08-23 Gonzalo Paniagua Javier <[email protected]>
  4. * HttpWriter.cs: call WriteString instead of Write. Fixes the test.
  5. 2006-07-10 Andrew Skiba <[email protected]>
  6. * StaticSiteMapProviderTest.cs: run 3 tests in web context,
  7. so they don't fail on HttpContext.Current == null
  8. 2006-07-06 Andrew Skiba <[email protected]>
  9. * HttpRequestTest: add a test
  10. 2006-07-05 Andrew Skiba <[email protected]>
  11. * HttpRequestTest: add MapPath tests
  12. 2006-06-21 Sebastien Pouliot <[email protected]>
  13. * HttpWriter.cs: Fix test fixture not to inherit from
  14. AspNetHostingMinimal which limits the test execution when the CAS
  15. category isn't excluded.
  16. 2006-06-05 Juraj Skripsky <[email protected]>
  17. * HttpRequestTest.cs: add test case to verify that the correct
  18. encoding is used during url-decoding of the query string.
  19. 2006-05-17 Kazuki Oikawa <[email protected]>
  20. * HttpUtilityTest.cs: added tests for HttpUtility.ParseQueryString.
  21. 2006-04-20 Andrew Skiba <[email protected]>
  22. * SiteMapNodeTest.cs: new tests for null reference exceptions in SiteMapNode
  23. 2006-04-10 Gonzalo Paniagua Javier <[email protected]>
  24. * HttpUtilityTest.cs: new tests. Patch by Vladimir Krasnov.
  25. 2006-04-05 Andrew Skiba <[email protected]>
  26. * HttpUtilityTest.cs: test UrlEncode and UrlEncodeUnicode for all
  27. values from char.MinValue to char.MaxValue according to reference
  28. implementation.
  29. 2006-03-27 Gonzalo Paniagua Javier <[email protected]>
  30. * HttpUtilityTest.cs: test from bug #77931.
  31. 2006-03-23 Gonzalo Paniagua Javier <[email protected]>
  32. * HttpResponseTest.cs: added tests for CacheControl that set it to null
  33. and string.Empty.
  34. 2006-03-10 Chris Toshok <[email protected]>
  35. * StaticSiteMapProviderTest.cs: new tests.
  36. * SiteMapProviderTest.cs: new tests.
  37. 2006-01-30 Gonzalo Paniagua Javier <[email protected]>
  38. * VirtualPathUtilityTest.cs: added new tests.
  39. 2005-12-08 Gonzalo Paniagua Javier <[email protected]>
  40. * HttpRequestTest.cs: ignore test.
  41. 2005-12-06 Gonzalo Paniagua Javier <[email protected]>
  42. * HttpCookieTest.cs: test for setting the Secure property.
  43. 2005-11-07 Jason Diamond <[email protected]>
  44. * HttpRequestTest.cs: Added new tests.
  45. 2005-11-01 Chris Toshok <[email protected]>
  46. * VirtualPathUtilityTest.cs: new tests.
  47. 2005-10-07 Gonzalo Paniagua Javier <[email protected]>
  48. * HttpResponseCas.cs:
  49. * HttpRequestCas.cs: now that filters are implemented, remove the catch
  50. for NotImplementedException.
  51. 2005-09-29 Sebastien Pouliot <[email protected]>
  52. * HttpBrowserCapabilitiesCas.cs: Fixed tests case to work with both
  53. values returned by Mono and MS runtimes.
  54. * HttpContextCas.cs: Ignore the Application_Deny_UnmanagedCode test
  55. case. This check was removed in 2.0 and seems to be inconsistent in
  56. previous versions (i.e. depends on the execution order which triggers
  57. the initialization of the HttpRuntime).
  58. 2005-09-23 Sebastien Pouliot <[email protected]>
  59. * HttpContextCas.cs: Mono throws ArgumentNullException for RewritePath
  60. methods while MS throws NullReferenceException.
  61. 2005-09-22 Sebastien Pouliot <[email protected]>
  62. * HttpCachePolicyCas.cs: SetDiskCacheable method was removed in 2.0 RC
  63. 2005-09-21 Sebastien Pouliot <[email protected]>
  64. * HttpRequestTest.cs: Fixed test cases so they now execute without
  65. errors on MS 1.1 SP1, 2.0 RC and Mono (default profile).
  66. 2005-09-14 Sebastien Pouliot <[email protected]>
  67. * HttpWorkerRequestTest.cs: Add test cases for default values of new
  68. 2.0 APIs.
  69. 2005-09-13 Sebastien Pouliot <[email protected]>
  70. * HttpApplicationCas.cs: New. CAS unit tests.
  71. * HttpApplicationStateCas.cs: New. CAS unit tests.
  72. * HttpBrowserCapabilitiesCas.cs: New. CAS unit tests.
  73. * HttpCachePolicyCas.cs: New. CAS unit tests.
  74. * HttpCacheVaryByHeadersCas.cs: New. CAS unit tests.
  75. * HttpCacheVaryByParamsCas.cs: New. CAS unit tests.
  76. * HttpClientCertificateCas.cs: New. CAS unit tests.
  77. * HttpCompileExceptionCas.cs: New. CAS unit tests.
  78. * HttpContextCas.cs: Add method/propertie CAS tests cases.
  79. * HttpCookieCas.cs: New. CAS unit tests.
  80. * HttpCookieCollectionCas.cs: New. CAS unit tests.
  81. * HttpExceptionCas.cs: New. CAS unit tests.
  82. * HttpFileCollectionCas.cs: New. CAS unit tests.
  83. * HttpModuleCollectionCas.cs: New. CAS unit tests.
  84. * HttpParseExceptionCas.cs: New. CAS unit tests.
  85. * HttpRequestCas.cs: New. CAS unit tests.
  86. * HttpRequestValidationExceptionCas.cs: New. CAS unit tests.
  87. * HttpResponseCas.cs: New. CAS unit tests.
  88. * HttpRuntimeCas.cs: New. CAS unit tests.
  89. * HttpServerUtilityCas.cs: New. CAS unit tests.
  90. * HttpStaticObjectsCollectionCas.cs: New. CAS unit tests.
  91. * HttpUnhandledExceptionCas.cs: New. CAS unit tests.
  92. * HttpUtilityCas.cs: New. CAS unit tests.
  93. * HttpWorkerRequestCas.cs: New. CAS unit tests.
  94. * HttpWriterCas.cs: New. CAS unit tests.
  95. * ProcessInfoCas.cs: New. CAS unit tests.
  96. * ProcessModelInfoCas.cs: New. CAS unit tests.
  97. * TraceContextCas.cs: New. CAS unit tests.
  98. 2005-09-01 Sebastien Pouliot <[email protected]>
  99. * HttpContextCas.cs: New. CAS unit tests for SkipAuthorization and
  100. User property setters.
  101. 2005-08-25 Gonzalo Paniagua Javier <[email protected]>
  102. * HttpRequestTest.cs: test for negative content length.
  103. 2005-08-25 Sebastien Pouliot <[email protected]>
  104. * HttpClientCertificateTest.cs: Most of the test throws a
  105. ArgumentNullException on MS 1.x implementation - even for getting
  106. properties. Mono only support the 2.0 (right) behaviour so we're
  107. skipping the tests on 1.1.
  108. 2005-08-22 Sebastien Pouliot <[email protected]>
  109. * HttpContext.cs: Added test case for using the .ctor with a null
  110. HttpWorkerRequest.
  111. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  112. * HttpRequestTest.cs: test for MapImageCoordinates.
  113. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  114. * HttpRequestTest.cs: test for UserLanguages.
  115. 2005-08-18 Gonzalo Paniagua Javier <[email protected]>
  116. * HttpRequestTest.cs: new test for AcceptTypes property.
  117. 2005-08-10 Sebastien Pouliot <[email protected]>
  118. * HttpClientCertificateTest.cs: Unit tests for HttpClientCertificate.
  119. 2005-08-03 Gonzalo Paniagua Javier <[email protected]>
  120. * HttpResponseTest.cs: added tests for Status, StatusDescription and
  121. StatusCode.
  122. 2005-08-01 Gonzalo Paniagua Javier <[email protected]>
  123. * HttpRequestTest.cs: test case to ensure that the first variable in
  124. the query string does not get a wrong name.
  125. 2005-07-21 Chris Toshok <[email protected]>
  126. * HttpCookieCollectionTest.cs: fix warnings.
  127. 2005-07-18 Chris Toshok <[email protected]>
  128. * HttpCacheVaryByParamsTest.cs: rework these tests a bit.
  129. * HttpCacheVaryByHeadersTest.cs: add case sensitivity check.
  130. 2005-07-15 Chris Toshok <[email protected]>
  131. * HttpCookieCollectionTest.cs: tests for
  132. System.Web.HttpCookieCollection
  133. 2005-07-15 Chris Toshok <[email protected]>
  134. * HttpCookieTest.cs: add a subkeys-only test.
  135. 2005-07-15 Chris Toshok <[email protected]>
  136. * HttpCookieTest.cs: new tests for S.W.HttpCookie.
  137. 2005-07-13 Sebastien Pouliot <[email protected]>
  138. * HttpUtilityTest.cs: Use Assert.Fail (and not Assertion.Fail) to
  139. remove warning from compiler (obsolete).
  140. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  141. * HttpUtilityTest.cs: added one more test.
  142. 2005-06-23 Gonzalo Paniagua Javier <[email protected]>
  143. * HttpUtilityTest.cs: new test for extra '0'.
  144. 2005-06-23 Gonzalo Paniagua Javier <[email protected]>
  145. * HttpUtilityTest.cs: new tests.
  146. 2005-05-13 Atsushi Enomoto <[email protected]>
  147. * HttpUtilityTest.cs : test for url decode.
  148. 2005-02-23 Sebastien Pouliot <[email protected]>
  149. * HttpRequestTest.cs: Added another XSS case that was found on ASP.NET
  150. (fixed now) but didn't affect Mono.
  151. 2005-02-23 Sebastien Pouliot <[email protected]>
  152. * HttpRequestTest.cs: New. Test that ValidateInput throw exceptions
  153. when expected.
  154. * HttpServerUtilityTest.cs: New. Test for possible XSS when using
  155. HtmlEncode.
  156. * HttpUtilityTest.cs: New. Test for possible XSS when using
  157. HtmlEncode.