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.
72 lines
2.2 KiB
72 lines
2.2 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 main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"helm.sh/helm/v3/pkg/release"
|
|
)
|
|
|
|
func TestGetValuesCmd(t *testing.T) {
|
|
tests := []cmdTestCase{{
|
|
name: "get values with a release",
|
|
cmd: "get values thomas-guide",
|
|
golden: "output/get-values.txt",
|
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
|
}, {
|
|
name: "get values requires release name arg",
|
|
cmd: "get values",
|
|
golden: "output/get-values-args.txt",
|
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
|
wantError: true,
|
|
}, {
|
|
name: "get values thomas-guide (all)",
|
|
cmd: "get values thomas-guide --all",
|
|
golden: "output/get-values-all.txt",
|
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
|
}, {
|
|
name: "get values to json",
|
|
cmd: "get values thomas-guide --output json",
|
|
golden: "output/values.json",
|
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
|
}, {
|
|
name: "get values to yaml",
|
|
cmd: "get values thomas-guide --output yaml",
|
|
golden: "output/values.yaml",
|
|
rels: []*release.Release{release.Mock(&release.MockReleaseOptions{Name: "thomas-guide"})},
|
|
}}
|
|
runTestCmd(t, tests)
|
|
}
|
|
|
|
func TestGetValuesCompletion(t *testing.T) {
|
|
checkReleaseCompletion(t, "get values", false)
|
|
}
|
|
|
|
func TestGetValuesRevisionCompletion(t *testing.T) {
|
|
revisionFlagCompletionTest(t, "get values")
|
|
}
|
|
|
|
func TestGetValuesOutputCompletion(t *testing.T) {
|
|
outputFlagCompletionTest(t, "get values")
|
|
}
|
|
|
|
func TestGetValuesFileCompletion(t *testing.T) {
|
|
checkFileCompletion(t, "get values", false)
|
|
checkFileCompletion(t, "get values myrelease", false)
|
|
}
|