mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
5fb9df1640
* Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
263 lines
4.8 KiB
Go
263 lines
4.8 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package proxycfg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func TestUpstreamIDFromTargetID(t *testing.T) {
|
|
type testcase struct {
|
|
tid string
|
|
expect UpstreamID
|
|
}
|
|
run := func(t *testing.T, tc testcase) {
|
|
tc.expect.EnterpriseMeta.Normalize()
|
|
|
|
got := NewUpstreamIDFromTargetID(tc.tid)
|
|
require.Equal(t, tc.expect, got)
|
|
}
|
|
|
|
cases := map[string]testcase{
|
|
"with subset": {
|
|
tid: "v1.foo.default.default.dc2",
|
|
expect: UpstreamID{
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
},
|
|
"without subset": {
|
|
tid: "foo.default.default.dc2",
|
|
expect: UpstreamID{
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
},
|
|
"peered": {
|
|
tid: "foo.default.default.external.cluster-01",
|
|
expect: UpstreamID{
|
|
Name: "foo",
|
|
Peer: "cluster-01",
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
run(t, tc)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUpstreamIDFromString(t *testing.T) {
|
|
type testcase struct {
|
|
id string
|
|
expect UpstreamID
|
|
}
|
|
run := func(t *testing.T, tc testcase) {
|
|
tc.expect.EnterpriseMeta.Normalize()
|
|
|
|
got := UpstreamIDFromString(tc.id)
|
|
require.Equal(t, tc.expect, got)
|
|
}
|
|
|
|
prefix := ""
|
|
if structs.DefaultEnterpriseMetaInDefaultPartition().PartitionOrEmpty() != "" {
|
|
prefix = "default/default/"
|
|
}
|
|
|
|
cases := map[string]testcase{
|
|
"prepared query": {
|
|
"prepared_query:" + prefix + "foo",
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
},
|
|
},
|
|
"prepared query dc": {
|
|
"prepared_query:" + prefix + "foo?dc=dc2",
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
},
|
|
"normal": {
|
|
prefix + "foo",
|
|
UpstreamID{
|
|
Name: "foo",
|
|
},
|
|
},
|
|
"normal dc": {
|
|
prefix + "foo?dc=dc2",
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
},
|
|
"normal with peer": {
|
|
"foo?peer=payments",
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Peer: "payments",
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
run(t, tc)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUpstreamID_String(t *testing.T) {
|
|
type testcase struct {
|
|
u UpstreamID
|
|
expect string
|
|
}
|
|
run := func(t *testing.T, tc testcase) {
|
|
got := tc.u.String()
|
|
require.Equal(t, tc.expect, got)
|
|
}
|
|
|
|
prefix := ""
|
|
if structs.DefaultEnterpriseMetaInDefaultPartition().PartitionOrEmpty() != "" {
|
|
prefix = "default/default/"
|
|
}
|
|
|
|
cases := map[string]testcase{
|
|
"prepared query": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
},
|
|
"prepared_query:" + prefix + "foo",
|
|
},
|
|
"prepared query dc": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
"prepared_query:" + prefix + "foo?dc=dc2",
|
|
},
|
|
"normal implicit": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
},
|
|
prefix + "foo",
|
|
},
|
|
"normal implicit dc": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
prefix + "foo?dc=dc2",
|
|
},
|
|
"normal explicit": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypeService,
|
|
Name: "foo",
|
|
},
|
|
prefix + "foo",
|
|
},
|
|
"normal explicit dc": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypeService,
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
prefix + "foo?dc=dc2",
|
|
},
|
|
"normal with peer": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Peer: "payments",
|
|
},
|
|
prefix + "foo?peer=payments",
|
|
},
|
|
}
|
|
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
run(t, tc)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestUpstreamID_EnvoyID(t *testing.T) {
|
|
type testcase struct {
|
|
u UpstreamID
|
|
expect string
|
|
}
|
|
run := func(t *testing.T, tc testcase) {
|
|
got := tc.u.EnvoyID()
|
|
require.Equal(t, tc.expect, got)
|
|
}
|
|
|
|
cases := map[string]testcase{
|
|
"prepared query": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
},
|
|
"prepared_query:foo",
|
|
},
|
|
"prepared query dc": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypePreparedQuery,
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
"prepared_query:foo?dc=dc2",
|
|
},
|
|
"normal implicit": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
},
|
|
"foo",
|
|
},
|
|
"normal implicit dc": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
"foo?dc=dc2",
|
|
},
|
|
"normal explicit": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypeService,
|
|
Name: "foo",
|
|
},
|
|
"foo",
|
|
},
|
|
"normal explicit dc": {
|
|
UpstreamID{
|
|
Type: structs.UpstreamDestTypeService,
|
|
Name: "foo",
|
|
Datacenter: "dc2",
|
|
},
|
|
"foo?dc=dc2",
|
|
},
|
|
"normal with peer": {
|
|
UpstreamID{
|
|
Name: "foo",
|
|
Peer: "billing",
|
|
},
|
|
"foo?peer=billing",
|
|
},
|
|
}
|
|
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
run(t, tc)
|
|
})
|
|
}
|
|
}
|