/* Copyright The Helm Authors. 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 cmd import ( "bytes" "io" "os" "strings" "testing" shellwords "github.com/mattn/go-shellwords" "github.com/spf13/cobra" "helm.sh/helm/v4/internal/test" "helm.sh/helm/v4/pkg/action" chartutil "helm.sh/helm/v4/pkg/chart/v2/util" "helm.sh/helm/v4/pkg/cli" kubefake "helm.sh/helm/v4/pkg/kube/fake" release "helm.sh/helm/v4/pkg/release/v1" "helm.sh/helm/v4/pkg/storage" "helm.sh/helm/v4/pkg/storage/driver" "helm.sh/helm/v4/pkg/time" ) func testTimestamper() time.Time { return time.Unix(242085845, 0).UTC() } func init() { action.Timestamper = testTimestamper } func runTestCmd(t *testing.T, tests []cmdTestCase) { t.Helper() for _, tt := range tests { for i := 0; i <= tt.repeat; i++ { t.Run(tt.name, func(t *testing.T) { defer resetEnv()() storage := storageFixture() for _, rel := range tt.rels { if err := storage.Create(rel); err != nil { t.Fatal(err) } } t.Logf("running cmd (attempt %d): %s", i+1, tt.cmd) _, out, err := executeActionCommandC(storage, tt.cmd) if tt.wantError && err == nil { t.Errorf("expected error, got success with the following output:\n%s", out) } if !tt.wantError && err != nil { t.Errorf("expected no error, got: '%v'", err) } if tt.golden != "" { test.AssertGoldenString(t, out, tt.golden) } }) } } } func storageFixture() *storage.Storage { return storage.Init(driver.NewMemory()) } func executeActionCommandC(store *storage.Storage, cmd string) (*cobra.Command, string, error) { return executeActionCommandStdinC(store, nil, cmd) } func executeActionCommandStdinC(store *storage.Storage, in *os.File, cmd string) (*cobra.Command, string, error) { args, err := shellwords.Parse(cmd) if err != nil { return nil, "", err } buf := new(bytes.Buffer) actionConfig := &action.Configuration{ Releases: store, KubeClient: &kubefake.PrintingKubeClient{Out: io.Discard}, Capabilities: chartutil.DefaultCapabilities, } root, err := newRootCmdWithConfig(actionConfig, buf, args, SetupLogging) if err != nil { return nil, "", err } root.SetOut(buf) root.SetErr(buf) root.SetArgs(args) oldStdin := os.Stdin if in != nil { root.SetIn(in) os.Stdin = in } if mem, ok := store.Driver.(*driver.Memory); ok { mem.SetNamespace(settings.Namespace()) } c, err := root.ExecuteC() result := buf.String() os.Stdin = oldStdin return c, result, err } // cmdTestCase describes a test case that works with releases. type cmdTestCase struct { name string cmd string golden string wantError bool // Rels are the available releases at the start of the test. rels []*release.Release // Number of repeats (in case a feature was previously flaky and the test checks // it's now stably producing identical results). 0 means test is run exactly once. repeat int } func executeActionCommand(cmd string) (*cobra.Command, string, error) { return executeActionCommandC(storageFixture(), cmd) } func resetEnv() func() { origEnv := os.Environ() return func() { os.Clearenv() for _, pair := range origEnv { kv := strings.SplitN(pair, "=", 2) os.Setenv(kv[0], kv[1]) } settings = cli.New() } }