-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds
allowed_regexp_prefixes
parameter to use with the `--ena…
…ble-regexp-cmd` flag (#1884) * adds AllowedRegexpPrefixes config and use it on the FindProjectsByName method * adds tests for the new AllowedRegexpPrefixes config * update documentation with the new AllowedRegexpPrefixes config
- Loading branch information
1 parent
dc4cc2f
commit 79af924
Showing
5 changed files
with
207 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
package valid_test | ||
|
||
import ( | ||
"testing" | ||
|
||
validation "github.com/go-ozzo/ozzo-validation" | ||
version "github.com/hashicorp/go-version" | ||
"github.com/runatlantis/atlantis/server/events/yaml/valid" | ||
. "github.com/runatlantis/atlantis/testing" | ||
) | ||
|
||
func TestConfig_FindProjectsByDir(t *testing.T) { | ||
tfVersion, _ := version.NewVersion("v0.11.0") | ||
cases := []struct { | ||
description string | ||
nameRegex string | ||
input valid.RepoCfg | ||
expProjects []valid.Project | ||
}{ | ||
{ | ||
description: "Find projects with 'dev' prefix as allowed prefix", | ||
nameRegex: "dev.*", | ||
input: valid.RepoCfg{ | ||
Version: 3, | ||
Projects: []valid.Project{ | ||
{ | ||
Dir: ".", | ||
Name: String("dev_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
}, | ||
Workflows: map[string]valid.Workflow{ | ||
"myworkflow": { | ||
Name: "myworkflow", | ||
Apply: valid.DefaultApplyStage, | ||
Plan: valid.DefaultPlanStage, | ||
PolicyCheck: valid.DefaultPolicyCheckStage, | ||
}, | ||
}, | ||
AllowedRegexpPrefixes: []string{"dev", "staging"}, | ||
}, | ||
expProjects: []valid.Project{ | ||
{ | ||
Dir: ".", | ||
Name: String("dev_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
}, | ||
}, | ||
{ | ||
description: "Only find projects with allowed prefix", | ||
nameRegex: ".*", | ||
input: valid.RepoCfg{ | ||
Version: 3, | ||
Projects: []valid.Project{ | ||
{ | ||
Dir: ".", | ||
Name: String("dev_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
{ | ||
Dir: ".", | ||
Name: String("staging_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
}, | ||
Workflows: map[string]valid.Workflow{ | ||
"myworkflow": { | ||
Name: "myworkflow", | ||
Apply: valid.DefaultApplyStage, | ||
Plan: valid.DefaultPlanStage, | ||
PolicyCheck: valid.DefaultPolicyCheckStage, | ||
}, | ||
}, | ||
AllowedRegexpPrefixes: []string{"dev", "staging"}, | ||
}, | ||
expProjects: nil, | ||
}, | ||
{ | ||
description: "Find all projects without restrictions of allowed prefix", | ||
nameRegex: ".*", | ||
input: valid.RepoCfg{ | ||
Version: 3, | ||
Projects: []valid.Project{ | ||
{ | ||
Dir: ".", | ||
Name: String("dev_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
{ | ||
Dir: ".", | ||
Name: String("staging_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
}, | ||
Workflows: map[string]valid.Workflow{ | ||
"myworkflow": { | ||
Name: "myworkflow", | ||
Apply: valid.DefaultApplyStage, | ||
Plan: valid.DefaultPlanStage, | ||
PolicyCheck: valid.DefaultPolicyCheckStage, | ||
}, | ||
}, | ||
AllowedRegexpPrefixes: nil, | ||
}, | ||
expProjects: []valid.Project{ | ||
{ | ||
Dir: ".", | ||
Name: String("dev_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
{ | ||
Dir: ".", | ||
Name: String("staging_terragrunt_myproject"), | ||
Workspace: "myworkspace", | ||
TerraformVersion: tfVersion, | ||
Autoplan: valid.Autoplan{ | ||
WhenModified: []string{"**/*.tf*", "**/terragrunt.hcl"}, | ||
Enabled: false, | ||
}, | ||
ApplyRequirements: []string{"approved"}, | ||
}, | ||
}, | ||
}, | ||
} | ||
validation.ErrorTag = "yaml" | ||
for _, c := range cases { | ||
t.Run(c.description, func(t *testing.T) { | ||
projects := c.input.FindProjectsByName(c.nameRegex) | ||
Equals(t, c.expProjects, projects) | ||
}) | ||
} | ||
} |