Merge branch 'master' into helm-delete
This commit is contained in:
commit
68a2c3cc86
|
@ -62,7 +62,7 @@ func determineSteps(cfg Config) *func(Config) []Step {
|
||||||
case "delete":
|
case "delete":
|
||||||
return &del
|
return &del
|
||||||
case "lint":
|
case "lint":
|
||||||
panic("not implemented")
|
return &lint
|
||||||
case "help":
|
case "help":
|
||||||
return &help
|
return &help
|
||||||
default:
|
default:
|
||||||
|
@ -119,6 +119,14 @@ var del = func(cfg Config) []Step {
|
||||||
return steps
|
return steps
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var lint = func(cfg Config) []Step {
|
||||||
|
lint := &run.Lint{
|
||||||
|
Chart: cfg.Chart,
|
||||||
|
}
|
||||||
|
|
||||||
|
return []Step{lint}
|
||||||
|
}
|
||||||
|
|
||||||
var help = func(cfg Config) []Step {
|
var help = func(cfg Config) []Step {
|
||||||
help := &run.Help{}
|
help := &run.Help{}
|
||||||
return []Step{help}
|
return []Step{help}
|
||||||
|
|
|
@ -180,6 +180,20 @@ func (suite *PlanTestSuite) TestInitKube() {
|
||||||
suite.Equal(expected, init)
|
suite.Equal(expected, init)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *PlanTestSuite) TestLint() {
|
||||||
|
cfg := Config{
|
||||||
|
Chart: "./flow",
|
||||||
|
}
|
||||||
|
|
||||||
|
steps := lint(cfg)
|
||||||
|
suite.Equal(1, len(steps))
|
||||||
|
|
||||||
|
want := &run.Lint{
|
||||||
|
Chart: "./flow",
|
||||||
|
}
|
||||||
|
suite.Equal(want, steps[0])
|
||||||
|
}
|
||||||
|
|
||||||
func (suite *PlanTestSuite) TestDeterminePlanUpgradeCommand() {
|
func (suite *PlanTestSuite) TestDeterminePlanUpgradeCommand() {
|
||||||
cfg := Config{
|
cfg := Config{
|
||||||
Command: "upgrade",
|
Command: "upgrade",
|
||||||
|
@ -215,6 +229,15 @@ func (suite *PlanTestSuite) TestDeterminePlanDeleteFromDroneEvent() {
|
||||||
suite.Same(&del, stepsMaker)
|
suite.Same(&del, stepsMaker)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (suite *PlanTestSuite) TestDeterminePlanLintCommand() {
|
||||||
|
cfg := Config{
|
||||||
|
Command: "lint",
|
||||||
|
}
|
||||||
|
|
||||||
|
stepsMaker := determineSteps(cfg)
|
||||||
|
suite.Same(&lint, stepsMaker)
|
||||||
|
}
|
||||||
|
|
||||||
func (suite *PlanTestSuite) TestDeterminePlanHelpCommand() {
|
func (suite *PlanTestSuite) TestDeterminePlanHelpCommand() {
|
||||||
cfg := Config{
|
cfg := Config{
|
||||||
Command: "help",
|
Command: "help",
|
||||||
|
|
56
internal/run/lint.go
Normal file
56
internal/run/lint.go
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
package run
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Lint is an execution step that calls `helm lint` when executed.
|
||||||
|
type Lint struct {
|
||||||
|
Chart string
|
||||||
|
cmd cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
// Execute executes the `helm lint` command.
|
||||||
|
func (l *Lint) Execute(_ Config) error {
|
||||||
|
return l.cmd.Run()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Prepare gets the Lint ready to execute.
|
||||||
|
func (l *Lint) Prepare(cfg Config) error {
|
||||||
|
if l.Chart == "" {
|
||||||
|
return fmt.Errorf("chart is required")
|
||||||
|
}
|
||||||
|
|
||||||
|
args := make([]string, 0)
|
||||||
|
|
||||||
|
if cfg.Namespace != "" {
|
||||||
|
args = append(args, "--namespace", cfg.Namespace)
|
||||||
|
}
|
||||||
|
if cfg.Debug {
|
||||||
|
args = append(args, "--debug")
|
||||||
|
}
|
||||||
|
|
||||||
|
args = append(args, "lint")
|
||||||
|
|
||||||
|
if cfg.Values != "" {
|
||||||
|
args = append(args, "--set", cfg.Values)
|
||||||
|
}
|
||||||
|
if cfg.StringValues != "" {
|
||||||
|
args = append(args, "--set-string", cfg.StringValues)
|
||||||
|
}
|
||||||
|
for _, vFile := range cfg.ValuesFiles {
|
||||||
|
args = append(args, "--values", vFile)
|
||||||
|
}
|
||||||
|
|
||||||
|
args = append(args, l.Chart)
|
||||||
|
|
||||||
|
l.cmd = command(helmBin, args...)
|
||||||
|
l.cmd.Stdout(cfg.Stdout)
|
||||||
|
l.cmd.Stderr(cfg.Stderr)
|
||||||
|
|
||||||
|
if cfg.Debug {
|
||||||
|
fmt.Fprintf(cfg.Stderr, "Generated command: '%s'\n", l.cmd.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
169
internal/run/lint_test.go
Normal file
169
internal/run/lint_test.go
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
package run
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/golang/mock/gomock"
|
||||||
|
"github.com/stretchr/testify/suite"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
type LintTestSuite struct {
|
||||||
|
suite.Suite
|
||||||
|
ctrl *gomock.Controller
|
||||||
|
mockCmd *Mockcmd
|
||||||
|
originalCommand func(string, ...string) cmd
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) BeforeTest(_, _ string) {
|
||||||
|
suite.ctrl = gomock.NewController(suite.T())
|
||||||
|
suite.mockCmd = NewMockcmd(suite.ctrl)
|
||||||
|
|
||||||
|
suite.originalCommand = command
|
||||||
|
command = func(path string, args ...string) cmd { return suite.mockCmd }
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) AfterTest(_, _ string) {
|
||||||
|
command = suite.originalCommand
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLintTestSuite(t *testing.T) {
|
||||||
|
suite.Run(t, new(LintTestSuite))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) TestPrepareAndExecute() {
|
||||||
|
defer suite.ctrl.Finish()
|
||||||
|
|
||||||
|
stdout := strings.Builder{}
|
||||||
|
stderr := strings.Builder{}
|
||||||
|
|
||||||
|
l := Lint{
|
||||||
|
Chart: "./epic/mychart",
|
||||||
|
}
|
||||||
|
cfg := Config{
|
||||||
|
Stdout: &stdout,
|
||||||
|
Stderr: &stderr,
|
||||||
|
}
|
||||||
|
|
||||||
|
command = func(path string, args ...string) cmd {
|
||||||
|
suite.Equal(helmBin, path)
|
||||||
|
suite.Equal([]string{"lint", "./epic/mychart"}, args)
|
||||||
|
|
||||||
|
return suite.mockCmd
|
||||||
|
}
|
||||||
|
|
||||||
|
suite.mockCmd.EXPECT().
|
||||||
|
Stdout(&stdout)
|
||||||
|
suite.mockCmd.EXPECT().
|
||||||
|
Stderr(&stderr)
|
||||||
|
suite.mockCmd.EXPECT().
|
||||||
|
Run().
|
||||||
|
Times(1)
|
||||||
|
|
||||||
|
err := l.Prepare(cfg)
|
||||||
|
suite.Require().Nil(err)
|
||||||
|
l.Execute(cfg)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) TestPrepareRequiresChart() {
|
||||||
|
// These aren't really expected, but allowing them gives clearer test-failure messages
|
||||||
|
suite.mockCmd.EXPECT().Stdout(gomock.Any()).AnyTimes()
|
||||||
|
suite.mockCmd.EXPECT().Stderr(gomock.Any()).AnyTimes()
|
||||||
|
|
||||||
|
cfg := Config{}
|
||||||
|
l := Lint{}
|
||||||
|
|
||||||
|
err := l.Prepare(cfg)
|
||||||
|
suite.EqualError(err, "chart is required", "Chart should be mandatory")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) TestPrepareWithLintFlags() {
|
||||||
|
defer suite.ctrl.Finish()
|
||||||
|
|
||||||
|
cfg := Config{
|
||||||
|
Values: "width=5",
|
||||||
|
StringValues: "version=2.0",
|
||||||
|
ValuesFiles: []string{"/usr/local/underrides", "/usr/local/overrides"},
|
||||||
|
}
|
||||||
|
|
||||||
|
l := Lint{
|
||||||
|
Chart: "./uk/top_40",
|
||||||
|
}
|
||||||
|
|
||||||
|
command = func(path string, args ...string) cmd {
|
||||||
|
suite.Equal(helmBin, path)
|
||||||
|
suite.Equal([]string{"lint",
|
||||||
|
"--set", "width=5",
|
||||||
|
"--set-string", "version=2.0",
|
||||||
|
"--values", "/usr/local/underrides",
|
||||||
|
"--values", "/usr/local/overrides",
|
||||||
|
"./uk/top_40"}, args)
|
||||||
|
|
||||||
|
return suite.mockCmd
|
||||||
|
}
|
||||||
|
|
||||||
|
suite.mockCmd.EXPECT().Stdout(gomock.Any()).AnyTimes()
|
||||||
|
suite.mockCmd.EXPECT().Stderr(gomock.Any()).AnyTimes()
|
||||||
|
|
||||||
|
err := l.Prepare(cfg)
|
||||||
|
suite.Require().Nil(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) TestPrepareWithDebugFlag() {
|
||||||
|
defer suite.ctrl.Finish()
|
||||||
|
|
||||||
|
stderr := strings.Builder{}
|
||||||
|
|
||||||
|
cfg := Config{
|
||||||
|
Debug: true,
|
||||||
|
Stderr: &stderr,
|
||||||
|
}
|
||||||
|
|
||||||
|
l := Lint{
|
||||||
|
Chart: "./scotland/top_40",
|
||||||
|
}
|
||||||
|
|
||||||
|
command = func(path string, args ...string) cmd {
|
||||||
|
suite.mockCmd.EXPECT().
|
||||||
|
String().
|
||||||
|
Return(fmt.Sprintf("%s %s", path, strings.Join(args, " ")))
|
||||||
|
|
||||||
|
return suite.mockCmd
|
||||||
|
}
|
||||||
|
|
||||||
|
suite.mockCmd.EXPECT().Stdout(gomock.Any())
|
||||||
|
suite.mockCmd.EXPECT().Stderr(&stderr)
|
||||||
|
|
||||||
|
err := l.Prepare(cfg)
|
||||||
|
suite.Require().Nil(err)
|
||||||
|
|
||||||
|
want := fmt.Sprintf("Generated command: '%s --debug lint ./scotland/top_40'\n", helmBin)
|
||||||
|
suite.Equal(want, stderr.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *LintTestSuite) TestPrepareWithNamespaceFlag() {
|
||||||
|
defer suite.ctrl.Finish()
|
||||||
|
|
||||||
|
cfg := Config{
|
||||||
|
Namespace: "table-service",
|
||||||
|
}
|
||||||
|
|
||||||
|
l := Lint{
|
||||||
|
Chart: "./wales/top_40",
|
||||||
|
}
|
||||||
|
|
||||||
|
actual := []string{}
|
||||||
|
command = func(path string, args ...string) cmd {
|
||||||
|
actual = args
|
||||||
|
return suite.mockCmd
|
||||||
|
}
|
||||||
|
|
||||||
|
suite.mockCmd.EXPECT().Stdout(gomock.Any()).AnyTimes()
|
||||||
|
suite.mockCmd.EXPECT().Stderr(gomock.Any()).AnyTimes()
|
||||||
|
|
||||||
|
err := l.Prepare(cfg)
|
||||||
|
suite.Require().Nil(err)
|
||||||
|
|
||||||
|
expected := []string{"--namespace", "table-service", "lint", "./wales/top_40"}
|
||||||
|
suite.Equal(expected, actual)
|
||||||
|
}
|
Loading…
Reference in a new issue