curl-curl/tests/data/test762
Daniel Stenberg 54f1ef05d6
tool_filetime: accept setting negative filetime
This allows --remote-time to set dates before 1970.

Due to a minor omission in the API, it will still avoid setting the time
if it is indeed exactly epoch 0 (jan 1 1970).

Verified by test 762

Fixes #18424
Reported-by: Terence Eden
Closes #18443
2025-09-01 08:51:36 +02:00

57 lines
926 B
Plaintext

<testcase>
<info>
<keywords>
HTTP
HTTP GET
--remote-time
</keywords>
</info>
#
<reply>
<data nocheck="yes">
HTTP/1.1 200 OK
Date: Tue, 09 Nov 2010 14:49:00 GMT
Server: test-server/fake
Last-Modified: Wed, 09 Oct 1940 16:45:49 +0100
Content-Length: 6
Connection: close
12345
</data>
</reply>
#
# Client-side
<client>
<server>
http
</server>
<name>
HTTP GET with --remote-time with file date from 1940
</name>
<command option="no-output,no-include">
http://%HOSTIP:%HTTPPORT/%TESTNUMBER -O --remote-time --output-dir %LOGDIR
</command>
</client>
#
# Verify data after the test has been "shot"
<verify>
<protocol>
GET /%TESTNUMBER HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
</protocol>
<file name="%LOGDIR/%TESTNUMBER">
12345
</file>
# Modify: 1940-10-09 16:45:49.000000000 +0100
<postcheck>
%PERL -e 'exit((stat("%LOGDIR/%TESTNUMBER"))[9] != -922349651)'
</postcheck>
</verify>
</testcase>