aboutsummaryrefslogtreecommitdiff
path: root/tests/data/test1458
diff options
context:
space:
mode:
authorClaes Jakobsson <claes.jakobsson@trustly.com>2018-12-27 14:23:13 +0100
committerDaniel Gustafsson <daniel@yesql.se>2018-12-27 14:23:53 +0100
commitd8cae791f47c90f1f1c2b4d052c3e64a3919d92d (patch)
tree2671355efa313d1c2c0cce233280cb20e62ea95a /tests/data/test1458
parentba266b3ed74abecdc02e6b036e8bbf018e01ed9c (diff)
hostip: support wildcard hosts
This adds support for wildcard hosts in CURLOPT_RESOLVE. These are try-last so any non-wildcard entry is resolved first. If specified, any host not matched by another CURLOPT_RESOLVE config will use this as fallback. Example send a.com to 10.0.0.1 and everything else to 10.0.0.2: curl --resolve *:443:10.0.0.2 --resolve a.com:443:10.0.0.1 \ https://a.com https://b.com This is probably quite similar to using: --connect-to a.com:443:10.0.0.1:443 --connect-to :443:10.0.0.2:443 Closes #3406 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'tests/data/test1458')
-rw-r--r--tests/data/test145856
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/data/test1458 b/tests/data/test1458
new file mode 100644
index 000000000..072e43ce9
--- /dev/null
+++ b/tests/data/test1458
@@ -0,0 +1,56 @@
+<testcase>
+<info>
+<keywords>
+HTTP
+HTTP GET
+--resolve
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+<data>
+HTTP/1.1 200 OK
+Date: Thu, 09 Nov 2010 14:49:00 GMT
+Server: test-server/fake
+Last-Modified: Tue, 13 Jun 2000 12:10:00 GMT
+ETag: "21025-dc7-39462498"
+Accept-Ranges: bytes
+Content-Length: 6
+Connection: close
+Content-Type: text/html
+Funny-head: yesyes
+
+-foo-
+</data>
+</reply>
+
+#
+# Client-side
+<client>
+<server>
+http
+</server>
+<name>
+HTTP with wildcard --resolve
+</name>
+<command>
+--resolve *:%HTTPPORT:%HOSTIP http://example.com:%HTTPPORT/1458
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<strip>
+^User-Agent:.*
+</strip>
+<protocol>
+GET /1458 HTTP/1.1
+Host: example.com:%HTTPPORT
+Accept: */*
+
+</protocol>
+</verify>
+</testcase>