Add oss test

Signed-off-by: Mark Anderson <manderson@hashicorp.com>
This commit is contained in:
Mark Anderson 2022-05-05 18:46:03 -07:00
parent be059184dd
commit 785a6d9c8e
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
//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")
})
}
}