2019-10-08 17:57:15 +00:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/go-test/deep"
|
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSysConfigState_Sanitized(t *testing.T) {
|
|
|
|
var resp *http.Response
|
|
|
|
|
|
|
|
core, _, token := vault.TestCoreUnsealed(t)
|
|
|
|
ln, addr := TestServer(t, core)
|
|
|
|
defer ln.Close()
|
|
|
|
TestServerAuth(t, addr, token)
|
|
|
|
|
|
|
|
resp = testHttpGet(t, token, addr+"/v1/sys/config/state/sanitized")
|
|
|
|
testResponseStatus(t, resp, 200)
|
|
|
|
|
|
|
|
var actual map[string]interface{}
|
|
|
|
var expected map[string]interface{}
|
|
|
|
|
|
|
|
configResp := map[string]interface{}{
|
2021-04-20 22:25:04 +00:00
|
|
|
"api_addr": "",
|
|
|
|
"cache_size": json.Number("0"),
|
|
|
|
"cluster_addr": "",
|
|
|
|
"cluster_cipher_suites": "",
|
|
|
|
"cluster_name": "",
|
|
|
|
"default_lease_ttl": json.Number("0"),
|
|
|
|
"default_max_request_duration": json.Number("0"),
|
|
|
|
"disable_cache": false,
|
|
|
|
"disable_clustering": false,
|
|
|
|
"disable_indexing": false,
|
|
|
|
"disable_mlock": false,
|
|
|
|
"disable_performance_standby": false,
|
|
|
|
"disable_printable_check": false,
|
|
|
|
"disable_sealwrap": false,
|
|
|
|
"raw_storage_endpoint": false,
|
2022-12-15 20:19:19 +00:00
|
|
|
"introspection_endpoint": false,
|
2021-04-20 22:25:04 +00:00
|
|
|
"disable_sentinel_trace": false,
|
|
|
|
"enable_ui": false,
|
|
|
|
"log_format": "",
|
|
|
|
"log_level": "",
|
|
|
|
"max_lease_ttl": json.Number("0"),
|
|
|
|
"pid_file": "",
|
|
|
|
"plugin_directory": "",
|
2022-04-04 16:45:41 +00:00
|
|
|
"plugin_file_uid": json.Number("0"),
|
|
|
|
"plugin_file_permissions": json.Number("0"),
|
2021-04-20 22:25:04 +00:00
|
|
|
"enable_response_header_hostname": false,
|
|
|
|
"enable_response_header_raft_node_id": false,
|
2022-01-27 18:06:34 +00:00
|
|
|
"log_requests_level": "",
|
2019-10-08 17:57:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
expected = map[string]interface{}{
|
|
|
|
"lease_id": "",
|
|
|
|
"renewable": false,
|
|
|
|
"lease_duration": json.Number("0"),
|
|
|
|
"wrap_info": nil,
|
|
|
|
"warnings": nil,
|
|
|
|
"auth": nil,
|
|
|
|
"data": configResp,
|
|
|
|
}
|
|
|
|
|
|
|
|
testResponseBody(t, resp, &actual)
|
|
|
|
expected["request_id"] = actual["request_id"]
|
|
|
|
|
|
|
|
if diff := deep.Equal(actual, expected); len(diff) > 0 {
|
|
|
|
t.Fatalf("bad mismatch response body: diff: %v", diff)
|
|
|
|
}
|
|
|
|
}
|