forked from hashicorp/consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
agent_endpoint_oss_test.go
52 lines (42 loc) · 1.02 KB
/
agent_endpoint_oss_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !consulent
// +build !consulent
package agent
import (
"encoding/json"
"github.com/stretchr/testify/require"
"net/http"
"net/http/httptest"
"testing"
"github.com/hashicorp/consul/testrpc"
)
func TestAgent_Self_VersionLacksEnt(t *testing.T) {
if testing.Short() {
t.Skip("too slow for testing.Short")
}
t.Parallel()
cases := map[string]struct {
hcl string
expectXDS bool
}{
"normal": {
hcl: "primary_datacenter = \"dc1\"",
},
}
for name, tc := range cases {
tc := tc
t.Run(name, func(t *testing.T) {
a := NewTestAgent(t, tc.hcl)
defer a.Shutdown()
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
req, _ := http.NewRequest("GET", "/v1/agent/self", nil)
resp := httptest.NewRecorder()
a.srv.h.ServeHTTP(resp, req)
dec := json.NewDecoder(resp.Body)
var out map[string]map[string]interface{}
require.NoError(t, dec.Decode(&out))
require.NotContains(t, out["Config"]["Version"], "ent")
})
}
}