2021-02-03 19:32:29 +00:00
// Copyright 2020-2021 the Pinniped contributors. All Rights Reserved.
2021-01-22 18:00:27 +00:00
// SPDX-License-Identifier: Apache-2.0
package integration
import (
"context"
"encoding/base64"
"encoding/json"
"fmt"
"net/http"
"net/url"
"testing"
"time"
"github.com/stretchr/testify/require"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
2021-02-12 01:22:47 +00:00
"sigs.k8s.io/yaml"
2021-01-22 18:00:27 +00:00
loginv1alpha1 "go.pinniped.dev/generated/1.20/apis/concierge/login/v1alpha1"
2021-02-12 01:22:47 +00:00
"go.pinniped.dev/internal/concierge/impersonator"
2021-01-22 18:00:27 +00:00
"go.pinniped.dev/test/library"
)
// Smoke test to see if the kubeconfig works and the cluster is reachable.
func TestImpersonationProxy ( t * testing . T ) {
env := library . IntegrationEnv ( t )
if env . Proxy == "" {
t . Skip ( "this test can only run in environments with the in-cluster proxy right now" )
return
}
2021-02-12 01:22:47 +00:00
ctx , cancel := context . WithTimeout ( context . Background ( ) , 10 * time . Minute )
2021-01-22 18:00:27 +00:00
defer cancel ( )
// Create a client using the admin kubeconfig.
2021-02-12 01:22:47 +00:00
adminClient := library . NewKubernetesClientset ( t )
2021-01-22 18:00:27 +00:00
// Create a WebhookAuthenticator.
authenticator := library . CreateTestWebhookAuthenticator ( ctx , t )
2021-02-12 01:22:47 +00:00
// The address of the ClusterIP service that points at the impersonation proxy's port
2021-01-22 18:00:27 +00:00
proxyServiceURL := fmt . Sprintf ( "https://%s-proxy.%s.svc.cluster.local" , env . ConciergeAppName , env . ConciergeNamespace )
t . Logf ( "making kubeconfig that points to %q" , proxyServiceURL )
kubeconfig := & rest . Config {
Host : proxyServiceURL ,
TLSClientConfig : rest . TLSClientConfig { Insecure : true } ,
BearerToken : makeImpersonationTestToken ( t , authenticator ) ,
Proxy : func ( req * http . Request ) ( * url . URL , error ) {
proxyURL , err := url . Parse ( env . Proxy )
require . NoError ( t , err )
t . Logf ( "passing request for %s through proxy %s" , req . URL , proxyURL . String ( ) )
return proxyURL , nil
} ,
}
2021-02-12 01:22:47 +00:00
impersonationProxyClient , err := kubernetes . NewForConfig ( kubeconfig )
2021-01-22 18:00:27 +00:00
require . NoError ( t , err , "unexpected failure from kubernetes.NewForConfig()" )
2021-02-12 01:22:47 +00:00
// TODO if there is already a ConfigMap, remember its contents and delete it, which puts the proxy into its default settings
// TODO and in a t.Cleanup() if there was already a ConfigMap at the start of the test, then restore the original contents
if env . HasCapability ( library . HasExternalLoadBalancerProvider ) {
// Check that load balancer has been created
require . Eventually ( t , func ( ) bool {
return hasLoadBalancerService ( ctx , t , adminClient , env . ConciergeNamespace )
} , 10 * time . Second , 500 * time . Millisecond )
} else {
// Check that no load balancer has been created
require . Never ( t , func ( ) bool {
return hasLoadBalancerService ( ctx , t , adminClient , env . ConciergeNamespace )
} , 10 * time . Second , 500 * time . Millisecond )
// Check that we can't use the impersonation proxy to execute kubectl commands yet
_ , err = impersonationProxyClient . CoreV1 ( ) . Namespaces ( ) . List ( ctx , metav1 . ListOptions { } )
require . EqualError ( t , err , "Get \"https://pinniped-concierge-proxy.concierge.svc.cluster.local/api/v1/namespaces\": Service Unavailable" )
// Create configuration to make the impersonation proxy turn on with a hard coded endpoint (without a LoadBalancer)
configMap := configMapForConfig ( t , impersonator . Config {
Mode : impersonator . ModeEnabled ,
Endpoint : proxyServiceURL ,
TLS : nil ,
} )
_ , err = adminClient . CoreV1 ( ) . ConfigMaps ( env . ConciergeNamespace ) . Create ( ctx , & configMap , metav1 . CreateOptions { } )
require . NoError ( t , err )
t . Cleanup ( func ( ) {
// TODO clean up the ConfigMap at the end of the test, and make sure that it happens before the t.Cleanup() above which is trying to restore the original ConfigMap
} )
}
2021-01-22 18:00:27 +00:00
t . Run (
"access as user" ,
2021-02-12 01:22:47 +00:00
library . AccessAsUserTest ( ctx , env . TestUser . ExpectedUsername , impersonationProxyClient ) ,
2021-01-22 18:00:27 +00:00
)
for _ , group := range env . TestUser . ExpectedGroups {
group := group
t . Run (
"access as group " + group ,
2021-02-12 01:22:47 +00:00
library . AccessAsGroupTest ( ctx , group , impersonationProxyClient ) ,
2021-01-22 18:00:27 +00:00
)
}
2021-02-12 01:22:47 +00:00
// Update configuration to force the proxy to disabled mode
configMap := configMapForConfig ( t , impersonator . Config { Mode : impersonator . ModeDisabled } )
_ , err = adminClient . CoreV1 ( ) . ConfigMaps ( env . ConciergeNamespace ) . Update ( ctx , & configMap , metav1 . UpdateOptions { } )
require . NoError ( t , err )
// Check that we can't use the impersonation proxy to execute kubectl commands again
_ , err = impersonationProxyClient . CoreV1 ( ) . Namespaces ( ) . List ( ctx , metav1 . ListOptions { } )
require . EqualError ( t , err , "Get \"https://pinniped-concierge-proxy.concierge.svc.cluster.local/api/v1/namespaces\": Service Unavailable" )
// if env.HasCapability(library.HasExternalLoadBalancerProvider) {
// TODO we started the test with a load balancer, so after forcing the proxy to disable, assert that the LoadBalancer was deleted
// }
}
func configMapForConfig ( t * testing . T , config impersonator . Config ) corev1 . ConfigMap {
configString , err := yaml . Marshal ( config )
require . NoError ( t , err )
configMap := corev1 . ConfigMap {
ObjectMeta : metav1 . ObjectMeta { Name : "pinniped-concierge-impersonation-proxy-config" } ,
Data : map [ string ] string {
"config.yaml" : string ( configString ) ,
} }
return configMap
}
func hasLoadBalancerService ( ctx context . Context , t * testing . T , client kubernetes . Interface , namespace string ) bool {
t . Helper ( )
services , err := client . CoreV1 ( ) . Services ( namespace ) . List ( ctx , metav1 . ListOptions { } )
require . NoError ( t , err )
for _ , service := range services . Items {
if service . Spec . Type == corev1 . ServiceTypeLoadBalancer {
return true
}
}
return false
2021-01-22 18:00:27 +00:00
}
func makeImpersonationTestToken ( t * testing . T , authenticator corev1 . TypedLocalObjectReference ) string {
t . Helper ( )
env := library . IntegrationEnv ( t )
reqJSON , err := json . Marshal ( & loginv1alpha1 . TokenCredentialRequest {
ObjectMeta : metav1 . ObjectMeta {
Namespace : env . ConciergeNamespace ,
} ,
TypeMeta : metav1 . TypeMeta {
Kind : "TokenCredentialRequest" ,
APIVersion : loginv1alpha1 . GroupName + "/v1alpha1" ,
} ,
Spec : loginv1alpha1 . TokenCredentialRequestSpec {
Token : env . TestUser . Token ,
Authenticator : authenticator ,
} ,
} )
require . NoError ( t , err )
return base64 . RawURLEncoding . EncodeToString ( reqJSON )
}