2020-07-31 16:08:07 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/base64"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/client-go/rest"
|
|
|
|
|
2020-08-05 20:58:03 +00:00
|
|
|
crdsplaceholderv1alpha1 "github.com/suzerain-io/placeholder-name/kubernetes/1.19/api/apis/crdsplaceholder/v1alpha1"
|
2020-07-31 16:08:07 +00:00
|
|
|
"github.com/suzerain-io/placeholder-name/test/library"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSuccessfulLoginDiscoveryConfig(t *testing.T) {
|
2020-08-07 01:44:14 +00:00
|
|
|
library.SkipUnlessIntegration(t)
|
2020-08-03 14:17:11 +00:00
|
|
|
namespaceName := library.Getenv(t, "PLACEHOLDER_NAME_NAMESPACE")
|
2020-07-31 16:08:07 +00:00
|
|
|
|
|
|
|
client := library.NewPlaceholderNameClientset(t)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
config := library.NewClientConfig(t)
|
2020-08-03 18:36:08 +00:00
|
|
|
expectedLDCSpec := expectedLDCSpec(config)
|
2020-07-31 16:08:07 +00:00
|
|
|
configList, err := client.
|
2020-08-01 00:22:12 +00:00
|
|
|
CrdsV1alpha1().
|
2020-07-31 16:08:07 +00:00
|
|
|
LoginDiscoveryConfigs(namespaceName).
|
|
|
|
List(ctx, metav1.ListOptions{})
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Len(t, configList.Items, 1)
|
2020-07-31 21:35:20 +00:00
|
|
|
require.Equal(t, expectedLDCSpec, &configList.Items[0].Spec)
|
2020-07-31 16:08:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestReconcilingLoginDiscoveryConfig(t *testing.T) {
|
2020-08-07 01:44:14 +00:00
|
|
|
library.SkipUnlessIntegration(t)
|
2020-08-03 14:17:11 +00:00
|
|
|
namespaceName := library.Getenv(t, "PLACEHOLDER_NAME_NAMESPACE")
|
2020-07-31 16:08:07 +00:00
|
|
|
|
|
|
|
client := library.NewPlaceholderNameClientset(t)
|
|
|
|
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
|
|
defer cancel()
|
|
|
|
|
2020-07-31 21:35:20 +00:00
|
|
|
err := client.
|
2020-08-01 00:22:12 +00:00
|
|
|
CrdsV1alpha1().
|
2020-07-31 16:08:07 +00:00
|
|
|
LoginDiscoveryConfigs(namespaceName).
|
|
|
|
Delete(ctx, "placeholder-name-config", metav1.DeleteOptions{})
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
config := library.NewClientConfig(t)
|
2020-08-03 18:36:08 +00:00
|
|
|
expectedLDCSpec := expectedLDCSpec(config)
|
2020-07-31 21:35:20 +00:00
|
|
|
|
2020-08-01 00:22:12 +00:00
|
|
|
var actualLDC *crdsplaceholderv1alpha1.LoginDiscoveryConfig
|
2020-07-31 21:35:20 +00:00
|
|
|
for i := 0; i < 10; i++ {
|
2020-08-01 00:22:12 +00:00
|
|
|
actualLDC, err = client.
|
|
|
|
CrdsV1alpha1().
|
2020-07-31 21:35:20 +00:00
|
|
|
LoginDiscoveryConfigs(namespaceName).
|
|
|
|
Get(ctx, "placeholder-name-config", metav1.GetOptions{})
|
|
|
|
if err == nil {
|
|
|
|
break
|
2020-07-31 16:08:07 +00:00
|
|
|
}
|
2020-07-31 21:35:20 +00:00
|
|
|
time.Sleep(time.Millisecond * 750)
|
2020-07-31 16:08:07 +00:00
|
|
|
}
|
2020-07-31 21:35:20 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, expectedLDCSpec, &actualLDC.Spec)
|
2020-07-31 16:08:07 +00:00
|
|
|
}
|
|
|
|
|
2020-08-03 18:36:08 +00:00
|
|
|
func expectedLDCSpec(config *rest.Config) *crdsplaceholderv1alpha1.LoginDiscoveryConfigSpec {
|
2020-08-01 00:22:12 +00:00
|
|
|
return &crdsplaceholderv1alpha1.LoginDiscoveryConfigSpec{
|
2020-08-03 18:36:08 +00:00
|
|
|
Server: config.Host,
|
2020-07-31 21:35:20 +00:00
|
|
|
CertificateAuthorityData: base64.StdEncoding.EncodeToString(config.TLSClientConfig.CAData),
|
2020-07-31 16:08:07 +00:00
|
|
|
}
|
|
|
|
}
|