pulumi/sdk/go/common/workspace/templates_test.go

207 lines
5.9 KiB
Go

// Copyright 2016-2018, 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 workspace
import (
"fmt"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
)
//nolint:paralleltest // uses shared state in pulumi dir
func TestRetrieveNonExistingTemplate(t *testing.T) {
tests := []struct {
testName string
templateKind TemplateKind
}{
{
testName: "TemplateKindPulumiProject",
templateKind: TemplateKindPulumiProject,
},
{
testName: "TemplateKindPolicyPack",
templateKind: TemplateKindPolicyPack,
},
}
templateName := "not-the-template-that-exists-in-pulumi-repo-nor-on-disk"
for _, tt := range tests {
tt := tt
t.Run(tt.testName, func(t *testing.T) {
t.Parallel()
_, err := RetrieveTemplates(templateName, false, tt.templateKind)
assert.EqualError(t, err, fmt.Sprintf("template '%s' not found", templateName))
})
}
}
//nolint:paralleltest // uses shared state in pulumi dir
func TestRetrieveStandardTemplate(t *testing.T) {
tests := []struct {
testName string
templateKind TemplateKind
templateName string
}{
{
testName: "TemplateKindPulumiProject",
templateKind: TemplateKindPulumiProject,
templateName: "typescript",
},
{
testName: "TemplateKindPolicyPack",
templateKind: TemplateKindPolicyPack,
templateName: "aws-typescript",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.testName, func(t *testing.T) {
repository, err := RetrieveTemplates(tt.templateName, false, tt.templateKind)
assert.NoError(t, err)
assert.Equal(t, false, repository.ShouldDelete)
// Root should point to Pulumi templates directory
// (e.g. ~/.pulumi/templates or ~/.pulumi/templates-policy)
templateDir, _ := GetTemplateDir(tt.templateKind)
assert.Equal(t, templateDir, repository.Root)
// SubDirectory should be a direct subfolder of Root with the name of the template
expectedPath := filepath.Join(repository.Root, tt.templateName)
assert.Equal(t, expectedPath, repository.SubDirectory)
})
}
}
//nolint:paralleltest // uses shared state in pulumi dir
func TestRetrieveHttpsTemplate(t *testing.T) {
tests := []struct {
testName string
templateKind TemplateKind
templateURL string
yamlFile string
expectedSubPath []string
}{
{
testName: "TemplateKindPulumiProject",
templateKind: TemplateKindPulumiProject,
templateURL: "https://github.com/pulumi/pulumi/tree/test-examples/examples/minimal",
yamlFile: "Pulumi.yaml",
expectedSubPath: []string{"examples", "minimal"},
},
{
testName: "TemplateKindPolicyPack",
templateKind: TemplateKindPolicyPack,
templateURL: "https://github.com/pulumi/pulumi/tree/test-examples/examples/policy-packs/aws-ts-advanced",
yamlFile: "PulumiPolicy.yaml",
expectedSubPath: []string{"examples", "policy-packs", "aws-ts-advanced"},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.testName, func(t *testing.T) {
repository, err := RetrieveTemplates(tt.templateURL, false, tt.templateKind)
assert.NoError(t, err)
assert.Equal(t, true, repository.ShouldDelete)
// Root should point to a subfolder of a Temp Dir
tempDir := os.TempDir()
pattern := filepath.Join(tempDir, "*")
matched, _ := filepath.Match(pattern, repository.Root)
assert.True(t, matched)
// SubDirectory follows the path of the template in the Git repo
pathElements := append([]string{repository.Root}, tt.expectedSubPath...)
expectedPath := filepath.Join(pathElements...)
assert.Equal(t, expectedPath, repository.SubDirectory)
// SubDirectory should exist and contain the template files
yamlPath := filepath.Join(repository.SubDirectory, tt.yamlFile)
_, err = os.Stat(yamlPath)
assert.NoError(t, err)
// Clean Up
err = repository.Delete()
assert.NoError(t, err)
})
}
}
func TestRetrieveHttpsTemplateOffline(t *testing.T) {
t.Parallel()
tests := []struct {
testName string
templateKind TemplateKind
templateURL string
}{
{
testName: "TemplateKindPulumiProject",
templateKind: TemplateKindPulumiProject,
templateURL: "https://github.com/pulumi/pulumi-aws/tree/master/examples/minimal",
},
{
testName: "TemplateKindPolicyPack",
templateKind: TemplateKindPolicyPack,
templateURL: "https://github.com/pulumi/examples/tree/master/policy-packs/aws-ts-advanced",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.testName, func(t *testing.T) {
t.Parallel()
_, err := RetrieveTemplates(tt.templateURL, true, tt.templateKind)
assert.EqualError(t, err, fmt.Sprintf("cannot use %s offline", tt.templateURL))
})
}
}
//nolint:paralleltest // uses shared state in pulumi dir
func TestRetrieveFileTemplate(t *testing.T) {
tests := []struct {
testName string
templateKind TemplateKind
}{
{
testName: "TemplateKindPulumiProject",
templateKind: TemplateKindPulumiProject,
},
{
testName: "TemplateKindPolicyPack",
templateKind: TemplateKindPolicyPack,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.testName, func(t *testing.T) {
repository, err := RetrieveTemplates(".", false, tt.templateKind)
assert.NoError(t, err)
assert.Equal(t, false, repository.ShouldDelete)
// Both Root and SubDirectory just point to the (existing) specified folder
assert.Equal(t, ".", repository.Root)
assert.Equal(t, ".", repository.SubDirectory)
})
}
}