aboutsummaryrefslogtreecommitdiffhomepage
path: root/caddytest/caddytest_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'caddytest/caddytest_test.go')
-rw-r--r--caddytest/caddytest_test.go96
1 files changed, 96 insertions, 0 deletions
diff --git a/caddytest/caddytest_test.go b/caddytest/caddytest_test.go
index a46867ca8..937537faa 100644
--- a/caddytest/caddytest_test.go
+++ b/caddytest/caddytest_test.go
@@ -1,6 +1,7 @@
package caddytest
import (
+ "net/http"
"strings"
"testing"
)
@@ -31,3 +32,98 @@ func TestReplaceCertificatePaths(t *testing.T) {
t.Error("expected redirect uri to be unchanged")
}
}
+
+func TestLoadUnorderedJSON(t *testing.T) {
+ tester := NewTester(t)
+ tester.InitServer(`
+ {
+ "logging": {
+ "logs": {
+ "default": {
+ "level": "DEBUG",
+ "writer": {
+ "output": "stdout"
+ }
+ },
+ "sStdOutLogs": {
+ "level": "DEBUG",
+ "writer": {
+ "output": "stdout"
+ },
+ "include": [
+ "http.*",
+ "admin.*"
+ ]
+ },
+ "sFileLogs": {
+ "level": "DEBUG",
+ "writer": {
+ "output": "stdout"
+ },
+ "include": [
+ "http.*",
+ "admin.*"
+ ]
+ }
+ }
+ },
+ "admin": {
+ "listen": "localhost:2999"
+ },
+ "apps": {
+ "pki": {
+ "certificate_authorities" : {
+ "local" : {
+ "install_trust": false
+ }
+ }
+ },
+ "http": {
+ "http_port": 9080,
+ "https_port": 9443,
+ "servers": {
+ "s_server": {
+ "listen": [
+ ":9443",
+ ":9080"
+ ],
+ "routes": [
+ {
+ "handle": [
+ {
+ "handler": "static_response",
+ "body": "Hello"
+ }
+ ]
+ },
+ {
+ "match": [
+ {
+ "host": [
+ "localhost",
+ "127.0.0.1"
+ ]
+ }
+ ]
+ }
+ ],
+ "logs": {
+ "default_logger_name": "sStdOutLogs",
+ "logger_names": {
+ "localhost": "sStdOutLogs",
+ "127.0.0.1": "sFileLogs"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ `, "json")
+ req, err := http.NewRequest(http.MethodGet, "http://localhost:9080/", nil)
+ if err != nil {
+ t.Fail()
+ return
+ }
+ tester.AssertResponseCode(req, 200)
+}