41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package discoverychain
|
|
|
|
import (
|
|
"github.com/mitchellh/go-testing-interface"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/hashicorp/consul/agent/configentry"
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func TestCompileConfigEntries(t testing.T,
|
|
serviceName string,
|
|
evaluateInNamespace string,
|
|
evaluateInPartition string,
|
|
evaluateInDatacenter string,
|
|
evaluateInTrustDomain string,
|
|
setup func(req *CompileRequest),
|
|
set *configentry.DiscoveryChainSet) *structs.CompiledDiscoveryChain {
|
|
if set == nil {
|
|
set = configentry.NewDiscoveryChainSet()
|
|
}
|
|
req := CompileRequest{
|
|
ServiceName: serviceName,
|
|
EvaluateInNamespace: evaluateInNamespace,
|
|
EvaluateInPartition: evaluateInPartition,
|
|
EvaluateInDatacenter: evaluateInDatacenter,
|
|
EvaluateInTrustDomain: evaluateInTrustDomain,
|
|
Entries: set,
|
|
}
|
|
if setup != nil {
|
|
setup(&req)
|
|
}
|
|
|
|
chain, err := Compile(req)
|
|
require.NoError(t, err)
|
|
return chain
|
|
}
|