You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.3 KiB
Go
130 lines
3.3 KiB
Go
3 years ago
|
package config
|
||
5 years ago
|
|
||
|
import (
|
||
4 years ago
|
"io/ioutil"
|
||
5 years ago
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
3 years ago
|
"github.com/spf13/viper"
|
||
5 years ago
|
"github.com/stretchr/testify/assert"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestEnvConfig_Defaults(t *testing.T) {
|
||
|
cmd := new(cobra.Command)
|
||
3 years ago
|
RegisterDockerOptions(cmd)
|
||
3 years ago
|
BindViperFlags(cmd)
|
||
5 years ago
|
|
||
3 years ago
|
err := EnvConfig()
|
||
5 years ago
|
require.NoError(t, err)
|
||
|
|
||
|
assert.Equal(t, "unix:///var/run/docker.sock", os.Getenv("DOCKER_HOST"))
|
||
|
assert.Equal(t, "", os.Getenv("DOCKER_TLS_VERIFY"))
|
||
5 years ago
|
// Re-enable this test when we've moved to github actions.
|
||
|
// assert.Equal(t, DockerAPIMinVersion, os.Getenv("DOCKER_API_VERSION"))
|
||
5 years ago
|
}
|
||
|
|
||
|
func TestEnvConfig_Custom(t *testing.T) {
|
||
|
cmd := new(cobra.Command)
|
||
3 years ago
|
RegisterDockerOptions(cmd)
|
||
3 years ago
|
BindViperFlags(cmd)
|
||
5 years ago
|
|
||
|
err := cmd.ParseFlags([]string{"--host", "some-custom-docker-host", "--tlsverify", "--api-version", "1.99"})
|
||
|
require.NoError(t, err)
|
||
|
|
||
3 years ago
|
err = EnvConfig()
|
||
5 years ago
|
require.NoError(t, err)
|
||
|
|
||
|
assert.Equal(t, "some-custom-docker-host", os.Getenv("DOCKER_HOST"))
|
||
|
assert.Equal(t, "1", os.Getenv("DOCKER_TLS_VERIFY"))
|
||
5 years ago
|
// Re-enable this test when we've moved to github actions.
|
||
|
// assert.Equal(t, "1.99", os.Getenv("DOCKER_API_VERSION"))
|
||
5 years ago
|
}
|
||
4 years ago
|
|
||
|
func TestGetSecretsFromFilesWithString(t *testing.T) {
|
||
|
value := "supersecretstring"
|
||
|
|
||
|
err := os.Setenv("WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD", value)
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
testGetSecretsFromFiles(t, "notification-email-server-password", value)
|
||
|
}
|
||
|
|
||
|
func TestGetSecretsFromFilesWithFile(t *testing.T) {
|
||
|
value := "megasecretstring"
|
||
|
|
||
|
// Create the temporary file which will contain a secret.
|
||
|
file, err := ioutil.TempFile(os.TempDir(), "watchtower-")
|
||
|
require.NoError(t, err)
|
||
3 years ago
|
defer func() {
|
||
|
// Make sure to remove the temporary file later.
|
||
|
_ = os.Remove(file.Name())
|
||
|
}()
|
||
4 years ago
|
|
||
|
// Write the secret to the temporary file.
|
||
|
secret := []byte(value)
|
||
|
_, err = file.Write(secret)
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
err = os.Setenv("WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD", file.Name())
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
testGetSecretsFromFiles(t, "notification-email-server-password", value)
|
||
|
}
|
||
|
|
||
|
func testGetSecretsFromFiles(t *testing.T, flagName string, expected string) {
|
||
|
cmd := new(cobra.Command)
|
||
3 years ago
|
RegisterNotificationOptions(cmd)
|
||
3 years ago
|
BindViperFlags(cmd)
|
||
3 years ago
|
|
||
3 years ago
|
GetSecretsFromFiles()
|
||
|
value := viper.GetString(flagName)
|
||
4 years ago
|
|
||
|
assert.Equal(t, expected, value)
|
||
|
}
|
||
4 years ago
|
|
||
|
func TestHTTPAPIPeriodicPollsFlag(t *testing.T) {
|
||
|
cmd := new(cobra.Command)
|
||
3 years ago
|
|
||
3 years ago
|
RegisterDockerOptions(cmd)
|
||
|
RegisterSystemOptions(cmd)
|
||
4 years ago
|
|
||
|
err := cmd.ParseFlags([]string{"--http-api-periodic-polls"})
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
periodicPolls, err := cmd.PersistentFlags().GetBool("http-api-periodic-polls")
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
assert.Equal(t, true, periodicPolls)
|
||
|
}
|
||
3 years ago
|
|
||
|
func TestEnvVariablesMapToFlags(t *testing.T) {
|
||
|
|
||
|
viper.Reset()
|
||
|
cmd := new(cobra.Command)
|
||
|
|
||
|
RegisterDockerOptions(cmd)
|
||
|
RegisterSystemOptions(cmd)
|
||
|
RegisterNotificationOptions(cmd)
|
||
|
BindViperFlags(cmd)
|
||
|
|
||
|
//for _, opt := range stringConfOpts {
|
||
|
// value := opt.key
|
||
|
// assert.Nil(t, os.Setenv(opt.env, value))
|
||
|
// assert.Equal(t, value, viper.GetString(opt.key))
|
||
|
//}
|
||
|
//
|
||
|
//for _, opt := range intConfOpts {
|
||
|
// value := len(opt.key)
|
||
|
// assert.Nil(t, os.Setenv(opt.env, fmt.Sprint(value)))
|
||
|
// assert.Equal(t, value, viper.GetInt(opt.key))
|
||
|
//}
|
||
|
//
|
||
|
//for _, opt := range boolConfOpts {
|
||
|
// assert.Nil(t, os.Setenv(opt.env, fmt.Sprint(true)))
|
||
|
// assert.True(t, viper.GetBool(opt.key))
|
||
|
//}
|
||
|
|
||
|
}
|