2019-08-21 12:10:25 +02:00
|
|
|
package controllers_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-09-13 14:37:29 +02:00
|
|
|
"errors"
|
2019-08-21 12:10:25 +02:00
|
|
|
"fmt"
|
2019-09-05 10:00:59 +02:00
|
|
|
"time"
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
"k8s.io/utils/pointer"
|
2019-08-21 12:10:25 +02:00
|
|
|
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
hydrav1alpha1 "github.com/ory/hydra-maester/api/v1alpha1"
|
|
|
|
"github.com/ory/hydra-maester/controllers"
|
2019-09-13 14:37:29 +02:00
|
|
|
"github.com/ory/hydra-maester/controllers/mocks"
|
2019-08-21 12:10:25 +02:00
|
|
|
"github.com/ory/hydra-maester/hydra"
|
2019-09-03 13:38:56 +02:00
|
|
|
. "github.com/stretchr/testify/mock"
|
2019-08-21 12:10:25 +02:00
|
|
|
apiv1 "k8s.io/api/core/v1"
|
|
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
|
|
ctrl "sigs.k8s.io/controller-runtime"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/controller"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/handler"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/manager"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/source"
|
|
|
|
)
|
|
|
|
|
2019-09-03 13:38:56 +02:00
|
|
|
const (
|
|
|
|
timeout = time.Second * 5
|
|
|
|
tstNamespace = "default"
|
2019-09-13 14:37:29 +02:00
|
|
|
tstSecret = "testSecret"
|
2019-09-03 13:38:56 +02:00
|
|
|
)
|
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
var _ = Describe("OAuth2Client Controller", func() {
|
2019-09-13 14:37:29 +02:00
|
|
|
|
2019-08-21 12:10:25 +02:00
|
|
|
Context("in a happy-path scenario", func() {
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
Context("should call create OAuth2 client and", func() {
|
|
|
|
|
|
|
|
It("create a Secret if it does not exist", func() {
|
|
|
|
|
|
|
|
tstName, tstClientID, tstSecretName := "test", "testClientID", "my-secret-123"
|
|
|
|
expectedRequest := &reconcile.Request{NamespacedName: types.NamespacedName{Name: tstName, Namespace: tstNamespace}}
|
|
|
|
|
|
|
|
s := scheme.Scheme
|
|
|
|
err := hydrav1alpha1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
err = apiv1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Setup the Manager and Controller. Wrap the Controller Reconcile function so it writes each request to a
|
|
|
|
// channel when it is finished.
|
|
|
|
mgr, err := manager.New(cfg, manager.Options{Scheme: s})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
c := mgr.GetClient()
|
|
|
|
|
|
|
|
mch := &mocks.HydraClientInterface{}
|
|
|
|
mch.On("DeleteOAuth2Client", Anything).Return(nil)
|
2019-09-19 09:29:18 +02:00
|
|
|
mch.On("ListOAuth2Client", Anything).Return(nil, nil)
|
2019-09-13 14:37:29 +02:00
|
|
|
mch.On("PostOAuth2Client", AnythingOfType("*hydra.OAuth2ClientJSON")).Return(func(o *hydra.OAuth2ClientJSON) *hydra.OAuth2ClientJSON {
|
|
|
|
return &hydra.OAuth2ClientJSON{
|
|
|
|
ClientID: &tstClientID,
|
|
|
|
Secret: pointer.StringPtr(tstSecret),
|
|
|
|
GrantTypes: o.GrantTypes,
|
|
|
|
ResponseTypes: o.ResponseTypes,
|
2019-11-14 01:11:13 -07:00
|
|
|
RedirectURIs: o.RedirectURIs,
|
2019-09-13 14:37:29 +02:00
|
|
|
Scope: o.Scope,
|
2019-09-19 09:29:18 +02:00
|
|
|
Owner: o.Owner,
|
2019-09-13 14:37:29 +02:00
|
|
|
}
|
|
|
|
}, func(o *hydra.OAuth2ClientJSON) error {
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
recFn, requests := SetupTestReconcile(getAPIReconciler(mgr, mch))
|
|
|
|
|
|
|
|
Expect(add(mgr, recFn)).To(Succeed())
|
|
|
|
|
|
|
|
//Start the manager and the controller
|
|
|
|
stopMgr, mgrStopped := StartTestManager(mgr)
|
|
|
|
|
|
|
|
instance := testInstance(tstName, tstSecretName)
|
|
|
|
err = c.Create(context.TODO(), instance)
|
|
|
|
// The instance object may not be a valid object because it might be missing some required fields.
|
|
|
|
// Please modify the instance object by adding required fields and then remove the following if statement.
|
|
|
|
if apierrors.IsInvalid(err) {
|
|
|
|
Fail(fmt.Sprintf("failed to create object, got an invalid object error: %v", err))
|
|
|
|
return
|
2019-09-03 13:38:56 +02:00
|
|
|
}
|
2019-09-13 14:37:29 +02:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Eventually(requests, timeout).Should(Receive(Equal(*expectedRequest)))
|
|
|
|
|
|
|
|
//Verify the created CR instance status
|
|
|
|
var retrieved hydrav1alpha1.OAuth2Client
|
|
|
|
ok := client.ObjectKey{Name: tstName, Namespace: tstNamespace}
|
|
|
|
err = c.Get(context.TODO(), ok, &retrieved)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Code).To(BeEmpty())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Description).To(BeEmpty())
|
|
|
|
|
|
|
|
//Verify the created Secret
|
|
|
|
var createdSecret apiv1.Secret
|
|
|
|
ok = client.ObjectKey{Name: tstSecretName, Namespace: tstNamespace}
|
|
|
|
err = k8sClient.Get(context.TODO(), ok, &createdSecret)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(createdSecret.Data[controllers.ClientIDKey]).To(Equal([]byte(tstClientID)))
|
|
|
|
Expect(createdSecret.Data[controllers.ClientSecretKey]).To(Equal([]byte(tstSecret)))
|
|
|
|
|
|
|
|
//delete instance
|
|
|
|
c.Delete(context.TODO(), instance)
|
|
|
|
|
|
|
|
//Ensure manager is stopped properly
|
|
|
|
close(stopMgr)
|
|
|
|
mgrStopped.Wait()
|
2019-09-03 13:38:56 +02:00
|
|
|
})
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
It("update object status if the call failed", func() {
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
tstName, tstSecretName := "test2", "my-secret-456"
|
|
|
|
expectedRequest := &reconcile.Request{NamespacedName: types.NamespacedName{Name: tstName, Namespace: tstNamespace}}
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
s := scheme.Scheme
|
|
|
|
err := hydrav1alpha1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-08-21 12:10:25 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
err = apiv1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Setup the Manager and Controller. Wrap the Controller Reconcile function so it writes each request to a
|
|
|
|
// channel when it is finished.
|
|
|
|
mgr, err := manager.New(cfg, manager.Options{Scheme: s})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
c := mgr.GetClient()
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
mch := &mocks.HydraClientInterface{}
|
|
|
|
mch.On("PostOAuth2Client", Anything).Return(nil, errors.New("error"))
|
|
|
|
mch.On("DeleteOAuth2Client", Anything).Return(nil)
|
2019-09-19 09:29:18 +02:00
|
|
|
mch.On("ListOAuth2Client", Anything).Return(nil, nil)
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
recFn, requests := SetupTestReconcile(getAPIReconciler(mgr, mch))
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
Expect(add(mgr, recFn)).To(Succeed())
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//Start the manager and the controller
|
|
|
|
stopMgr, mgrStopped := StartTestManager(mgr)
|
|
|
|
|
|
|
|
instance := testInstance(tstName, tstSecretName)
|
|
|
|
err = c.Create(context.TODO(), instance)
|
|
|
|
// The instance object may not be a valid object because it might be missing some required fields.
|
|
|
|
// Please modify the instance object by adding required fields and then remove the following if statement.
|
|
|
|
if apierrors.IsInvalid(err) {
|
|
|
|
Fail(fmt.Sprintf("failed to create object, got an invalid object error: %v", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Eventually(requests, timeout).Should(Receive(Equal(*expectedRequest)))
|
|
|
|
|
|
|
|
//Verify the created CR instance status
|
|
|
|
var retrieved hydrav1alpha1.OAuth2Client
|
|
|
|
ok := client.ObjectKey{Name: tstName, Namespace: tstNamespace}
|
|
|
|
err = c.Get(context.TODO(), ok, &retrieved)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(retrieved.Status.ReconciliationError).NotTo(BeNil())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Code).To(Equal(hydrav1alpha1.StatusRegistrationFailed))
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Description).To(Equal("error"))
|
|
|
|
|
|
|
|
//Verify no secret has been created
|
|
|
|
var createdSecret apiv1.Secret
|
|
|
|
ok = client.ObjectKey{Name: tstSecretName, Namespace: tstNamespace}
|
|
|
|
err = k8sClient.Get(context.TODO(), ok, &createdSecret)
|
|
|
|
Expect(err).To(HaveOccurred())
|
|
|
|
Expect(apierrors.IsNotFound(err)).To(BeTrue())
|
|
|
|
|
|
|
|
//delete instance
|
|
|
|
c.Delete(context.TODO(), instance)
|
|
|
|
|
|
|
|
//Ensure manager is stopped properly
|
|
|
|
close(stopMgr)
|
|
|
|
mgrStopped.Wait()
|
|
|
|
})
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
It("use provided Secret if it exists", func() {
|
|
|
|
|
|
|
|
tstName, tstClientID, tstSecretName := "test3", "testClientID-3", "my-secret-789"
|
|
|
|
var postedClient *hydra.OAuth2ClientJSON
|
|
|
|
expectedRequest := &reconcile.Request{NamespacedName: types.NamespacedName{Name: tstName, Namespace: tstNamespace}}
|
|
|
|
|
|
|
|
s := scheme.Scheme
|
|
|
|
err := hydrav1alpha1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
err = apiv1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
// Setup the Manager and Controller. Wrap the Controller Reconcile function so it writes each request to a
|
|
|
|
// channel when it is finished.
|
|
|
|
mgr, err := manager.New(cfg, manager.Options{Scheme: s})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
c := mgr.GetClient()
|
|
|
|
|
|
|
|
mch := mocks.HydraClientInterface{}
|
|
|
|
mch.On("DeleteOAuth2Client", Anything).Return(nil)
|
2019-09-19 09:29:18 +02:00
|
|
|
mch.On("ListOAuth2Client", Anything).Return(nil, nil)
|
2019-09-13 14:37:29 +02:00
|
|
|
mch.On("GetOAuth2Client", Anything).Return(nil, false, nil)
|
|
|
|
mch.On("PostOAuth2Client", AnythingOfType("*hydra.OAuth2ClientJSON")).Return(func(o *hydra.OAuth2ClientJSON) *hydra.OAuth2ClientJSON {
|
|
|
|
postedClient = &hydra.OAuth2ClientJSON{
|
|
|
|
ClientID: o.ClientID,
|
|
|
|
Secret: o.Secret,
|
|
|
|
GrantTypes: o.GrantTypes,
|
|
|
|
ResponseTypes: o.ResponseTypes,
|
2019-11-14 01:11:13 -07:00
|
|
|
RedirectURIs: o.RedirectURIs,
|
2019-09-13 14:37:29 +02:00
|
|
|
Scope: o.Scope,
|
2019-09-19 09:29:18 +02:00
|
|
|
Owner: o.Owner,
|
2019-09-13 14:37:29 +02:00
|
|
|
}
|
|
|
|
return postedClient
|
|
|
|
}, func(o *hydra.OAuth2ClientJSON) error {
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
recFn, requests := SetupTestReconcile(getAPIReconciler(mgr, &mch))
|
|
|
|
|
|
|
|
Expect(add(mgr, recFn)).To(Succeed())
|
|
|
|
|
|
|
|
//Start the manager and the controller
|
|
|
|
stopMgr, mgrStopped := StartTestManager(mgr)
|
|
|
|
|
|
|
|
//ensure secret exists
|
|
|
|
secret := apiv1.Secret{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: tstSecretName,
|
|
|
|
Namespace: tstNamespace,
|
|
|
|
},
|
|
|
|
Data: map[string][]byte{
|
|
|
|
controllers.ClientIDKey: []byte(tstClientID),
|
|
|
|
controllers.ClientSecretKey: []byte(tstSecret),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
err = c.Create(context.TODO(), &secret)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
instance := testInstance(tstName, tstSecretName)
|
|
|
|
err = c.Create(context.TODO(), instance)
|
|
|
|
// The instance object may not be a valid object because it might be missing some required fields.
|
|
|
|
// Please modify the instance object by adding required fields and then remove the following if statement.
|
|
|
|
if apierrors.IsInvalid(err) {
|
|
|
|
Fail(fmt.Sprintf("failed to create object, got an invalid object error: %v", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Eventually(requests, timeout).Should(Receive(Equal(*expectedRequest)))
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//Verify the created CR instance status
|
|
|
|
var retrieved hydrav1alpha1.OAuth2Client
|
|
|
|
ok := client.ObjectKey{Name: tstName, Namespace: tstNamespace}
|
|
|
|
err = c.Get(context.TODO(), ok, &retrieved)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Code).To(BeEmpty())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Description).To(BeEmpty())
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
Expect(*postedClient.ClientID).To(Equal(tstClientID))
|
|
|
|
Expect(*postedClient.Secret).To(Equal(tstSecret))
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//delete instance
|
|
|
|
c.Delete(context.TODO(), instance)
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//Ensure manager is stopped properly
|
2019-09-03 13:38:56 +02:00
|
|
|
close(stopMgr)
|
|
|
|
mgrStopped.Wait()
|
2019-09-13 14:37:29 +02:00
|
|
|
})
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
It("update object status if provided Secret is invalid", func() {
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
tstName, tstClientID, tstSecretName := "test4", "testClientID-4", "my-secret-000"
|
|
|
|
expectedRequest := &reconcile.Request{NamespacedName: types.NamespacedName{Name: tstName, Namespace: tstNamespace}}
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
s := scheme.Scheme
|
|
|
|
err := hydrav1alpha1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
err = apiv1.AddToScheme(s)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
// Setup the Manager and Controller. Wrap the Controller Reconcile function so it writes each request to a
|
|
|
|
// channel when it is finished.
|
|
|
|
mgr, err := manager.New(cfg, manager.Options{Scheme: s})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
c := mgr.GetClient()
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
mch := mocks.HydraClientInterface{}
|
|
|
|
mch.On("DeleteOAuth2Client", Anything).Return(nil)
|
2019-09-19 09:29:18 +02:00
|
|
|
mch.On("ListOAuth2Client", Anything).Return(nil, nil)
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
recFn, requests := SetupTestReconcile(getAPIReconciler(mgr, &mch))
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
Expect(add(mgr, recFn)).To(Succeed())
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//Start the manager and the controller
|
|
|
|
stopMgr, mgrStopped := StartTestManager(mgr)
|
2019-09-03 13:38:56 +02:00
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
//ensure invalid secret exists
|
|
|
|
secret := apiv1.Secret{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: tstSecretName,
|
|
|
|
Namespace: tstNamespace,
|
|
|
|
},
|
|
|
|
Data: map[string][]byte{
|
|
|
|
controllers.ClientIDKey: []byte(tstClientID),
|
|
|
|
//missing client secret key
|
|
|
|
},
|
|
|
|
}
|
|
|
|
err = c.Create(context.TODO(), &secret)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
|
|
|
instance := testInstance(tstName, tstSecretName)
|
|
|
|
err = c.Create(context.TODO(), instance)
|
|
|
|
// The instance object may not be a valid object because it might be missing some required fields.
|
|
|
|
// Please modify the instance object by adding required fields and then remove the following if statement.
|
|
|
|
if apierrors.IsInvalid(err) {
|
|
|
|
Fail(fmt.Sprintf("failed to create object, got an invalid object error: %v", err))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Eventually(requests, timeout).Should(Receive(Equal(*expectedRequest)))
|
|
|
|
|
|
|
|
//Verify the created CR instance status
|
|
|
|
var retrieved hydrav1alpha1.OAuth2Client
|
|
|
|
ok := client.ObjectKey{Name: tstName, Namespace: tstNamespace}
|
|
|
|
err = c.Get(context.TODO(), ok, &retrieved)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(retrieved.Status.ReconciliationError).NotTo(BeNil())
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Code).To(Equal(hydrav1alpha1.StatusInvalidSecret))
|
|
|
|
Expect(retrieved.Status.ReconciliationError.Description).To(Equal(`"client_secret property missing"`))
|
|
|
|
|
|
|
|
//delete instance
|
|
|
|
c.Delete(context.TODO(), instance)
|
|
|
|
|
|
|
|
//Ensure manager is stopped properly
|
2019-09-03 13:38:56 +02:00
|
|
|
close(stopMgr)
|
|
|
|
mgrStopped.Wait()
|
2019-09-13 14:37:29 +02:00
|
|
|
})
|
2019-09-03 13:38:56 +02:00
|
|
|
})
|
2019-08-21 12:10:25 +02:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// add adds a new Controller to mgr with r as the reconcile.Reconciler
|
|
|
|
func add(mgr manager.Manager, r reconcile.Reconciler) error {
|
|
|
|
// Create a new controller
|
|
|
|
c, err := controller.New("api-gateway-controller", mgr, controller.Options{Reconciler: r})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch for changes to Api
|
|
|
|
err = c.Watch(&source.Kind{Type: &hydrav1alpha1.OAuth2Client{}}, &handler.EnqueueRequestForObject{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-09-03 13:38:56 +02:00
|
|
|
func getAPIReconciler(mgr ctrl.Manager, mock controllers.HydraClientInterface) reconcile.Reconciler {
|
2019-08-21 12:10:25 +02:00
|
|
|
return &controllers.OAuth2ClientReconciler{
|
|
|
|
Client: mgr.GetClient(),
|
|
|
|
Log: ctrl.Log.WithName("controllers").WithName("OAuth2Client"),
|
|
|
|
HydraClient: mock,
|
2019-11-14 01:11:13 -07:00
|
|
|
HydraClientMaker: func(hydrav1alpha1.OAuth2ClientSpec) (controllers.HydraClientInterface, error) {
|
|
|
|
return mock, nil
|
|
|
|
},
|
2019-08-21 12:10:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-13 14:37:29 +02:00
|
|
|
func testInstance(name, secretName string) *hydrav1alpha1.OAuth2Client {
|
2019-08-21 12:10:25 +02:00
|
|
|
|
|
|
|
return &hydrav1alpha1.OAuth2Client{
|
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
|
|
Name: name,
|
2019-09-03 13:38:56 +02:00
|
|
|
Namespace: tstNamespace,
|
2019-08-21 12:10:25 +02:00
|
|
|
},
|
|
|
|
Spec: hydrav1alpha1.OAuth2ClientSpec{
|
|
|
|
GrantTypes: []hydrav1alpha1.GrantType{"client_credentials"},
|
|
|
|
ResponseTypes: []hydrav1alpha1.ResponseType{"token"},
|
2019-09-13 14:37:29 +02:00
|
|
|
Scope: "a b c",
|
2019-11-14 01:11:13 -07:00
|
|
|
RedirectURIs: []hydrav1alpha1.RedirectURI{"https://example.com"},
|
2019-09-13 14:37:29 +02:00
|
|
|
SecretName: secretName,
|
2019-11-14 01:11:13 -07:00
|
|
|
HydraAdmin: hydrav1alpha1.HydraAdmin{
|
|
|
|
URL: "http://hydra-admin",
|
|
|
|
Port: 4445,
|
|
|
|
Endpoint: "/client",
|
|
|
|
ForwardedProto: "https",
|
|
|
|
},
|
2019-08-21 12:10:25 +02:00
|
|
|
}}
|
|
|
|
}
|