mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-03 23:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			96 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			3.2 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 ui
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"net/http"
 | 
						|
	"time"
 | 
						|
 | 
						|
	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | 
						|
	"k8s.io/apimachinery/pkg/labels"
 | 
						|
	utilnet "k8s.io/apimachinery/pkg/util/net"
 | 
						|
	"k8s.io/apimachinery/pkg/util/wait"
 | 
						|
	"k8s.io/kubernetes/test/e2e/framework"
 | 
						|
	e2elog "k8s.io/kubernetes/test/e2e/framework/log"
 | 
						|
	testutils "k8s.io/kubernetes/test/utils"
 | 
						|
 | 
						|
	"github.com/onsi/ginkgo"
 | 
						|
)
 | 
						|
 | 
						|
var _ = SIGDescribe("Kubernetes Dashboard", func() {
 | 
						|
	ginkgo.BeforeEach(func() {
 | 
						|
		// TODO(kubernetes/kubernetes#61559): Enable dashboard here rather than skip the test.
 | 
						|
		framework.SkipIfProviderIs("gke")
 | 
						|
	})
 | 
						|
 | 
						|
	const (
 | 
						|
		uiServiceName = "kubernetes-dashboard"
 | 
						|
		uiAppName     = uiServiceName
 | 
						|
		uiNamespace   = metav1.NamespaceSystem
 | 
						|
		uiRedirect    = "/ui"
 | 
						|
 | 
						|
		serverStartTimeout = 1 * time.Minute
 | 
						|
	)
 | 
						|
 | 
						|
	f := framework.NewDefaultFramework(uiServiceName)
 | 
						|
 | 
						|
	ginkgo.It("should check that the kubernetes-dashboard instance is alive", func() {
 | 
						|
		ginkgo.By("Checking whether the kubernetes-dashboard service exists.")
 | 
						|
		err := framework.WaitForService(f.ClientSet, uiNamespace, uiServiceName, true, framework.Poll, framework.ServiceStartTimeout)
 | 
						|
		framework.ExpectNoError(err)
 | 
						|
 | 
						|
		ginkgo.By("Checking to make sure the kubernetes-dashboard pods are running")
 | 
						|
		selector := labels.SelectorFromSet(labels.Set(map[string]string{"k8s-app": uiAppName}))
 | 
						|
		err = testutils.WaitForPodsWithLabelRunning(f.ClientSet, uiNamespace, selector)
 | 
						|
		framework.ExpectNoError(err)
 | 
						|
 | 
						|
		ginkgo.By("Checking to make sure we get a response from the kubernetes-dashboard.")
 | 
						|
		err = wait.Poll(framework.Poll, serverStartTimeout, func() (bool, error) {
 | 
						|
			var status int
 | 
						|
			proxyRequest, errProxy := framework.GetServicesProxyRequest(f.ClientSet, f.ClientSet.CoreV1().RESTClient().Get())
 | 
						|
			if errProxy != nil {
 | 
						|
				e2elog.Logf("Get services proxy request failed: %v", errProxy)
 | 
						|
			}
 | 
						|
 | 
						|
			ctx, cancel := context.WithTimeout(context.Background(), framework.SingleCallTimeout)
 | 
						|
			defer cancel()
 | 
						|
 | 
						|
			// Query against the proxy URL for the kubernetes-dashboard service.
 | 
						|
			err := proxyRequest.Namespace(uiNamespace).
 | 
						|
				Context(ctx).
 | 
						|
				Name(utilnet.JoinSchemeNamePort("https", uiServiceName, "")).
 | 
						|
				Timeout(framework.SingleCallTimeout).
 | 
						|
				Do().
 | 
						|
				StatusCode(&status).
 | 
						|
				Error()
 | 
						|
			if err != nil {
 | 
						|
				if ctx.Err() != nil {
 | 
						|
					framework.Failf("Request to kubernetes-dashboard failed: %v", err)
 | 
						|
					return true, err
 | 
						|
				}
 | 
						|
				e2elog.Logf("Request to kubernetes-dashboard failed: %v", err)
 | 
						|
			} else if status != http.StatusOK {
 | 
						|
				e2elog.Logf("Unexpected status from kubernetes-dashboard: %v", status)
 | 
						|
			}
 | 
						|
			// Don't return err here as it aborts polling.
 | 
						|
			return status == http.StatusOK, nil
 | 
						|
		})
 | 
						|
		framework.ExpectNoError(err)
 | 
						|
	})
 | 
						|
})
 |