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.
107 lines
3.1 KiB
107 lines
3.1 KiB
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
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 (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"k8s.io/helm/pkg/helm"
|
|
"k8s.io/helm/pkg/proto/hapi/release"
|
|
)
|
|
|
|
func TestReleaseTesting(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
args []string
|
|
flags []string
|
|
responses map[string]release.TestRun_Status
|
|
fail bool
|
|
}{
|
|
{
|
|
name: "basic test",
|
|
args: []string{"example-release"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{"PASSED: green lights everywhere": release.TestRun_SUCCESS},
|
|
fail: false,
|
|
},
|
|
{
|
|
name: "test failure",
|
|
args: []string{"example-fail"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{"FAILURE: red lights everywhere": release.TestRun_FAILURE},
|
|
fail: true,
|
|
},
|
|
{
|
|
name: "test unknown",
|
|
args: []string{"example-unknown"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{"UNKNOWN: yellow lights everywhere": release.TestRun_UNKNOWN},
|
|
fail: false,
|
|
},
|
|
{
|
|
name: "test error",
|
|
args: []string{"example-error"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{"ERROR: yellow lights everywhere": release.TestRun_FAILURE},
|
|
fail: true,
|
|
},
|
|
{
|
|
name: "test running",
|
|
args: []string{"example-running"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{"RUNNING: things are happpeningggg": release.TestRun_RUNNING},
|
|
fail: false,
|
|
},
|
|
{
|
|
name: "multiple tests example",
|
|
args: []string{"example-suite"},
|
|
flags: []string{},
|
|
responses: map[string]release.TestRun_Status{
|
|
"RUNNING: things are happpeningggg": release.TestRun_RUNNING,
|
|
"PASSED: party time": release.TestRun_SUCCESS,
|
|
"RUNNING: things are happening again": release.TestRun_RUNNING,
|
|
"FAILURE: good thing u checked :)": release.TestRun_FAILURE,
|
|
"RUNNING: things are happpeningggg yet again": release.TestRun_RUNNING,
|
|
"PASSED: feel free to party again": release.TestRun_SUCCESS},
|
|
fail: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
c := &helm.FakeClient{Responses: tt.responses}
|
|
|
|
buf := bytes.NewBuffer(nil)
|
|
cmd := newReleaseTestCmd(c, buf)
|
|
cmd.ParseFlags(tt.flags)
|
|
|
|
err := cmd.RunE(cmd, tt.args)
|
|
if err == nil && tt.fail {
|
|
t.Errorf("%q did not fail but should have failed", tt.name)
|
|
}
|
|
|
|
if err != nil {
|
|
if tt.fail {
|
|
continue
|
|
} else {
|
|
t.Errorf("%q reported error: %s", tt.name, err)
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|