2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / Test / System / ChangeLog
index bee086ce7acfaa157c1efc56a37163083d2c59ae..7b214c3b8cf014cec3e3b0dabe5f2faeed3fbf06 100644 (file)
@@ -1,3 +1,159 @@
+2005-01-20  Miguel de Icaza  <miguel@ximian.com>
+
+       * UriTest.cs: Add test for bugs 71050 and 71051.
+       
+2005-01-19  Jonathan Pryor  <jonpryor@vt.edu>
+
+       * UriTest.cs: Update UnixLocalPath_WTF.  Category("NotWorking") is
+         conditional on ONLY_1_1, and the test itself is conditional on NET_2_0
+         (since .NET 2.0 behaves sanely, while 1.1 doesn't).
+
+2005-01-19  Jonathan Pryor  <jonpryor@vt.edu>
+
+       * UriTest.cs: Ignore one of the tests on Linux, as .NET's behavior is
+         counterintuitive (see the UnixLocalPath_WTF comment).
+
+2005-01-08  Nick Drochak  <ndrochak@ieee.org>
+
+       * UriTest.cs
+       * UriTest2.cs: Make pass on MS.NET
+
+2004-06-22  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs : As Unix paths, //foo/bar never means host == foo,
+         file path == /bar. So on *nix environment, interpret LocalPath of
+         file://foo/bar as /bar, not //foo/bar.
+       * test-uri-list.txt, tset-uri-props.txt : We cannot test such path
+         that starts with "//" in automatic one, since on Windows it is
+         UNC host name but on Unix it is condensed to /foo style abs path.
+       * UriTest2.cs : Test only on windows such path that starts with "\\".
+
+2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * test-uri-list.txt, test-uri-props.txt, test-uri-props-manual.txt :
+         The autogenerated test contained Unix path case. Moved to manual.
+
+2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest2.cs : LocalPath values should vary depending on the running
+         environment - so replace '/' and '\\' each other.
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs : Added UnixLocalPath().
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs : Added InvalidScheme().
+       * test-uri-list.txt, test-uri-props.txt :
+         Commented out RFC2396-violent URIs.
+
+2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * test-uri-list.txt,
+         test-uri-props.txt,
+         test-uri-props-manual.txt :
+         Reverted the last change. File URI handling should be common to 
+         MS.NET. We have to change the behavior only for Unix file path.
+       * UriTest2.cs : Fixed just catch only UriFormatException.
+
+2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs : Should not expect exception for Unix file path.
+
+2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * test-uri-list.txt,
+         test-uri-props.txt,
+         test-uri-props-manual.txt :
+         - Moved '#' containing file URIs to manual test patterns (I think MS
+           disregards '#', as conceptually reported in bug #47691).
+         - Removed URIs that contains "/////" that is ambiguous (is /////cygwin
+           directory '/cygwin', or host 'cygwin' ?).
+       * UriTest2.cs : explicitly show what input string is being checked
+         in Assert(). And also surround try...catch and show which URI failed.
+
+2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs : Added RelativeCtor(), Unescape(), Segments5() and
+         ParseOverride().
+
+2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriBuilderTest.cs : Actually Query() and Fragment() didnt pass under
+         MS.NET.
+
+2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriBuilderTest.cs: Please don't hardcode non-ASCII/non-UTF8
+         character in the sources.
+
+2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * UriBuilderTest.cs: added tests for bug #57082.
+
+2004-03-21  Jackson Harper  <jackson@ximian.com>
+
+       * TestUri.cs: Make sure Uri::Equals is case insensitive for
+       everything but paths.
+
+2004-01-12  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * test-uri-list.txt, test-uri-props.txt : added more tests.
+
+2004-01-06  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest.cs :
+         Derived from Assertion.
+         Added ConstructorsRejectRelativePath ().
+         "file://cygwin" means machine name cygwin, not top directory cygwin.
+       * UriTest2.cs : added relative constructor tests and manually created
+         absolute uri tests (rejected by MS.NET).
+       * uri-test-generator.cs : added relative test generator.
+       * added test-uri-props-manual.txt, test-uri-relative-list.txt,
+         test-uri-relative-props.txt for relative path test and 
+         manually added tests.
+
+2004-01-04  Nick Drochak  <ndrochak@ieee.com>
+
+       * UriBuilderTest.cs: Make tests pass on .NET 1.1.  
+
+2003-12-31  Nick Drochak  <ndrochak@ieee.com>
+
+       * UriTest2.cs: Use proper path to find file.
+       * UriBuilderTest.cs: 123456789 is not a bad port.
+
+2003-12-11  Nick Drochak  <ndrochak@ieee.com>
+
+       * UriTest.cs: Test for UriFormatException
+
+2003-12-08  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * UriTest2.cs : eliminating Console.WriteLine().
+
+2003-12-08  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Added uri-test-generator.cs, test-uri-list.txt, test-uri-props.txt
+         and UriTest2.cs. They are test generator files.
+
+2003-12-08  Ravindra  <rkumar@novell.com>
+
+       * UriTest.cs: Added IsUnc tests for local file paths.
+
+2003-10-10  Pedro Martínez Julá  <yoros.wanadoo.es>
+
+       * UriTest.cs: added some test for "file://one_file.txt". Uri used to
+       fail with this URIs.
+
+2003-08-18  Nick Drochak  <ndrochak@gol.com>
+
+       * UriBuilderTest.cs: Separated tests into NUnit v2 style. Need to track
+       down a test failure.
+
+2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
+
+       * UriTest.cs: added tests for UNIX file paths.
+       
 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * UriTest.cs: moved a couple of test to their own method as they fail