ChangeLog 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. 2009-01-07 Geoff Norton <[email protected]>
  2. * ApplicationHostTest.cs: Fix a few case-sensitiviy issues.
  3. 2008-10-31 Gonzalo Paniagua Javier <[email protected]>
  4. * ApplicationHostTest.cs: ignore the CachePath test. We are settig it
  5. to DynamicBase to make all the temporary and shadow-copied files go
  6. into the same directory.
  7. 2008-03-13 Marek Habersack <[email protected]>
  8. * ApplicationHostTest.cs: adjust test for the PrivateBinPath
  9. change in ApplicationHost.
  10. 2007-11-03 Marek Habersack <[email protected]>
  11. * ApplicationHostTest.cs: adjust ConstructorTest for
  12. AppDomainSetup.PrivateBinPath changes.
  13. 2007-08-24 Marek Habersack <[email protected]>
  14. * ApplicationHostTest.cs: use ; as the separator in the
  15. PrivateBinPath test.
  16. 2007-08-21 Marek Habersack <[email protected]>
  17. * ApplicationHostTest.cs: adjust the test for the PrivateBinPath
  18. changes.
  19. 2006-03-23 Gonzalo Paniagua Javier <[email protected]>
  20. * SimpleWorkerRequestTest.cs: new tests for PathInfo and disabled a test
  21. that throws a nullref under MS.
  22. * ApplicationHostTest.cs: fixed 2 assertions to expect what MS does.
  23. 2006-02-02 Gonzalo Paniagua Javier <[email protected]>
  24. * HostingEnvironmentTest.cs: tests for MapPath.
  25. 2006-02-01 Gonzalo Paniagua Javier <[email protected]>
  26. * VirtualPathProviderTest.cs: tests for GetFileHash.
  27. 2006-02-01 Gonzalo Paniagua Javier <[email protected]>
  28. * HostingEnvironmentTest.cs: new tests.
  29. 2006-01-25 Gonzalo Paniagua Javier <[email protected]>
  30. * VirtualPathProviderTest.cs: new tests.
  31. 2005-11-23 Robert Jordan <[email protected]>
  32. * SimpleWorkerRequestTest.cs: added a test case for #76794.
  33. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  34. * ApplicationHostTest.cs: disabled a test.
  35. 2005-09-21 Sebastien Pouliot <[email protected]>
  36. * SimpleWorkerRequestTest.cs: When in doubt write more tests...
  37. 2005-09-18 Sebastien Pouliot <[email protected]>
  38. * SimpleWorkerRequestTest.cs: Ensure a trailing / in the expected path
  39. as GetAppPathTranslated must have one (while most directory methods
  40. don't append one).
  41. 2005-09-13 Sebastien Pouliot <[email protected]>
  42. * SimpleWorkerRequestTest.cs: Added a test case (GetUriPath) that was
  43. failing in the CAS tests (but wasn't CAS related).
  44. * SimpleWorkerRequestCas.cs: Ignore the ctor(string,string,TextWriter)
  45. test as I don't have a working test case. Simplify GetUriPath check
  46. so it doesn't fail.
  47. 2005-09-10 Sebastien Pouliot <[email protected]>
  48. * AppDomainFactoryCas.cs: New. CAS unit tests for AppDomainFactory.
  49. * ApplicationHostCas.cs: New. CAS unit tests for ApplicationHost.
  50. * ISAPIRuntimeCas.cs: New. CAS unit tests for ISAPIRuntime.
  51. * SimpleWorkerRequestCas.cs: New. CAS unit tests for
  52. SimpleWorkerRequest.
  53. * SimpleWorkerRequestTest.cs: Added a few (unworking) test cases for
  54. GetPathInfo method.
  55. 2005-08-22 Chris Toshok <[email protected]>
  56. * SimpleWorkerRequestTest.cs (Host): make cwd =
  57. "Environment.CurrentDirectory + Path.DirectorySeparatorChar" so we
  58. pass on MS.
  59. 2005-08-20 Gonzalo Paniagua Javier <[email protected]>
  60. * SimpleWorkerRequestTest.cs: add 2 more assertions.
  61. * ApplicationHostTest.cs: fix test for the path of web.config.
  62. 2005-07-27 Miguel de Icaza <[email protected]>
  63. * SimpleWorkerRequestTest.cs: Do not use the "/tmp" directory as
  64. that makes the tests fail if we create a hosted
  65. SimpleWorkerRequest.
  66. Instead use the current directory, and before starting up, create
  67. a bin directory and copy the assembly there to allow us to create
  68. a host.
  69. Also, replicate the tests for when we are hosted in a new
  70. appdomain, as "MapPath" does work in this case. When running
  71. SimpleWorkerRequest on the main domain MapPath always returns
  72. null.