summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/integration/caddyfile_adapt_test.go')
-rw-r--r--caddytest/integration/caddyfile_adapt_test.go54
1 files changed, 53 insertions, 1 deletions
diff --git a/caddytest/integration/caddyfile_adapt_test.go b/caddytest/integration/caddyfile_adapt_test.go
index f6120ae..514a506 100644
--- a/caddytest/integration/caddyfile_adapt_test.go
+++ b/caddytest/integration/caddyfile_adapt_test.go
@@ -362,4 +362,56 @@ func TestMatcherSyntax(t *testing.T) {
}
}
}`)
-} \ No newline at end of file
+}
+
+func TestNotBlockMerging(t *testing.T) {
+ caddytest.AssertAdapt(t, `
+ :80
+
+ @test {
+ not {
+ header Abc "123"
+ header Bcd "123"
+ }
+ }
+ respond @test 403
+ `, "caddyfile", `{
+ "apps": {
+ "http": {
+ "servers": {
+ "srv0": {
+ "listen": [
+ ":80"
+ ],
+ "routes": [
+ {
+ "match": [
+ {
+ "not": [
+ {
+ "header": {
+ "Abc": [
+ "123"
+ ],
+ "Bcd": [
+ "123"
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "handle": [
+ {
+ "handler": "static_response",
+ "status_code": 403
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ }
+}`)
+}