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.
71 lines
1.9 KiB
71 lines
1.9 KiB
/*
|
|
Copyright 2017 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 releasetesting
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"k8s.io/helm/pkg/hapi/release"
|
|
)
|
|
|
|
func TestCreateTestPodSuccess(t *testing.T) {
|
|
env := testEnvFixture()
|
|
test := testFixture()
|
|
|
|
if err := env.createTestPod(test); err != nil {
|
|
t.Errorf("Expected no error, got an error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestCreateTestPodFailure(t *testing.T) {
|
|
env := testEnvFixture()
|
|
env.KubeClient = &mockKubeClient{
|
|
err: errors.New("We ran out of budget and couldn't create finding-nemo"),
|
|
}
|
|
test := testFixture()
|
|
|
|
if err := env.createTestPod(test); err == nil {
|
|
t.Errorf("Expected error, got no error")
|
|
}
|
|
if test.result.Info == "" {
|
|
t.Errorf("Expected error to be saved in test result info but found empty string")
|
|
}
|
|
if test.result.Status != release.TestRun_FAILURE {
|
|
t.Errorf("Expected test result status to be failure but got: %v", test.result.Status)
|
|
}
|
|
}
|
|
|
|
func TestStreamMessage(t *testing.T) {
|
|
env := testEnvFixture()
|
|
defer close(env.Mesages)
|
|
|
|
expectedMessage := "testing streamMessage"
|
|
expectedStatus := release.TestRun_SUCCESS
|
|
if err := env.streamMessage(expectedMessage, expectedStatus); err != nil {
|
|
t.Errorf("Expected no errors, got: %s", err)
|
|
}
|
|
|
|
got := <-env.Mesages
|
|
if got.Msg != expectedMessage {
|
|
t.Errorf("Expected message: %s, got: %s", expectedMessage, got.Msg)
|
|
}
|
|
if got.Status != expectedStatus {
|
|
t.Errorf("Expected status: %v, got: %v", expectedStatus, got.Status)
|
|
}
|
|
}
|