cert-manager/pkg/util/configfile/configfile_test.go
Cody W. Eilar 1243fe285b Add to ability to start controller with config file
Signed-off-by: Cody W. Eilar <ecody@vmware.com>
2023-07-27 16:44:38 -07:00

55 lines
1.7 KiB
Go

/*
Copyright 2021 The cert-manager 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
http://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 configfile
import (
"fmt"
"testing"
"github.com/cert-manager/cert-manager/pkg/webhook/configfile"
)
func TestFSLoader_Load(t *testing.T) {
const expectedFilename = "/path/to/config/file"
const kubeConfigPath = "path/to/kubeconfig/file"
webhookConfig := configfile.New()
loader, err := NewConfigurationFSLoader(func(filename string) ([]byte, error) {
if filename != expectedFilename {
t.Fatalf("unexpected filename %q passed to ReadFile", filename)
return nil, fmt.Errorf("unexpected filename %q", filename)
}
return []byte(fmt.Sprintf(`apiVersion: webhook.config.cert-manager.io/v1alpha1
kind: WebhookConfiguration
kubeConfig: %s`, kubeConfigPath)), nil
}, expectedFilename)
if err != nil {
t.Fatal(err)
}
if err := loader.Load(webhookConfig); err != nil {
t.Fatal(err)
}
// the config loader will force paths to be 'absolute' if they are provided as relative.
absKubeConfigPath := "/path/to/config/path/to/kubeconfig/file"
if webhookConfig.Config.KubeConfig != absKubeConfigPath {
t.Errorf("expected kubeConfig to be set to %q but got %q", absKubeConfigPath, webhookConfig.Config.KubeConfig)
}
}