2
0

ChangeLog 2.8 KB

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