| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*
- Copyright © The ESO Authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package senhasegura
- import (
- "testing"
- "github.com/stretchr/testify/assert"
- esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- func TestValidateStore(t *testing.T) {
- tbl := []struct {
- test string
- store esv1.GenericStore
- expErr bool
- }{
- {
- test: "should not create provider due to nil store",
- store: nil,
- expErr: true,
- },
- {
- test: "should not create provider due to missing provider",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{},
- },
- },
- {
- test: "should not create provider due to missing provider field",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{},
- },
- },
- },
- {
- test: "should not create provider due to missing provider module",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{},
- },
- },
- },
- },
- {
- test: "should not create provider due to missing provider auth client ID",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{
- Module: esv1.SenhaseguraModuleDSM,
- },
- },
- },
- },
- },
- {
- test: "invalid module should return an error",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{
- Module: "HIHIHIHHEHEHEHEHEHE",
- },
- },
- },
- },
- },
- {
- test: "should not create provider due senhasegura URL without https scheme",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{
- Module: esv1.SenhaseguraModuleDSM,
- URL: "http://dev.null",
- },
- },
- },
- },
- },
- {
- test: "should not create provider due senhasegura URL without valid name",
- expErr: true,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{
- Module: esv1.SenhaseguraModuleDSM,
- URL: "https://",
- },
- },
- },
- },
- },
- {
- test: "should create provider",
- expErr: false,
- store: &esv1.SecretStore{
- Spec: esv1.SecretStoreSpec{
- Provider: &esv1.SecretStoreProvider{
- Senhasegura: &esv1.SenhaseguraProvider{
- Module: esv1.SenhaseguraModuleDSM,
- URL: "https://senhasegura.local",
- Auth: esv1.SenhaseguraAuth{
- ClientID: "example",
- },
- },
- },
- },
- },
- },
- }
- for i := range tbl {
- row := tbl[i]
- t.Run(row.test, func(t *testing.T) {
- err := validateStore(row.store)
- if row.expErr {
- assert.Error(t, err)
- } else {
- assert.Nil(t, err)
- }
- })
- }
- }
|