]> sjero.net Git - wget/blob - tests/ChangeLog
Don't use hardcoded ports.
[wget] / tests / ChangeLog
1 2008-06-12  Micah Cowan  <micah@cowan.name>
2
3         * FTPServer.pm, FTPTest.pm, HTTPServer.pm, HTTPTest.pm,
4         Test--no-content-disposition-trivial.px,
5         Test--no-content-disposition.px, Test--spider-fail.px,
6         Test--spider-r--no-content-disposition-trivial.px,
7         Test--spider-r--no-content-disposition.px,
8         Test--spider-r-HTTP-Content-Disposition.px, Test--spider-r.px,
9         Test--spider.px, Test-E-k-K.px, Test-E-k.px,
10         Test-HTTP-Content-Disposition-1.px,
11         Test-HTTP-Content-Disposition-2.px,
12         Test-HTTP-Content-Disposition.px,
13         Test-N--no-content-disposition-trivial.px,
14         Test-N--no-content-disposition.px,
15         Test-N-HTTP-Content-Disposition.px, Test-N-current.px,
16         Test-N-no-info.px, Test-N-old.px, Test-N-smaller.px, Test-N.px,
17         Test-O--no-content-disposition-trivial.px,
18         Test-O--no-content-disposition.px,
19         Test-O-HTTP-Content-Disposition.px, Test-O-nonexisting.px,
20         Test-O.px, Test-Restrict-Lowercase.px,
21         Test-Restrict-Uppercase.px, Test-auth-basic.px, Test-c-full.px,
22         Test-c-partial.px, Test-c.px, Test-ftp.px,
23         Test-nonexisting-quiet.px, Test-noop.px, Test-np.px,
24         Test-proxied-https-auth.px, Test-proxy-auth-basic.px,
25         WgetTest.pm.in: Use whatever ports are available, rather than
26         hard-coded ones.
27
28         * Test-proxied-https-auth.px: Better cleanup, so next test can
29         open the port.
30
31 2008-05-31  Micah Cowan  <micah@cowan.name>
32
33         * Test-N-current.px: Ensure we catch failures.
34
35         * Test-N-old.px: Make it test only the timestamp, and not the
36         content length in addition.
37
38         * Test-N-smaller.px, Test-N-no-info.px: added.
39
40         * Test-c-partial.px: Improve checking that the file was
41         partially retrieved, rather than overwritten.
42
43         * run-px: Added Test-N-smaller.px, Test-N-no-info.px.
44
45         * HTTPServer.pm: Return 416 for fully-retrieved content, rather
46         than 206 with a zero content-length.
47
48 2008-05-23  Micah Cowan  <micah@cowan.name>
49
50         * Test--spider.px: Make test expect 0 return code.
51
52 2008-05-22  Micah Cowan  <micah@cowan.name>
53
54         * Makefile.am (run-px-tests): Replaced ugly list of tests with
55         run-px Perl script to manage running them.
56         
57         * run-px: Added.
58
59         * FTPServer.pm (run): Avoid re-forking. Fixes bug #20458.
60
61 2008-04-26  Micah Cowan  <micah@cowan.name>
62
63         * Makefile.am, Test-proxied-https-auth.px: Added a test for
64         accessing password-protected HTTPS URLs through a proxy (via
65         CONNECT).
66
67 2008-04-10  Micah Cowan  <micah@cowan.name>
68
69         * Makefile.am, Test-proxy-auth-basic.px: Added a test for
70         accessing password-protected URLs through a proxy.
71
72 2008-01-25  Micah Cowan  <micah@cowan.name>
73
74         * Makefile.am: Updated copyright year.
75
76 2008-01-23  Micah Cowan  <micah@cowan.name>
77
78         * Makefile.am: Add libmd5 to unit-tests.
79
80 2007-11-28  Micah Cowan <micah@cowan.name>
81
82         * Makefile.am: Updated license exception for OpenSSL, per the
83         SFLC.
84
85 2007-10-18  Micah Cowan  <micah@cowan.name>
86
87         * Makefile.am: Add dependency for unit_tests on libgnu.a.
88
89 2007-10-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
90
91         * WgetTest.pm.in: wget is built in the build tree.  Use an
92         absolute path to the binary.
93         * Makefile.in: Removed, replaced by Makefile.am.
94         * Makefile.am: Converted from Makefile.in.
95
96 2007-09-25  Micah Cowan  <micah@cowan.name>
97
98         * Makefile.in: Use EXEEXT instead of exeext.
99
100 2007-08-21  Mauro Tortonesi  <mauro@ferrara.linux.it>
101
102         * WgetTest.pm.in: Added support for timestamping of pre-existing
103         files.
104
105         * Test-N-current.px: Fixed broken test logic.
106
107         * Makefile.in: Updated list of automatically run tests.
108
109         * Test-HTTP-Content-Disposition.px: Added -e contentdisposition=on
110         option, since now HTTP Content-Disposition header support is turned
111         off by default.
112
113         * Test-HTTP-Content-Disposition-1.px: Ditto.
114
115 2007-08-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
116
117         * Test--spider--no-content-disposition-trivial.px: Added new tests for
118         validation of HTTP Content-Disposition header support logic. In
119         particular, these tests check wget's behavior for every combination of
120         --spider [-r] and -e contentdisposition=on/off options.
121
122         * Test--spider-r-HTTP-Content-Disposition.px: Ditto.
123
124         * Test--spider-HTTP-Content-Disposition.px: Ditto.
125
126         * Test--spider--no-content-disposition.px: Ditto.
127
128         * Test--spider-r--no-content-disposition-trivial.px: Ditto.
129
130         * Test--spider-r--no-content-disposition.px: Ditto.
131
132 2007-07-25  Micah Cowan  <micah@cowan.name>
133
134         * HTTPServer.pm (run, send_response): Farmed out some logic from
135         the run method into a separate one named send_response, which
136         was then modified to handle simple authentication testing.
137         (handle_auth): Added to handle simple authentication testing.
138         (verify_auth_basic): Checks to make sure Basic credentials are
139         valid.
140         (verify_auth_digest): Stub added; always fails test.
141         * Makefile.in: Added Test-auth-basic.px to list of automatically
142         run tests.
143         * Test-auth-basic: Simple basic authentication test; mainly just
144         lets the server do its testing. Its current purpose is just to
145         ensure that correct basic creds are sent, but never until a
146         challenge has been sent.
147
148 2007-07-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
149
150         * Test--no-content-disposition.px: Added new tests for validation of
151         HTTP Content-Disposition header support logic. In particular, these
152         tests check wget's behavior for every combination of -N/-O and -e
153         contentdisposition=on/off options.
154
155         * Test--no-content-disposition-trivial.px: Ditto.
156
157         * Test-N-HTTP-Content-Disposition.px: Ditto.
158
159         * Test-N--no-content-disposition.px: Ditto.
160
161         * Test-N--no-content-disposition-trivial.px: Ditto.
162
163         * Test-O-HTTP-Content-Disposition.px: Ditto.
164
165         * Test-O--no-content-disposition.px: Ditto.
166
167         * Test-O--no-content-disposition-trivial.px: Ditto.
168
169 2007-07-05  Micah Cowan  <micah@cowan.name>
170
171         * Makefile.in:
172         Updated GPL reference to version 3 or later, removed FSF
173         address.
174
175 2007-06-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
176
177         * FTPServer.pm: Added FTP testing support.
178
179         * FTPTest.pm: Ditto.
180
181         * Test-ftp.px: Ditto.
182
183 2006-12-22  Mauro Tortonesi  <mauro@ferrara.linux.it>
184
185         * HTTPTest.pm: Don't ignore initial '/' character in requested URLs.
186
187 2006-11-10  Mauro Tortonesi  <mauro@ferrara.linux.it>
188
189         * Test-np.px: Added test for -np.
190
191         * HTTPTest.pm: Ignore initial '/' character in requested URLs.
192         
193 2006-10-12  Mauro Tortonesi  <mauro@ferrara.linux.it>
194
195         * Test1.px: Renamed to Test-noop.px.
196
197         * Test-noop.px: Ditto.
198
199         * Test2.px: Renamed to Test-N.px.
200
201         * Test-N.px: Ditto.
202
203         * Test3.px: Renamed to Test-nonexisting-quiet.px.
204
205         * Test-nonexisting-quiet.px: Ditto.
206
207         * Test4.px: Renamed to Test-O-nonexisting.px.
208
209         * Test-O-nonexisting.px: Ditto.
210
211         * Test5.px: Renamed to Test-HTTP-Content-Disposition.px.
212         
213         * Test-HTTP-Content-Disposition.px: Ditto.
214         
215         * Test6.px: Renamed to Test-HTTP-Content-Disposition-1.px.
216         
217         * Test-HTTP-Content-Disposition-1.px: Ditto.
218         
219         * Test7.px: Renamed to Test-HTTP-Content-Disposition-2.px.
220
221         * Test-HTTP-Content-Disposition-2.px: Ditto.
222
223         * Test8.px: Replaced by Test--spider-r.px.
224
225         * Test9.px: Renamed to Test-Restrict-Lowercase.px.
226
227         * Test-Restrict-Lowercase.px: Ditto.
228
229         * Test10.px: Renamed to Test-Restrict-Uppercase.px.
230         
231         * Test-Restrict-Uppercase.px: Ditto.
232
233         * Test--spider.px: Added test for spider mode.
234         
235         * Test--spider-fail.px: Added failing test for spider mode.
236         
237         * Test--spider-r.px: Added test for recursive spider mode.
238
239         * Test-c.px: Added test for --continue mode.
240
241         * Test-c-full.px: Added test for --continue mode.
242
243         * Test-c-partial.px: Added test for --continue mode.
244
245         * Test-O.px: Added test for -O.
246
247         * Test-N-current.px: Added test for -N.
248         
249         * Test-N-old.px: Added test for -N.
250
251         * Test-E-k.px: Added test for -E -k.
252
253         * Test-E-k-K.px: Added test for -E -k -K.
254
255 2006-08-17  Mauro Tortonesi  <mauro@ferrara.linux.it>
256
257         * HTTPServer.pm: Added support for Range header.
258
259 2006-07-14  Mauro Tortonesi  <mauro@ferrara.linux.it>
260
261         * Test4.px: Fixed wrong expected behaviour.
262
263 2006-06-13  Mauro Tortonesi  <mauro@ferrara.linux.it>
264
265         * Test9.px: Added test for --restrict-file-names=lowercase option.
266         
267         * Test10.px: Added test for --restrict-file-names=uppercase option.
268
269 2006-05-26  Mauro Tortonesi  <mauro@ferrara.linux.it>
270
271         * HTTPServer.pm: Added synchronization between client and server
272         processes to prevent the test to start before the server is ready.
273
274         * HTTPTest.pm: Ditto.
275
276         * Test.pm: Ditto.
277
278         * Test1.px: Removed unneeded ../src/ from command line.
279
280         * Test2.px: Ditto.
281         
282         * Test3.px: Ditto.
283         
284         * Test4.px: Ditto.
285
286         * Test5.px: Ditto.
287
288         * Test6.px: Ditto.
289
290         * Test7.px: Ditto.
291
292         * Test8.px: Added test for recursive spider mode.
293
294 2006-05-26  Mauro Tortonesi  <mauro@ferrara.linux.it>
295
296         * HTTPServer.pm: Fixed bug when returning 404. Improved logging. 
297
298         * Test.pm: Added support for command lines which use an absolute path
299         for the Wget binary.
300
301 2006-04-28  Mauro Tortonesi  <mauro@ferrara.linux.it>
302
303         * Test5.px: Added test for HTTP Content-Disposition support.
304
305         * Test6.px: Ditto.
306         
307         * Test7.px: Ditto.
308
309 2006-04-27  Mauro Tortonesi  <mauro@ferrara.linux.it>
310         
311         * HTTPServer.pm: Serve index.html if no filename is given.
312
313         * Test.pm: Added support for pre-existing files.
314         
315 2006-01-24  Mauro Tortonesi  <mauro@ferrara.linux.it>
316
317         * HTTPServer.pm: Enhanced logging support.
318
319         * HTTPTest.pm: Updated to new test format.
320         
321         * Test.pm: Improved test setup, verification and cleanup. Major 
322         refactoring.
323         
324         * Test1.px: Updated to new test format.
325
326         * Test2.px: Updated to new test format.
327
328         * Test3.px: Added new test for quiet download of nonexistent URL.
329
330         * Test4.px: Added new test for quiet download of nonexistent URL with
331         --output-document option.
332         
333 2005-12-05  Mauro Tortonesi  <mauro@ferrara.linux.it>
334
335         * HTTPServer.pm: Refactored as a subclass of HTTP::Daemon. 
336         Removed the old run method and renamed the old run_daemon 
337         method to run.  Added support for partial 
338         
339         * Testing.pm: Renamed to HTTPTest.pm.
340         
341         * HTTPTest.pm: Refactored as a subclass of Test.  Renamed 
342         Run_HTTP_Test to run, verify_download to _verify_download 
343         and added support for timestamp checking.
344
345         * Test.pm: Added Test class as the super class of every 
346         testcase.
347
348         * test1: Renamed to Test1.px.
349         
350         * Test1.px: Refactored as an instance of the HTTPTest class.
351         
352         * Test2.px: Added -N HTTP test.
353
354 2005-11-02  Mauro Tortonesi  <mauro@ferrara.linux.it>
355
356         * HTTPServer.pm: Added basic support for HTTP testing.
357         
358         * Testing.pm: Added basic support for feature testing (only HTTP
359         testing is supported at the moment).
360
361         * test1: Added basic HTTP test.
362