2015-07-22 23:06:26 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 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 e2e
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-10-18 13:16:52 +00:00
|
|
|
"k8s.io/kubernetes/pkg/labels"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/wait"
|
2016-04-07 17:21:31 +00:00
|
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
2015-07-22 23:06:26 +00:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
)
|
|
|
|
|
2016-04-07 17:21:31 +00:00
|
|
|
var _ = framework.KubeDescribe("Kubernetes Dashboard", func() {
|
2015-07-22 23:06:26 +00:00
|
|
|
const (
|
2016-01-29 12:37:06 +00:00
|
|
|
uiServiceName = "kubernetes-dashboard"
|
2015-10-18 13:16:52 +00:00
|
|
|
uiAppName = uiServiceName
|
2015-07-22 23:06:26 +00:00
|
|
|
uiNamespace = api.NamespaceSystem
|
|
|
|
|
|
|
|
serverStartTimeout = 1 * time.Minute
|
|
|
|
)
|
|
|
|
|
2016-04-07 17:21:31 +00:00
|
|
|
f := framework.NewDefaultFramework(uiServiceName)
|
2015-07-22 23:06:26 +00:00
|
|
|
|
2016-01-29 12:37:06 +00:00
|
|
|
It("should check that the kubernetes-dashboard instance is alive", func() {
|
|
|
|
By("Checking whether the kubernetes-dashboard service exists.")
|
2016-04-07 17:21:31 +00:00
|
|
|
err := framework.WaitForService(f.Client, uiNamespace, uiServiceName, true, framework.Poll, framework.ServiceStartTimeout)
|
2015-07-22 23:06:26 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2016-01-29 12:37:06 +00:00
|
|
|
By("Checking to make sure the kubernetes-dashboard pods are running")
|
2015-10-18 13:16:52 +00:00
|
|
|
selector := labels.SelectorFromSet(labels.Set(map[string]string{"k8s-app": uiAppName}))
|
2016-04-07 17:21:31 +00:00
|
|
|
err = framework.WaitForPodsWithLabelRunning(f.Client, uiNamespace, selector)
|
2015-07-22 23:06:26 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2016-01-29 12:37:06 +00:00
|
|
|
By("Checking to make sure we get a response from the kubernetes-dashboard.")
|
2016-04-07 17:21:31 +00:00
|
|
|
err = wait.Poll(framework.Poll, serverStartTimeout, func() (bool, error) {
|
2015-07-22 23:06:26 +00:00
|
|
|
var status int
|
2016-04-07 17:21:31 +00:00
|
|
|
proxyRequest, errProxy := framework.GetServicesProxyRequest(f.Client, f.Client.Get())
|
2015-11-18 03:42:03 +00:00
|
|
|
if errProxy != nil {
|
2016-04-07 17:21:31 +00:00
|
|
|
framework.Logf("Get services proxy request failed: %v", errProxy)
|
2015-11-18 03:42:03 +00:00
|
|
|
}
|
2015-07-22 23:06:26 +00:00
|
|
|
// Query against the proxy URL for the kube-ui service.
|
2015-11-18 03:42:03 +00:00
|
|
|
err := proxyRequest.Namespace(uiNamespace).
|
2015-07-22 23:06:26 +00:00
|
|
|
Name(uiServiceName).
|
2016-04-07 17:21:31 +00:00
|
|
|
Timeout(framework.SingleCallTimeout).
|
2015-07-22 23:06:26 +00:00
|
|
|
Do().
|
|
|
|
StatusCode(&status).
|
|
|
|
Error()
|
|
|
|
if status != http.StatusOK {
|
2016-04-07 17:21:31 +00:00
|
|
|
framework.Logf("Unexpected status from kubernetes-dashboard: %v", status)
|
2015-07-22 23:06:26 +00:00
|
|
|
} else if err != nil {
|
2016-04-07 17:21:31 +00:00
|
|
|
framework.Logf("Request to kube-ui failed: %v", err)
|
2015-07-22 23:06:26 +00:00
|
|
|
}
|
|
|
|
// Don't return err here as it aborts polling.
|
|
|
|
return status == http.StatusOK, nil
|
|
|
|
})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
By("Checking that the ApiServer /ui endpoint redirects to a valid server.")
|
|
|
|
var status int
|
|
|
|
err = f.Client.Get().
|
|
|
|
AbsPath("/ui").
|
2016-04-07 17:21:31 +00:00
|
|
|
Timeout(framework.SingleCallTimeout).
|
2015-07-22 23:06:26 +00:00
|
|
|
Do().
|
|
|
|
StatusCode(&status).
|
|
|
|
Error()
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(status).To(Equal(http.StatusOK), "Unexpected status from /ui")
|
|
|
|
})
|
|
|
|
})
|