mirror of https://github.com/pulumi/pulumi.git
779 lines
18 KiB
Go
779 lines
18 KiB
Go
// Copyright 2016-2022, 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 main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/pulumi/pulumi/pkg/v3/backend"
|
|
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/config"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestFailInInteractiveWithoutYes(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: false,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
stack: stackName,
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingStackWithArgsSpecifiedOrgName(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
orgStackName := fmt.Sprintf("%s/%s", currentUser(t), stackName)
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
stack: orgStackName,
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, stackName, loadStackName(t))
|
|
removeStack(t, stackName)
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingStackWithPromptedOrgName(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
uniqueProjectName := filepath.Base(tempdir)
|
|
orgStackName := fmt.Sprintf("%s/%s", currentUser(t), stackName)
|
|
|
|
var args = newArgs{
|
|
interactive: true,
|
|
prompt: promptMock(uniqueProjectName, orgStackName),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, stackName, loadStackName(t))
|
|
removeStack(t, stackName)
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingStackWithArgsSpecifiedFullNameSucceeds(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
// the project name and the project name in the stack name must match
|
|
uniqueProjectName := filepath.Base(tempdir)
|
|
fullStackName := fmt.Sprintf("%s/%s/%s", currentUser(t), uniqueProjectName, stackName)
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
stack: fullStackName,
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, stackName, loadStackName(t))
|
|
removeStack(t, stackName)
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingProjectWithArgsSpecifiedName(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
uniqueProjectName := filepath.Base(tempdir) + "test"
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
name: uniqueProjectName,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
stack: stackName,
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
removeStack(t, stackName)
|
|
|
|
proj := loadProject(t, tempdir)
|
|
assert.Equal(t, uniqueProjectName, proj.Name.String())
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingProjectWithPromptedName(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
uniqueProjectName := filepath.Base(tempdir) + "test"
|
|
|
|
var args = newArgs{
|
|
interactive: true,
|
|
prompt: promptMock(uniqueProjectName, stackName),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
removeStack(t, stackName)
|
|
|
|
proj := loadProject(t, tempdir)
|
|
assert.Equal(t, uniqueProjectName, proj.Name.String())
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingProjectWithExistingArgsSpecifiedNameFails(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return name == projectName, nil
|
|
},
|
|
}
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
name: projectName,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "project with this name already exists")
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestCreatingProjectWithExistingPromptedNameFails(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return name == projectName, nil
|
|
},
|
|
}
|
|
|
|
var args = newArgs{
|
|
interactive: true,
|
|
prompt: promptMock(projectName, ""),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "project with this name already exists")
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestGeneratingProjectWithExistingArgsSpecifiedNameSucceeds(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return true, nil
|
|
},
|
|
}
|
|
|
|
// Generate-only command is not creating any stacks, so don't bother with with the name uniqueness check.
|
|
var args = newArgs{
|
|
generateOnly: true,
|
|
interactive: false,
|
|
yes: true,
|
|
name: projectName,
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
proj := loadProject(t, tempdir)
|
|
assert.Equal(t, projectName, proj.Name.String())
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestGeneratingProjectWithExistingPromptedNameSucceeds(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return true, nil
|
|
},
|
|
}
|
|
|
|
// Generate-only command is not creating any stacks, so don't bother with with the name uniqueness check.
|
|
var args = newArgs{
|
|
generateOnly: true,
|
|
interactive: true,
|
|
prompt: promptMock(projectName, ""),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.NoError(t, err)
|
|
|
|
proj := loadProject(t, tempdir)
|
|
assert.Equal(t, projectName, proj.Name.String())
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestGeneratingProjectWithInvalidArgsSpecifiedNameFails(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return true, nil
|
|
},
|
|
}
|
|
|
|
// Generate-only command is not creating any stacks, so don't bother with with the name uniqueness check.
|
|
var args = newArgs{
|
|
generateOnly: true,
|
|
interactive: false,
|
|
yes: true,
|
|
name: "not#valid",
|
|
prompt: promptForValue,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "project name may only contain")
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestGeneratingProjectWithInvalidPromptedNameFails(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
backendInstance = &backend.MockBackend{
|
|
DoesProjectExistF: func(ctx context.Context, name string) (bool, error) {
|
|
return true, nil
|
|
},
|
|
}
|
|
|
|
// Generate-only command is not creating any stacks, so don't bother with with the name uniqueness check.
|
|
err := runNew(context.Background(), newArgs{
|
|
generateOnly: true,
|
|
interactive: true,
|
|
prompt: promptMock("not#valid", ""),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
})
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "project name may only contain")
|
|
|
|
err = runNew(context.Background(), newArgs{
|
|
generateOnly: true,
|
|
interactive: true,
|
|
prompt: promptMock("", ""),
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "typescript",
|
|
})
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "project name may not be empty")
|
|
}
|
|
|
|
//nolint:paralleltest // changes directory for process
|
|
func TestInvalidTemplateName(t *testing.T) {
|
|
skipIfShortOrNoPulumiAccessToken(t)
|
|
|
|
t.Run("NoTemplateSpecified", func(t *testing.T) {
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: "",
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
|
|
assert.Contains(t, err.Error(), "no template selected")
|
|
})
|
|
|
|
t.Run("RemoteTemplateNotFound", func(t *testing.T) {
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
// A template that will never exist.
|
|
template := "this-is-not-the-template-youre-looking-for"
|
|
|
|
var args = newArgs{
|
|
interactive: false,
|
|
yes: true,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: template,
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
|
|
assert.Contains(t, err.Error(), "not found")
|
|
})
|
|
|
|
t.Run("LocalTemplateNotFound", func(t *testing.T) {
|
|
tempdir, _ := os.MkdirTemp("", "test-env")
|
|
defer os.RemoveAll(tempdir)
|
|
chdir(t, tempdir)
|
|
|
|
// A template that will never exist remotely.
|
|
template := "this-is-not-the-template-youre-looking-for"
|
|
|
|
var args = newArgs{
|
|
generateOnly: true,
|
|
offline: true,
|
|
secretsProvider: "default",
|
|
templateNameOrURL: template,
|
|
yes: true,
|
|
}
|
|
|
|
err := runNew(context.Background(), args)
|
|
assert.Error(t, err)
|
|
|
|
assert.Contains(t, err.Error(), "not found")
|
|
})
|
|
}
|
|
|
|
func TestParseConfigSuccess(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
Array []string
|
|
Path bool
|
|
Expected config.Map
|
|
}{
|
|
{
|
|
Array: []string{},
|
|
Expected: config.Map{},
|
|
},
|
|
{
|
|
Array: []string{"my:testKey"},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue(""),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{"my:testKey="},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue(""),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{"my:testKey=testValue"},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{"my:testKey=test=Value"},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("test=Value"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:testKey=testValue",
|
|
"my:testKey=rewritten",
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("rewritten"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:testKey=testValue",
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:test.Key=testValue",
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "test.Key"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:testKey=testValue",
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:0=testValue",
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "0"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
"my:true=testValue",
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "true"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:["test.Key"]=testValue`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "test.Key"): config.NewValue("testValue"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:outer.inner=value`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "outer"): config.NewObjectValue(`{"inner":"value"}`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:outer.inner.nested=value`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "outer"): config.NewObjectValue(`{"inner":{"nested":"value"}}`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:name[0]=value`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "name"): config.NewObjectValue(`["value"]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:name[0][0]=value`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "name"): config.NewObjectValue(`[["value"]]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:servers[0].name=foo`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "servers"): config.NewObjectValue(`[{"name":"foo"}]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey=false`,
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("false"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey=true`,
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("true"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey=10`,
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("10"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey=-1`,
|
|
},
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewValue("-1"),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey[0]=false`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewObjectValue(`[false]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey[0]=true`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewObjectValue(`[true]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey[0]=10`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewObjectValue(`[10]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:testKey[0]=-1`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "testKey"): config.NewObjectValue(`[-1]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:names[0]=a`,
|
|
`my:names[1]=b`,
|
|
`my:names[2]=c`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "names"): config.NewObjectValue(`["a","b","c"]`),
|
|
},
|
|
},
|
|
{
|
|
Array: []string{
|
|
`my:names[0]=a`,
|
|
`my:names[1]=b`,
|
|
`my:names[2]=c`,
|
|
`my:names[0]=rewritten`,
|
|
},
|
|
Path: true,
|
|
Expected: config.Map{
|
|
config.MustMakeKey("my", "names"): config.NewObjectValue(`["rewritten","b","c"]`),
|
|
},
|
|
},
|
|
}
|
|
|
|
//nolint:paralleltest // false positive because range var isn't used directly in t.Run(name) arg
|
|
for _, test := range tests {
|
|
test := test
|
|
t.Run(fmt.Sprintf("%v", test), func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
actual, err := parseConfig(test.Array, test.Path)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, test.Expected, actual)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSetFail(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
Array []string
|
|
Expected config.Map
|
|
}{
|
|
{
|
|
Array: []string{`my:[""]=value`},
|
|
},
|
|
{
|
|
Array: []string{"my:[0]=value"},
|
|
},
|
|
{
|
|
Array: []string{`my:name[-1]=value`},
|
|
},
|
|
{
|
|
Array: []string{`my:name[1]=value`},
|
|
},
|
|
{
|
|
Array: []string{`my:key.secure=value`},
|
|
},
|
|
}
|
|
|
|
//nolint:paralleltest // false positive because range var isn't used directly in t.Run(name) arg
|
|
for _, test := range tests {
|
|
test := test
|
|
t.Run(fmt.Sprintf("%v", test), func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
_, err := parseConfig(test.Array, true /*path*/)
|
|
assert.Error(t, err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestErrorIfNotEmptyDirectory(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
desc string
|
|
files []string
|
|
dirs []string
|
|
ok bool
|
|
}{
|
|
{
|
|
desc: "empty",
|
|
ok: true,
|
|
},
|
|
{
|
|
desc: "non-empty",
|
|
files: []string{"foo"},
|
|
dirs: []string{"bar"},
|
|
ok: false,
|
|
},
|
|
{
|
|
desc: "empty git repository",
|
|
dirs: []string{".git"},
|
|
ok: true,
|
|
},
|
|
{
|
|
desc: "non-empty git repository",
|
|
dirs: []string{".git"},
|
|
files: []string{".gitignore"},
|
|
ok: false,
|
|
},
|
|
{
|
|
desc: "every VCS",
|
|
dirs: []string{".git", ".hg", ".bzr"},
|
|
ok: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.desc, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
path := t.TempDir()
|
|
|
|
// Fill test directory with files and directories
|
|
// requested by the test case.
|
|
for _, name := range tt.dirs {
|
|
err := os.MkdirAll(filepath.Join(path, name), 01700)
|
|
require.NoError(t, err)
|
|
}
|
|
for _, name := range tt.files {
|
|
err := os.WriteFile(filepath.Join(path, name), nil /* body */, 0600)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
err := errorIfNotEmptyDirectory(path)
|
|
if tt.ok {
|
|
assert.NoError(t, err)
|
|
} else {
|
|
assert.Error(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|