318 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			318 lines
		
	
	
		
			8.2 KiB
		
	
	
	
		
			Go
		
	
	
	
| package app
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"path/filepath"
 | |
| 	"strings"
 | |
| 	"sync"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/google/go-cmp/cmp"
 | |
| 	"github.com/helmfile/vals"
 | |
| 	"github.com/stretchr/testify/require"
 | |
| 	"go.uber.org/zap"
 | |
| 
 | |
| 	"github.com/helmfile/helmfile/pkg/exectest"
 | |
| 	ffs "github.com/helmfile/helmfile/pkg/filesystem"
 | |
| 	"github.com/helmfile/helmfile/pkg/helmexec"
 | |
| 	"github.com/helmfile/helmfile/pkg/testhelper"
 | |
| )
 | |
| 
 | |
| func TestLint(t *testing.T) {
 | |
| 	type fields struct {
 | |
| 		skipNeeds              bool
 | |
| 		includeNeeds           bool
 | |
| 		includeTransitiveNeeds bool
 | |
| 	}
 | |
| 
 | |
| 	type testcase struct {
 | |
| 		fields    fields
 | |
| 		ns        string
 | |
| 		error     string
 | |
| 		selectors []string
 | |
| 		linted    []exectest.Release
 | |
| 	}
 | |
| 
 | |
| 	check := func(t *testing.T, tc testcase) {
 | |
| 		t.Helper()
 | |
| 
 | |
| 		wantLints := tc.linted
 | |
| 
 | |
| 		var helm = &exectest.Helm{
 | |
| 			FailOnUnexpectedList: true,
 | |
| 			FailOnUnexpectedDiff: true,
 | |
| 			DiffMutex:            &sync.Mutex{},
 | |
| 			ChartsMutex:          &sync.Mutex{},
 | |
| 			ReleasesMutex:        &sync.Mutex{},
 | |
| 			Helm3:                true,
 | |
| 		}
 | |
| 
 | |
| 		bs := runWithLogCapture(t, "debug", func(t *testing.T, logger *zap.SugaredLogger) {
 | |
| 			t.Helper()
 | |
| 
 | |
| 			valsRuntime, err := vals.New(vals.Options{CacheSize: 32})
 | |
| 			if err != nil {
 | |
| 				t.Errorf("unexpected error creating vals runtime: %v", err)
 | |
| 			}
 | |
| 
 | |
| 			files := map[string]string{
 | |
| 				"/path/to/helmfile.yaml": `
 | |
| releases:
 | |
| - name: logging
 | |
|   chart: incubator/raw
 | |
|   namespace: kube-system
 | |
| 
 | |
| - name: kubernetes-external-secrets
 | |
|   chart: incubator/raw
 | |
|   namespace: kube-system
 | |
|   needs:
 | |
|   - kube-system/logging
 | |
| 
 | |
| - name: external-secrets
 | |
|   chart: incubator/raw
 | |
|   namespace: default
 | |
|   labels:
 | |
|     app: test
 | |
|   needs:
 | |
|   - kube-system/kubernetes-external-secrets
 | |
| 
 | |
| - name: my-release
 | |
|   chart: incubator/raw
 | |
|   namespace: default
 | |
|   labels:
 | |
|     app: test
 | |
|   needs:
 | |
|   - default/external-secrets
 | |
| 
 | |
| 
 | |
| # Disabled releases are treated as missing
 | |
| - name: disabled
 | |
|   chart: incubator/raw
 | |
|   namespace: kube-system
 | |
|   installed: false
 | |
| 
 | |
| - name: test2
 | |
|   chart: incubator/raw
 | |
|   needs:
 | |
|   - kube-system/disabled
 | |
| 
 | |
| - name: test3
 | |
|   chart: incubator/raw
 | |
|   needs:
 | |
|   - test2
 | |
| `,
 | |
| 			}
 | |
| 
 | |
| 			app := appWithFs(&App{
 | |
| 				OverrideHelmBinary:  DefaultHelmBinary,
 | |
| 				fs:                  ffs.DefaultFileSystem(),
 | |
| 				OverrideKubeContext: "default",
 | |
| 				Env:                 "default",
 | |
| 				Logger:              logger,
 | |
| 				helms: map[helmKey]helmexec.Interface{
 | |
| 					createHelmKey("helm", "default"): helm,
 | |
| 				},
 | |
| 				valsRuntime: valsRuntime,
 | |
| 			}, files)
 | |
| 
 | |
| 			if tc.ns != "" {
 | |
| 				app.Namespace = tc.ns
 | |
| 			}
 | |
| 
 | |
| 			if tc.selectors != nil {
 | |
| 				app.Selectors = tc.selectors
 | |
| 			}
 | |
| 
 | |
| 			lintErr := app.Lint(applyConfig{
 | |
| 				// if we check log output, concurrency must be 1. otherwise the test becomes non-deterministic.
 | |
| 				concurrency:            1,
 | |
| 				logger:                 logger,
 | |
| 				skipNeeds:              tc.fields.skipNeeds,
 | |
| 				includeNeeds:           tc.fields.includeNeeds,
 | |
| 				includeTransitiveNeeds: tc.fields.includeTransitiveNeeds,
 | |
| 			})
 | |
| 
 | |
| 			var gotErr string
 | |
| 			if lintErr != nil {
 | |
| 				gotErr = lintErr.Error()
 | |
| 			}
 | |
| 
 | |
| 			if d := cmp.Diff(tc.error, gotErr); d != "" {
 | |
| 				t.Fatalf("unexpected error: want (-), got (+): %s", d)
 | |
| 			}
 | |
| 
 | |
| 			require.Equal(t, wantLints, helm.Linted)
 | |
| 		})
 | |
| 
 | |
| 		testNameComponents := strings.Split(t.Name(), "/")
 | |
| 		testBaseName := strings.ToLower(
 | |
| 			strings.ReplaceAll(
 | |
| 				testNameComponents[len(testNameComponents)-1],
 | |
| 				" ",
 | |
| 				"_",
 | |
| 			),
 | |
| 		)
 | |
| 		wantLogFileDir := filepath.Join("testdata", "app_lint_test")
 | |
| 		wantLogFile := filepath.Join(wantLogFileDir, testBaseName)
 | |
| 		wantLogData, err := os.ReadFile(wantLogFile)
 | |
| 		updateLogFile := err != nil
 | |
| 		wantLog := string(wantLogData)
 | |
| 		gotLog := bs.String()
 | |
| 		if updateLogFile {
 | |
| 			if err := os.MkdirAll(wantLogFileDir, 0755); err != nil {
 | |
| 				t.Fatalf("unable to create directory %q: %v", wantLogFileDir, err)
 | |
| 			}
 | |
| 			if err := os.WriteFile(wantLogFile, bs.Bytes(), 0644); err != nil {
 | |
| 				t.Fatalf("unable to update lint log snapshot: %v", err)
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		diff, exists := testhelper.Diff(wantLog, gotLog, 3)
 | |
| 		if exists {
 | |
| 			t.Errorf("unexpected log:\nDIFF\n%s\nEOD", diff)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	t.Run("skip-needs=true on selected by default", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"app=test"},
 | |
| 			linted:    []exectest.Release{{Name: "external-secrets", Flags: []string{"--namespace", "default"}}, {Name: "my-release", Flags: []string{"--namespace", "default"}}},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("fail on unselected need by default when skip-need=false", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			selectors: []string{"app=test"},
 | |
| 			error:     `in ./helmfile.yaml: release(s) "default/default/external-secrets" depend(s) on an undefined release "default/kube-system/kubernetes-external-secrets". Perhaps you made a typo in "needs" or forgot defining a release named "kubernetes-external-secrets" with appropriate "namespace" and "kubeContext"?`,
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("skip-needs", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"app=test"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "external-secrets", Flags: []string{"--namespace", "default"}},
 | |
| 				{Name: "my-release", Flags: []string{"--namespace", "default"}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-needs", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:    false,
 | |
| 				includeNeeds: true,
 | |
| 			},
 | |
| 			error:     ``,
 | |
| 			selectors: []string{"app=test"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "kubernetes-external-secrets", Flags: []string{"--namespace", "kube-system"}},
 | |
| 				{Name: "external-secrets", Flags: []string{"--namespace", "default"}},
 | |
| 				{Name: "my-release", Flags: []string{"--namespace", "default"}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-transitive-needs", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:              false,
 | |
| 				includeTransitiveNeeds: true,
 | |
| 			},
 | |
| 			error:     ``,
 | |
| 			selectors: []string{"app=test"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "logging", Flags: []string{"--namespace", "kube-system"}},
 | |
| 				{Name: "kubernetes-external-secrets", Flags: []string{"--namespace", "kube-system"}},
 | |
| 				{Name: "external-secrets", Flags: []string{"--namespace", "default"}},
 | |
| 				{Name: "my-release", Flags: []string{"--namespace", "default"}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-needs should not fail on disabled direct need", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:    false,
 | |
| 				includeNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"name=test2"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "test2", Flags: []string{}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-needs should not fail on disabled transitive need", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:    false,
 | |
| 				includeNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"name=test3"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "test2", Flags: []string{}},
 | |
| 				{Name: "test3", Flags: []string{}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-transitive-needs should not fail on disabled transitive need", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:              false,
 | |
| 				includeNeeds:           false,
 | |
| 				includeTransitiveNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"name=test3"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "test2", Flags: []string{}},
 | |
| 				{Name: "test3", Flags: []string{}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-needs with include-transitive-needs should not fail on disabled direct need", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:              false,
 | |
| 				includeNeeds:           true,
 | |
| 				includeTransitiveNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"name=test2"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "test2", Flags: []string{}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("include-needs with include-transitive-needs should not fail on disabled transitive need", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			fields: fields{
 | |
| 				skipNeeds:              false,
 | |
| 				includeNeeds:           true,
 | |
| 				includeTransitiveNeeds: true,
 | |
| 			},
 | |
| 			selectors: []string{"name=test3"},
 | |
| 			linted: []exectest.Release{
 | |
| 				{Name: "test2", Flags: []string{}},
 | |
| 				{Name: "test3", Flags: []string{}},
 | |
| 			},
 | |
| 		})
 | |
| 	})
 | |
| 
 | |
| 	t.Run("bad selector", func(t *testing.T) {
 | |
| 		check(t, testcase{
 | |
| 			selectors: []string{"app=test_non_existent"},
 | |
| 			linted:    nil,
 | |
| 			error:     "err: no releases found that matches specified selector(app=test_non_existent) and environment(default), in any helmfile",
 | |
| 		})
 | |
| 	})
 | |
| }
 |