2020-08-01 00:37:59 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
package integration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
2020-08-20 17:54:15 +00:00
|
|
|
"github.com/suzerain-io/pinniped/test/library"
|
2020-08-01 00:37:59 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetAPIResourceList(t *testing.T) {
|
2020-08-07 01:44:14 +00:00
|
|
|
library.SkipUnlessIntegration(t)
|
|
|
|
|
2020-08-20 17:54:15 +00:00
|
|
|
client := library.NewPinnipedClientset(t)
|
2020-08-01 00:37:59 +00:00
|
|
|
|
|
|
|
groups, resources, err := client.Discovery().ServerGroupsAndResources()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
2020-09-09 15:23:28 +00:00
|
|
|
t.Run("has group", func(t *testing.T) {
|
|
|
|
require.Contains(t, groups, &metav1.APIGroup{
|
|
|
|
Name: "pinniped.dev",
|
|
|
|
Versions: []metav1.GroupVersionForDiscovery{
|
|
|
|
{
|
|
|
|
GroupVersion: "pinniped.dev/v1alpha1",
|
|
|
|
Version: "v1alpha1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PreferredVersion: metav1.GroupVersionForDiscovery{
|
2020-08-20 17:54:15 +00:00
|
|
|
GroupVersion: "pinniped.dev/v1alpha1",
|
2020-08-01 00:37:59 +00:00
|
|
|
Version: "v1alpha1",
|
|
|
|
},
|
2020-09-09 15:23:28 +00:00
|
|
|
})
|
|
|
|
})
|
2020-08-01 00:37:59 +00:00
|
|
|
|
2020-09-09 15:23:28 +00:00
|
|
|
t.Run("has non-CRD APIs", func(t *testing.T) {
|
|
|
|
expectResources(t, "pinniped.dev/v1alpha1", resources, []metav1.APIResource{
|
|
|
|
{
|
|
|
|
Name: "credentialrequests",
|
|
|
|
Kind: "CredentialRequest",
|
|
|
|
Verbs: []string{"create"},
|
|
|
|
Namespaced: false,
|
|
|
|
|
|
|
|
// This is currently an empty string in the response; maybe it should not be
|
|
|
|
// empty? Seems like no harm in keeping it like this for now, but feel free
|
|
|
|
// to update in the future if there is a compelling reason to do so.
|
|
|
|
SingularName: "",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
})
|
2020-08-01 00:37:59 +00:00
|
|
|
|
2020-09-09 15:23:28 +00:00
|
|
|
t.Run("has CRD APIs", func(t *testing.T) {
|
|
|
|
expectResources(t, "crd.pinniped.dev/v1alpha1", resources, []metav1.APIResource{
|
|
|
|
{
|
|
|
|
Name: "credentialissuerconfigs",
|
|
|
|
SingularName: "credentialissuerconfig",
|
|
|
|
Namespaced: true,
|
|
|
|
Kind: "CredentialIssuerConfig",
|
|
|
|
Verbs: []string{"delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"},
|
|
|
|
ShortNames: []string{"cic"},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
})
|
2020-08-01 00:37:59 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 15:23:28 +00:00
|
|
|
func expectResources(t *testing.T, groupVersion string, resources []*metav1.APIResourceList, expected []metav1.APIResource) {
|
|
|
|
var actualResourceList *metav1.APIResourceList
|
2020-08-01 00:37:59 +00:00
|
|
|
for _, resource := range resources {
|
|
|
|
if resource.GroupVersion == groupVersion {
|
2020-09-09 15:23:28 +00:00
|
|
|
actualResourceList = resource.DeepCopy()
|
2020-08-01 00:37:59 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-09 15:23:28 +00:00
|
|
|
require.NotNilf(t, actualResourceList, "could not find groupVersion %s", groupVersion)
|
|
|
|
|
|
|
|
// Because its hard to predict the storage version hash (e.g. "t/+v41y+3e4="), we just don't
|
|
|
|
// worry about comparing that field.
|
|
|
|
for i := range actualResourceList.APIResources {
|
|
|
|
actualResourceList.APIResources[i].StorageVersionHash = ""
|
|
|
|
}
|
|
|
|
require.EqualValues(t, expected, actualResourceList.APIResources, "unexpected API resources")
|
2020-08-01 00:37:59 +00:00
|
|
|
}
|