mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.5 KiB
92 lines
2.5 KiB
/*
|
|
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 action
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"io"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"helm.sh/helm/v4/pkg/cli"
|
|
kubefake "helm.sh/helm/v4/pkg/kube/fake"
|
|
release "helm.sh/helm/v4/pkg/release/v1"
|
|
)
|
|
|
|
func TestNewReleaseTesting(t *testing.T) {
|
|
config := actionConfigFixture(t)
|
|
client := NewReleaseTesting(config)
|
|
|
|
assert.NotNil(t, client)
|
|
assert.Equal(t, config, client.cfg)
|
|
}
|
|
|
|
func TestReleaseTestingRun_UnreachableKubeClient(t *testing.T) {
|
|
config := actionConfigFixture(t)
|
|
failingKubeClient := kubefake.FailingKubeClient{PrintingKubeClient: kubefake.PrintingKubeClient{Out: io.Discard}, DummyResources: nil}
|
|
failingKubeClient.ConnectionError = errors.New("connection refused")
|
|
config.KubeClient = &failingKubeClient
|
|
|
|
client := NewReleaseTesting(config)
|
|
result, err := client.Run("")
|
|
assert.Nil(t, result)
|
|
assert.Error(t, err)
|
|
}
|
|
|
|
func TestReleaseTestingGetPodLogs_FilterEvents(t *testing.T) {
|
|
config := actionConfigFixture(t)
|
|
require.NoError(t, config.Init(cli.New().RESTClientGetter(), "", os.Getenv("HELM_DRIVER")))
|
|
client := NewReleaseTesting(config)
|
|
client.Filters[ExcludeNameFilter] = []string{"event-1"}
|
|
client.Filters[IncludeNameFilter] = []string{"event-3"}
|
|
|
|
hooks := []*release.Hook{
|
|
{
|
|
Name: "event-1",
|
|
Events: []release.HookEvent{release.HookTest},
|
|
},
|
|
{
|
|
Name: "event-2",
|
|
Events: []release.HookEvent{release.HookTest},
|
|
},
|
|
}
|
|
|
|
out := &bytes.Buffer{}
|
|
require.NoError(t, client.GetPodLogs(out, &release.Release{Hooks: hooks}))
|
|
|
|
assert.Empty(t, out.String())
|
|
}
|
|
|
|
func TestReleaseTestingGetPodLogs_PodRetrievalError(t *testing.T) {
|
|
config := actionConfigFixture(t)
|
|
require.NoError(t, config.Init(cli.New().RESTClientGetter(), "", os.Getenv("HELM_DRIVER")))
|
|
client := NewReleaseTesting(config)
|
|
|
|
hooks := []*release.Hook{
|
|
{
|
|
Name: "event-1",
|
|
Events: []release.HookEvent{release.HookTest},
|
|
},
|
|
}
|
|
|
|
require.ErrorContains(t, client.GetPodLogs(&bytes.Buffer{}, &release.Release{Hooks: hooks}), "unable to get pod logs")
|
|
}
|