summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt')
-rw-r--r--caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt126
1 files changed, 126 insertions, 0 deletions
diff --git a/caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt b/caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt
new file mode 100644
index 0000000..af9faf4
--- /dev/null
+++ b/caddytest/integration/caddyfile_adapt/map_and_vars_with_raw_types.txt
@@ -0,0 +1,126 @@
+example.com
+
+map {host} {my_placeholder} {magic_number} {
+ # Should output boolean "true" and an integer
+ example.com true 3
+
+ # Should output a string and null
+ foo.example.com "string value"
+
+ # Should output two strings (quoted int)
+ (.*)\.example.com "${1} subdomain" "5"
+
+ # Should output null and a string (quoted int)
+ ~.*\.net$ - `7`
+
+ # Should output a float and the string "false"
+ ~.*\.xyz$ 123.456 "false"
+
+ # Should output two strings, second being escaped quote
+ default "unknown domain" \"""
+}
+
+vars foo bar
+vars {
+ abc true
+ def 1
+ ghi 2.3
+ jkl "mn op"
+}
+----------
+{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":443"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "host": [
+ "example.com"
+ ]
+ }
+ ],
+ "handle": [
+ {
+ "handler": "subroute",
+ "routes": [
+ {
+ "handle": [
+ {
+ "defaults": [
+ "unknown domain",
+ "\""
+ ],
+ "destinations": [
+ "{my_placeholder}",
+ "{magic_number}"
+ ],
+ "handler": "map",
+ "mappings": [
+ {
+ "input": "example.com",
+ "outputs": [
+ true,
+ 3
+ ]
+ },
+ {
+ "input": "foo.example.com",
+ "outputs": [
+ "string value",
+ null
+ ]
+ },
+ {
+ "input": "(.*)\\.example.com",
+ "outputs": [
+ "${1} subdomain",
+ "5"
+ ]
+ },
+ {
+ "input_regexp": ".*\\.net$",
+ "outputs": [
+ null,
+ "7"
+ ]
+ },
+ {
+ "input_regexp": ".*\\.xyz$",
+ "outputs": [
+ 123.456,
+ "false"
+ ]
+ }
+ ],
+ "source": "{http.request.host}"
+ },
+ {
+ "foo": "bar",
+ "handler": "vars"
+ },
+ {
+ "abc": true,
+ "def": 1,
+ "ghi": 2.3,
+ "handler": "vars",
+ "jkl": "mn op"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "terminal": true
+ }
+ ]
+ }
+ }
+ }
+ }
+} \ No newline at end of file