pulumi/pkg/resource/autonaming/pattern_test.go

174 lines
4.2 KiB
Go

// Copyright 2024, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package autonaming
import (
"fmt"
"testing"
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/urn"
"github.com/stretchr/testify/assert"
)
func TestGenerateName(t *testing.T) {
t.Parallel()
urn := urn.New("mystack", "myproject", "", "aws:s3/bucket:Bucket", "myresource")
randomSeed := []byte("test seed")
tests := []struct {
name string
pattern string
want string
wantHasRandom bool
}{
{
name: "hex generation",
pattern: "${name}-${hex(4)}",
want: "myresource-ccf3",
wantHasRandom: true,
},
{
name: "alphanum generation",
pattern: "${name}-${alphanum(5)}",
want: "myresource-uqk8s",
wantHasRandom: true,
},
{
name: "string generation",
pattern: "${name}-${string(6)}",
want: "myresource-qekgoj",
wantHasRandom: true,
},
{
name: "num generation",
pattern: "${num(7)}_${name}",
want: "4080051_myresource",
wantHasRandom: true,
},
{
name: "uuid generation",
pattern: "${uuid}",
want: "ccf35be6-7106-5ccd-784a-fa394fcdb57c",
wantHasRandom: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got, hasRandom := generateName(tt.pattern, urn, randomSeed)
assert.Equal(t, tt.want, got)
assert.Equal(t, tt.wantHasRandom, hasRandom)
})
}
}
func TestResolveStackExpressions(t *testing.T) {
t.Parallel()
tests := []struct {
name string
pattern string
org string
proj string
stack string
configVals map[string]string
configErrs map[string]error
expected string
expectError bool
}{
{
name: "basic variable replacement",
pattern: "${organization}-${project}-${stack}",
org: "myorg",
proj: "myproj",
stack: "dev",
expected: "myorg-myproj-dev",
},
{
name: "config value replacement",
pattern: "prefix-${config.environment}-suffix",
configVals: map[string]string{
"environment": "production",
},
expected: "prefix-production-suffix",
},
{
name: "multiple replacements",
pattern: "${organization}/${project}/${stack}/${config.region}",
org: "myorg",
proj: "myproj",
stack: "dev",
configVals: map[string]string{
"region": "us-west-2",
},
expected: "myorg/myproj/dev/us-west-2",
},
{
name: "missing config value",
pattern: "${config.missing}",
configErrs: map[string]error{
"missing": fmt.Errorf("no value found for key %q", "missing"),
},
expectError: true,
},
{
name: "config error",
pattern: "${config.secret}",
configErrs: map[string]error{
"secret": fmt.Errorf("failed to decrypt value for key %q: unauthorized", "secret"),
},
expectError: true,
},
{
name: "no replacements needed",
pattern: "static-name",
expected: "static-name",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
stack := StackContext{
Organization: tt.org,
Project: tt.proj,
Stack: tt.stack,
}
eval := &stackPatternEval{
ctx: stack,
getConfigValue: func(key string) (string, error) {
if err, hasErr := tt.configErrs[key]; hasErr {
return "", err
}
if val, hasVal := tt.configVals[key]; hasVal {
return val, nil
}
return "", fmt.Errorf("unexpected config key: %q", key)
},
}
result, err := eval.resolveStackExpressions(tt.pattern)
if tt.expectError {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equal(t, tt.expected, result)
}
})
}
}