From d4f249741efa0fe300a197e27370a28d8748628f Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Tue, 8 Sep 2020 19:45:48 +0300 Subject: browse: align template to struct field renames from 4940325 (#3706) --- caddytest/integration/handler_test.go | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 caddytest/integration/handler_test.go (limited to 'caddytest') diff --git a/caddytest/integration/handler_test.go b/caddytest/integration/handler_test.go new file mode 100644 index 0000000..fb986c7 --- /dev/null +++ b/caddytest/integration/handler_test.go @@ -0,0 +1,28 @@ +package integration + +import ( + "net/http" + "testing" + + "github.com/caddyserver/caddy/v2/caddytest" +) + +func TestBrowse(t *testing.T) { + tester := caddytest.NewTester(t) + tester.InitServer(` + { + http_port 9080 + https_port 9443 + } + http://localhost:9080 { + file_server browse + } + `, "caddyfile") + + req, err := http.NewRequest(http.MethodGet, "http://localhost:9080/", nil) + if err != nil { + t.Fail() + return + } + tester.AssertResponseCode(req, 200) +} -- cgit v1.2.3