diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-03-12 17:38:26 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-03-19 15:57:21 +0100 |
commit | e2b4df7b5ed8ed86c900820fc4b2c30b9cb53f51 (patch) | |
tree | 3d15e2bf1fa76e0d951d64edeccca6b70636e0ed /tests/data/test2017 | |
parent | 453ad35d15adf06bd1a141fb026214bc599b067f (diff) | |
download | curl-e2b4df7b5ed8ed86c900820fc4b2c30b9cb53f51.tar.gz |
tests: use %TESTNUMBER instead of fixed number
This makes the tests easier to copy and relocate to other test numbers
without having to update content.
Closes #6738
Diffstat (limited to 'tests/data/test2017')
-rw-r--r-- | tests/data/test2017 | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/data/test2017 b/tests/data/test2017 index 11c71c3db..4937c2802 100644 --- a/tests/data/test2017 +++ b/tests/data/test2017 @@ -17,7 +17,7 @@ Server: test-server/fake Content-Length: 56 Connection: close Content-Type: text/html -Content-Disposition: filename=name2017; charset=funny; option=strange +Content-Disposition: filename=name%TESTNUMBER; charset=funny; option=strange Funny-head: yesyes Data that should not be delivered from an HTTP resource @@ -38,38 +38,38 @@ Metalink Metalink local XML file, attempt Unix home path traversal </name> <command option="no-output,no-include"> ---metalink file://%PWD/log/test2017.metalink +--metalink file://%PWD/log/test%TESTNUMBER.metalink </command> # local metalink file written before test command runs -<file name="log/test2017.metalink"> +<file name="log/test%TESTNUMBER.metalink"> <?xml version="1.0" encoding="utf-8"?> <metalink version="3.0" xmlns="http://www.metalinker.org/"> <files> - <file name="~/download2017"> + <file name="~/download%TESTNUMBER"> <verification> <hash type="sha256">c7d03debe90ca29492203ea921d76941fa98640cf3b744f2a16c9b58465eab82</hash> </verification> <resources maxconnections="1"> - <url type="http" preference="90">http://%HOSTIP:%HTTPPORT/2017</url> + <url type="http" preference="90">http://%HOSTIP:%HTTPPORT/%TESTNUMBER</url> </resources> </file> </files> </metalink> </file> <postcheck> -perl %SRCDIR/libtest/notexists.pl log/2017 log/name2017 +perl %SRCDIR/libtest/notexists.pl log/%TESTNUMBER log/name%TESTNUMBER </postcheck> </client> # # Verify data after the test has been "shot" <verify> -<file1 name="log/stdout2017"> +<file1 name="log/stdout%TESTNUMBER"> </file1> -<file2 name="log/stderr2017" mode="text"> -Metalink: parsing (file://%PWD/log/test2017.metalink) metalink/XML... -Metalink: parsing (file://%PWD/log/test2017.metalink) WARNING (missing or invalid file name) -Metalink: parsing (file://%PWD/log/test2017.metalink) FAILED +<file2 name="log/stderr%TESTNUMBER" mode="text"> +Metalink: parsing (file://%PWD/log/test%TESTNUMBER.metalink) metalink/XML... +Metalink: parsing (file://%PWD/log/test%TESTNUMBER.metalink) WARNING (missing or invalid file name) +Metalink: parsing (file://%PWD/log/test%TESTNUMBER.metalink) FAILED </file2> <stripfile2> $_ = '' if (($_ !~ /^Metalink: /) && ($_ !~ /error/i) && ($_ !~ /warn/i)) |