2020-09-16 14:19:51 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-07-28 19:50:49 +00:00
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-09-22 16:50:00 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2020-07-28 19:50:49 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-09-22 16:50:00 +00:00
|
|
|
clientauthenticationv1beta1 "k8s.io/client-go/pkg/apis/clientauthentication/v1beta1"
|
2020-07-28 19:50:49 +00:00
|
|
|
|
2020-09-18 19:56:24 +00:00
|
|
|
"go.pinniped.dev/internal/client"
|
|
|
|
"go.pinniped.dev/internal/here"
|
|
|
|
"go.pinniped.dev/test/library"
|
2020-07-28 19:50:49 +00:00
|
|
|
)
|
|
|
|
|
2020-09-16 14:19:51 +00:00
|
|
|
// Test certificate and private key that should get an authentication error. Generated with cfssl [1], like this:
|
|
|
|
//
|
|
|
|
// $ brew install cfssl
|
|
|
|
// $ cfssl print-defaults csr | cfssl genkey -initca - | cfssljson -bare ca
|
|
|
|
// $ cfssl print-defaults csr | cfssl gencert -ca ca.pem -ca-key ca-key.pem -hostname=testuser - | cfssljson -bare client
|
|
|
|
// $ cat client.pem client-key.pem
|
|
|
|
//
|
|
|
|
// [1]: https://github.com/cloudflare/cfssl
|
2020-08-05 01:45:03 +00:00
|
|
|
var (
|
2020-09-12 01:15:24 +00:00
|
|
|
testCert = here.Doc(`
|
|
|
|
-----BEGIN CERTIFICATE-----
|
|
|
|
MIICBDCCAaugAwIBAgIUeidKWlZQuoKfBGydObI1hMwzt9cwCgYIKoZIzj0EAwIw
|
|
|
|
SDELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1TYW4gRnJhbmNp
|
|
|
|
c2NvMRQwEgYDVQQDEwtleGFtcGxlLm5ldDAeFw0yMDA3MjgxOTI3MDBaFw0yMTA3
|
|
|
|
MjgxOTI3MDBaMEgxCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMN
|
|
|
|
U2FuIEZyYW5jaXNjbzEUMBIGA1UEAxMLZXhhbXBsZS5uZXQwWTATBgcqhkjOPQIB
|
|
|
|
BggqhkjOPQMBBwNCAARk7XBC+OjYmrXOhm7RaJiHW4Q5VsE+iMV90Bzq7ansqAhb
|
|
|
|
04RI63Y7YPwu1aExutjLvnkWCrgf2ze8KB+8djUBo3MwcTAOBgNVHQ8BAf8EBAMC
|
|
|
|
BaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAw
|
|
|
|
HQYDVR0OBBYEFG0oZxV+LHUKfE4gQ67xfHJuGQ/4MBMGA1UdEQQMMAqCCHRlc3R1
|
|
|
|
c2VyMAoGCCqGSM49BAMCA0cAMEQCIEwPZhPpYhYHndfTEsWOxnxzJkmhAcYIMCeJ
|
|
|
|
d9kyq/fPAiBNCJw1MCLT8LjNlyUZCfwI2zuI3e0w6vuau89oj2zvVA==
|
|
|
|
-----END CERTIFICATE-----
|
2020-07-28 19:50:49 +00:00
|
|
|
`)
|
2020-09-12 01:15:24 +00:00
|
|
|
|
|
|
|
testKey = maskKey(here.Doc(`
|
|
|
|
-----BEGIN EC TESTING KEY-----
|
|
|
|
MHcCAQEEIAqkBGGKTH5GzLx8XZLAHEFW2E8jT+jpy0p6w6MMR7DkoAoGCCqGSM49
|
|
|
|
AwEHoUQDQgAEZO1wQvjo2Jq1zoZu0WiYh1uEOVbBPojFfdAc6u2p7KgIW9OESOt2
|
|
|
|
O2D8LtWhMbrYy755Fgq4H9s3vCgfvHY1AQ==
|
|
|
|
-----END EC TESTING KEY-----
|
2020-08-14 19:42:22 +00:00
|
|
|
`))
|
2020-07-28 19:50:49 +00:00
|
|
|
)
|
|
|
|
|
2020-08-14 19:42:22 +00:00
|
|
|
var maskKey = func(s string) string { return strings.ReplaceAll(s, "TESTING KEY", "PRIVATE KEY") }
|
|
|
|
|
2020-07-28 19:50:49 +00:00
|
|
|
func TestClient(t *testing.T) {
|
2020-09-24 22:51:43 +00:00
|
|
|
env := library.IntegrationEnv(t).WithCapability(library.ClusterSigningKeyIsAvailable)
|
2020-07-28 19:50:49 +00:00
|
|
|
|
2020-08-05 00:28:16 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
2020-07-28 19:50:49 +00:00
|
|
|
defer cancel()
|
|
|
|
|
2020-10-30 19:02:21 +00:00
|
|
|
webhook := library.CreateTestWebhookAuthenticator(ctx, t)
|
2020-09-22 00:55:04 +00:00
|
|
|
|
2020-07-28 19:50:49 +00:00
|
|
|
// Use an invalid certificate/key to validate that the ServerVersion API fails like we assume.
|
2020-08-12 21:29:46 +00:00
|
|
|
invalidClient := library.NewClientsetWithCertAndKey(t, testCert, testKey)
|
2020-07-28 19:50:49 +00:00
|
|
|
_, err := invalidClient.Discovery().ServerVersion()
|
|
|
|
require.EqualError(t, err, "the server has asked for the client to provide credentials")
|
|
|
|
|
|
|
|
// Using the CA bundle and host from the current (admin) kubeconfig, do the token exchange.
|
|
|
|
clientConfig := library.NewClientConfig(t)
|
2020-09-17 22:11:47 +00:00
|
|
|
|
2020-09-22 16:50:00 +00:00
|
|
|
var resp *clientauthenticationv1beta1.ExecCredential
|
|
|
|
assert.Eventually(t, func() bool {
|
2020-10-30 19:02:21 +00:00
|
|
|
resp, err = client.ExchangeToken(ctx, env.ConciergeNamespace, webhook, env.TestUser.Token, string(clientConfig.CAData), clientConfig.Host)
|
2020-09-22 16:50:00 +00:00
|
|
|
return err == nil
|
|
|
|
}, 10*time.Second, 500*time.Millisecond)
|
2020-07-28 19:50:49 +00:00
|
|
|
require.NoError(t, err)
|
2020-09-22 16:50:00 +00:00
|
|
|
|
2020-08-25 15:48:14 +00:00
|
|
|
require.NotNil(t, resp.Status.ExpirationTimestamp)
|
|
|
|
require.InDelta(t, time.Until(resp.Status.ExpirationTimestamp.Time), 1*time.Hour, float64(3*time.Minute))
|
2020-07-28 19:50:49 +00:00
|
|
|
|
|
|
|
// Create a client using the certificate and key returned by the token exchange.
|
2020-08-25 15:48:14 +00:00
|
|
|
validClient := library.NewClientsetWithCertAndKey(t, resp.Status.ClientCertificateData, resp.Status.ClientKeyData)
|
2020-07-28 19:50:49 +00:00
|
|
|
|
|
|
|
// Make a version request, which should succeed even without any authorization.
|
|
|
|
_, err = validClient.Discovery().ServerVersion()
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|