* UriTest.cs: modified tests to reflect fixes in .NET 2.0.
[mono.git] / mcs / class / System / Test / System / ChangeLog
1 2005-06-03 Gert Driesen <drieseng@users.sourceforge.net>
2
3         * UriTest.cs: modify tests to reflect fixes in .NET 2.0.
4         Added test for bug #75144.
5
6 2005-06-03 Gert Driesen <drieseng@users.sourceforge.net>
7
8         * UriTest.cs: fixed test failures introduced by bug fixes for
9         #75125 and #75128.
10
11 2005-06-02 Gert Driesen <drieseng@users.sourceforge.net>
12
13         * UriTest.cs: added test for bug #75124.
14
15 2005-03-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16
17         * UriTest2.cs: added test from bug #73316.
18
19 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
20
21         * UriTest2.cs: Make this file use resources, not files. Helps with
22         distcheck.
23
24 2005-01-20  Miguel de Icaza  <miguel@ximian.com>
25
26         * UriTest.cs: Add test for bugs 71050 and 71051.
27         
28 2005-01-19  Jonathan Pryor  <jonpryor@vt.edu>
29
30         * UriTest.cs: Update UnixLocalPath_WTF.  Category("NotWorking") is
31           conditional on ONLY_1_1, and the test itself is conditional on NET_2_0
32           (since .NET 2.0 behaves sanely, while 1.1 doesn't).
33
34 2005-01-19  Jonathan Pryor  <jonpryor@vt.edu>
35
36         * UriTest.cs: Ignore one of the tests on Linux, as .NET's behavior is
37           counterintuitive (see the UnixLocalPath_WTF comment).
38
39 2005-01-08  Nick Drochak  <ndrochak@ieee.org>
40
41         * UriTest.cs
42         * UriTest2.cs: Make pass on MS.NET
43
44 2004-06-22  Atsushi Enomoto  <atsushi@ximian.com>
45
46         * UriTest.cs : As Unix paths, //foo/bar never means host == foo,
47           file path == /bar. So on *nix environment, interpret LocalPath of
48           file://foo/bar as /bar, not //foo/bar.
49         * test-uri-list.txt, tset-uri-props.txt : We cannot test such path
50           that starts with "//" in automatic one, since on Windows it is
51           UNC host name but on Unix it is condensed to /foo style abs path.
52         * UriTest2.cs : Test only on windows such path that starts with "\\".
53
54 2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
55
56         * test-uri-list.txt, test-uri-props.txt, test-uri-props-manual.txt :
57           The autogenerated test contained Unix path case. Moved to manual.
58
59 2004-06-16  Atsushi Enomoto  <atsushi@ximian.com>
60
61         * UriTest2.cs : LocalPath values should vary depending on the running
62           environment - so replace '/' and '\\' each other.
63
64 2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
65
66         * UriTest.cs : Added UnixLocalPath().
67
68 2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
69
70         * UriTest.cs : Added InvalidScheme().
71         * test-uri-list.txt, test-uri-props.txt :
72           Commented out RFC2396-violent URIs.
73
74 2004-06-11  Atsushi Enomoto  <atsushi@ximian.com>
75
76         * test-uri-list.txt,
77           test-uri-props.txt,
78           test-uri-props-manual.txt :
79           Reverted the last change. File URI handling should be common to 
80           MS.NET. We have to change the behavior only for Unix file path.
81         * UriTest2.cs : Fixed just catch only UriFormatException.
82
83 2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
84
85         * UriTest.cs : Should not expect exception for Unix file path.
86
87 2004-06-10  Atsushi Enomoto  <atsushi@ximian.com>
88
89         * test-uri-list.txt,
90           test-uri-props.txt,
91           test-uri-props-manual.txt :
92           - Moved '#' containing file URIs to manual test patterns (I think MS
93             disregards '#', as conceptually reported in bug #47691).
94           - Removed URIs that contains "/////" that is ambiguous (is /////cygwin
95             directory '/cygwin', or host 'cygwin' ?).
96         * UriTest2.cs : explicitly show what input string is being checked
97           in Assert(). And also surround try...catch and show which URI failed.
98
99 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
100
101         * UriTest.cs : Added RelativeCtor(), Unescape(), Segments5() and
102           ParseOverride().
103
104 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
105
106         * UriBuilderTest.cs : Actually Query() and Fragment() didnt pass under
107           MS.NET.
108
109 2004-06-09  Atsushi Enomoto  <atsushi@ximian.com>
110
111         * UriBuilderTest.cs: Please don't hardcode non-ASCII/non-UTF8
112           character in the sources.
113
114 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
115
116         * UriBuilderTest.cs: added tests for bug #57082.
117
118 2004-03-21  Jackson Harper  <jackson@ximian.com>
119
120         * TestUri.cs: Make sure Uri::Equals is case insensitive for
121         everything but paths.
122
123 2004-01-12  Atsushi Enomoto  <atsushi@ximian.com>
124
125         * test-uri-list.txt, test-uri-props.txt : added more tests.
126
127 2004-01-06  Atsushi Enomoto  <atsushi@ximian.com>
128
129         * UriTest.cs :
130           Derived from Assertion.
131           Added ConstructorsRejectRelativePath ().
132           "file://cygwin" means machine name cygwin, not top directory cygwin.
133         * UriTest2.cs : added relative constructor tests and manually created
134           absolute uri tests (rejected by MS.NET).
135         * uri-test-generator.cs : added relative test generator.
136         * added test-uri-props-manual.txt, test-uri-relative-list.txt,
137           test-uri-relative-props.txt for relative path test and 
138           manually added tests.
139
140 2004-01-04  Nick Drochak  <ndrochak@ieee.com>
141
142         * UriBuilderTest.cs: Make tests pass on .NET 1.1.  
143
144 2003-12-31  Nick Drochak  <ndrochak@ieee.com>
145
146         * UriTest2.cs: Use proper path to find file.
147         * UriBuilderTest.cs: 123456789 is not a bad port.
148
149 2003-12-11  Nick Drochak  <ndrochak@ieee.com>
150
151         * UriTest.cs: Test for UriFormatException
152
153 2003-12-08  Atsushi Enomoto  <atsushi@ximian.com>
154
155         * UriTest2.cs : eliminating Console.WriteLine().
156
157 2003-12-08  Atsushi Enomoto  <atsushi@ximian.com>
158
159         * Added uri-test-generator.cs, test-uri-list.txt, test-uri-props.txt
160           and UriTest2.cs. They are test generator files.
161
162 2003-12-08  Ravindra  <rkumar@novell.com>
163
164         * UriTest.cs: Added IsUnc tests for local file paths.
165
166 2003-10-10  Pedro Martínez Julá  <yoros.wanadoo.es>
167
168         * UriTest.cs: added some test for "file://one_file.txt". Uri used to
169         fail with this URIs.
170
171 2003-08-18  Nick Drochak  <ndrochak@gol.com>
172
173         * UriBuilderTest.cs: Separated tests into NUnit v2 style. Need to track
174         down a test failure.
175
176 2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
177
178         * UriTest.cs: added tests for UNIX file paths.
179         
180 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
181
182         * UriTest.cs: moved a couple of test to their own method as they fail
183         with MS runtime. Added new tests for Segment.
184
185 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
186
187         * UriTest.cs: added CheckSchemaName tests.
188
189 2002-09-17  Nick Drochak  <ndrochak@gol.com>
190
191         * UriTest.cs: Fixed some path separator issues for the tests running on
192         linux.
193
194 2002-05-28  Lawrence Pit <loz@cable.a2000.nl>
195
196         * UriTest.cs: added tests ctor UriTest (baseUri, relativeUri)
197
198 2002-05-22  Lawrence Pit <loz@cable.a2000.nl>
199
200         * Added UriTest.MakeRelative
201
202 2002-05-12  Lawrence Pit <loz@cable.a2000.nl>
203
204         * Added UriTest.TestLocalPath
205         
206 2002-05-05  Lawrence Pit <loz@cable.a2000.nl>
207
208         * UriTest.cs: added
209         * UriBuilderTest.cs: added
210         * AllTests.cs: added