
This drops testfiles.ReadOrDie and updated testfiles.Exists to return an error, forcing the caller to decide whether to call framework.Fail or do something else. It makes for a slightly less friendly API, but also means the package is decoupled from framework again, as per the comments at the top of the file
164 lines
5.9 KiB
Go
164 lines
5.9 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes 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 e2e
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path/filepath"
|
|
"sync"
|
|
"time"
|
|
|
|
rbacv1 "k8s.io/api/rbac/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apiserver/pkg/authentication/serviceaccount"
|
|
clientset "k8s.io/client-go/kubernetes"
|
|
podutil "k8s.io/kubernetes/pkg/api/v1/pod"
|
|
commonutils "k8s.io/kubernetes/test/e2e/common"
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
|
"k8s.io/kubernetes/test/e2e/framework/auth"
|
|
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
|
|
"k8s.io/kubernetes/test/e2e/framework/testfiles"
|
|
|
|
"github.com/onsi/ginkgo"
|
|
)
|
|
|
|
const (
|
|
serverStartTimeout = framework.PodStartTimeout + 3*time.Minute
|
|
)
|
|
|
|
var _ = framework.KubeDescribe("[Feature:Example]", func() {
|
|
f := framework.NewDefaultFramework("examples")
|
|
|
|
var c clientset.Interface
|
|
var ns string
|
|
ginkgo.BeforeEach(func() {
|
|
c = f.ClientSet
|
|
ns = f.Namespace.Name
|
|
|
|
// this test wants powerful permissions. Since the namespace names are unique, we can leave this
|
|
// lying around so we don't have to race any caches
|
|
err := auth.BindClusterRoleInNamespace(c.RbacV1(), "edit", f.Namespace.Name,
|
|
rbacv1.Subject{Kind: rbacv1.ServiceAccountKind, Namespace: f.Namespace.Name, Name: "default"})
|
|
framework.ExpectNoError(err)
|
|
|
|
err = auth.WaitForAuthorizationUpdate(c.AuthorizationV1(),
|
|
serviceaccount.MakeUsername(f.Namespace.Name, "default"),
|
|
f.Namespace.Name, "create", schema.GroupResource{Resource: "pods"}, true)
|
|
framework.ExpectNoError(err)
|
|
})
|
|
|
|
framework.KubeDescribe("Liveness", func() {
|
|
ginkgo.It("liveness pods should be automatically restarted", func() {
|
|
test := "test/fixtures/doc-yaml/user-guide/liveness"
|
|
execYaml := readFile(test, "exec-liveness.yaml.in")
|
|
httpYaml := readFile(test, "http-liveness.yaml.in")
|
|
nsFlag := fmt.Sprintf("--namespace=%v", ns)
|
|
|
|
framework.RunKubectlOrDieInput(ns, execYaml, "create", "-f", "-", nsFlag)
|
|
framework.RunKubectlOrDieInput(ns, httpYaml, "create", "-f", "-", nsFlag)
|
|
|
|
// Since both containers start rapidly, we can easily run this test in parallel.
|
|
var wg sync.WaitGroup
|
|
passed := true
|
|
checkRestart := func(podName string, timeout time.Duration) {
|
|
err := e2epod.WaitForPodNameRunningInNamespace(c, podName, ns)
|
|
framework.ExpectNoError(err)
|
|
for t := time.Now(); time.Since(t) < timeout; time.Sleep(framework.Poll) {
|
|
pod, err := c.CoreV1().Pods(ns).Get(context.TODO(), podName, metav1.GetOptions{})
|
|
framework.ExpectNoError(err, fmt.Sprintf("getting pod %s", podName))
|
|
stat := podutil.GetExistingContainerStatus(pod.Status.ContainerStatuses, podName)
|
|
framework.Logf("Pod: %s, restart count:%d", stat.Name, stat.RestartCount)
|
|
if stat.RestartCount > 0 {
|
|
framework.Logf("Saw %v restart, succeeded...", podName)
|
|
wg.Done()
|
|
return
|
|
}
|
|
}
|
|
framework.Logf("Failed waiting for %v restart! ", podName)
|
|
passed = false
|
|
wg.Done()
|
|
}
|
|
|
|
ginkgo.By("Check restarts")
|
|
|
|
// Start the "actual test", and wait for both pods to complete.
|
|
// If 2 fail: Something is broken with the test (or maybe even with liveness).
|
|
// If 1 fails: Its probably just an error in the examples/ files themselves.
|
|
wg.Add(2)
|
|
for _, c := range []string{"liveness-http", "liveness-exec"} {
|
|
go checkRestart(c, 2*time.Minute)
|
|
}
|
|
wg.Wait()
|
|
if !passed {
|
|
framework.Failf("At least one liveness example failed. See the logs above.")
|
|
}
|
|
})
|
|
})
|
|
|
|
framework.KubeDescribe("Secret", func() {
|
|
ginkgo.It("should create a pod that reads a secret", func() {
|
|
test := "test/fixtures/doc-yaml/user-guide/secrets"
|
|
secretYaml := readFile(test, "secret.yaml")
|
|
podYaml := readFile(test, "secret-pod.yaml.in")
|
|
|
|
nsFlag := fmt.Sprintf("--namespace=%v", ns)
|
|
podName := "secret-test-pod"
|
|
|
|
ginkgo.By("creating secret and pod")
|
|
framework.RunKubectlOrDieInput(ns, secretYaml, "create", "-f", "-", nsFlag)
|
|
framework.RunKubectlOrDieInput(ns, podYaml, "create", "-f", "-", nsFlag)
|
|
err := e2epod.WaitForPodNoLongerRunningInNamespace(c, podName, ns)
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By("checking if secret was read correctly")
|
|
_, err = framework.LookForStringInLog(ns, "secret-test-pod", "test-container", "value-1", serverStartTimeout)
|
|
framework.ExpectNoError(err)
|
|
})
|
|
})
|
|
|
|
framework.KubeDescribe("Downward API", func() {
|
|
ginkgo.It("should create a pod that prints his name and namespace", func() {
|
|
test := "test/fixtures/doc-yaml/user-guide/downward-api"
|
|
podYaml := readFile(test, "dapi-pod.yaml.in")
|
|
nsFlag := fmt.Sprintf("--namespace=%v", ns)
|
|
podName := "dapi-test-pod"
|
|
|
|
ginkgo.By("creating the pod")
|
|
framework.RunKubectlOrDieInput(ns, podYaml, "create", "-f", "-", nsFlag)
|
|
err := e2epod.WaitForPodNoLongerRunningInNamespace(c, podName, ns)
|
|
framework.ExpectNoError(err)
|
|
|
|
ginkgo.By("checking if name and namespace were passed correctly")
|
|
_, err = framework.LookForStringInLog(ns, podName, "test-container", fmt.Sprintf("MY_POD_NAMESPACE=%v", ns), serverStartTimeout)
|
|
framework.ExpectNoError(err)
|
|
_, err = framework.LookForStringInLog(ns, podName, "test-container", fmt.Sprintf("MY_POD_NAME=%v", podName), serverStartTimeout)
|
|
framework.ExpectNoError(err)
|
|
})
|
|
})
|
|
})
|
|
|
|
func readFile(test, file string) string {
|
|
from := filepath.Join(test, file)
|
|
data, err := testfiles.Read(from)
|
|
if err != nil {
|
|
framework.Fail(err.Error())
|
|
}
|
|
return commonutils.SubstituteImageName(string(data))
|
|
}
|