2019-03-11 18:56:48 +02:00
|
|
|
package transip
|
2018-11-06 12:56:28 +02:00
|
|
|
|
|
|
|
import (
|
2020-04-19 14:21:42 +02:00
|
|
|
"os"
|
2018-11-06 12:56:28 +02:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2020-09-02 03:20:01 +02:00
|
|
|
"github.com/go-acme/lego/v4/platform/tester"
|
2018-11-06 12:56:28 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2020-03-12 00:51:10 +02:00
|
|
|
const envDomain = envNamespace + "DOMAIN"
|
|
|
|
|
2018-11-06 12:56:28 +02:00
|
|
|
var envTest = tester.NewEnvTest(
|
2020-03-12 00:51:10 +02:00
|
|
|
EnvAccountName,
|
|
|
|
EnvPrivateKeyPath).
|
|
|
|
WithDomain(envDomain)
|
2018-11-06 12:56:28 +02:00
|
|
|
|
|
|
|
func TestNewDNSProvider(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
envVars map[string]string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "success",
|
|
|
|
envVars: map[string]string{
|
2020-03-12 00:51:10 +02:00
|
|
|
EnvAccountName: "johndoe",
|
|
|
|
EnvPrivateKeyPath: "./fixtures/private.key",
|
2018-11-06 12:56:28 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing all credentials",
|
|
|
|
envVars: map[string]string{
|
2020-03-12 00:51:10 +02:00
|
|
|
EnvAccountName: "",
|
|
|
|
EnvPrivateKeyPath: "",
|
2018-11-06 12:56:28 +02:00
|
|
|
},
|
|
|
|
expected: "transip: some credentials information are missing: TRANSIP_ACCOUNT_NAME,TRANSIP_PRIVATE_KEY_PATH",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing account name",
|
|
|
|
envVars: map[string]string{
|
2020-03-12 00:51:10 +02:00
|
|
|
EnvAccountName: "",
|
|
|
|
EnvPrivateKeyPath: "./fixtures/private.key",
|
2018-11-06 12:56:28 +02:00
|
|
|
},
|
|
|
|
expected: "transip: some credentials information are missing: TRANSIP_ACCOUNT_NAME",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing private key path",
|
|
|
|
envVars: map[string]string{
|
2020-03-12 00:51:10 +02:00
|
|
|
EnvAccountName: "johndoe",
|
|
|
|
EnvPrivateKeyPath: "",
|
2018-11-06 12:56:28 +02:00
|
|
|
},
|
|
|
|
expected: "transip: some credentials information are missing: TRANSIP_PRIVATE_KEY_PATH",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
defer envTest.RestoreEnv()
|
|
|
|
envTest.ClearEnv()
|
|
|
|
|
|
|
|
envTest.Apply(test.envVars)
|
|
|
|
|
|
|
|
p, err := NewDNSProvider()
|
|
|
|
|
2021-03-04 21:16:59 +02:00
|
|
|
if test.expected == "" {
|
2018-11-06 12:56:28 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, p)
|
|
|
|
require.NotNil(t, p.config)
|
2020-04-19 14:21:42 +02:00
|
|
|
require.NotNil(t, p.repository)
|
2018-11-06 12:56:28 +02:00
|
|
|
} else {
|
|
|
|
require.EqualError(t, err, test.expected)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-04-19 14:21:42 +02:00
|
|
|
|
|
|
|
// The error message for a file not existing is different on Windows and Linux.
|
2023-07-29 12:59:24 +02:00
|
|
|
// Therefore, we test if the error type is the same.
|
2020-04-19 14:21:42 +02:00
|
|
|
t.Run("could not open private key path", func(t *testing.T) {
|
|
|
|
defer envTest.RestoreEnv()
|
|
|
|
envTest.ClearEnv()
|
|
|
|
|
|
|
|
envTest.Apply(map[string]string{
|
|
|
|
EnvAccountName: "johndoe",
|
|
|
|
EnvPrivateKeyPath: "./fixtures/non/existent/private.key",
|
|
|
|
})
|
|
|
|
|
|
|
|
_, err := NewDNSProvider()
|
2023-10-31 15:08:50 +02:00
|
|
|
require.ErrorIs(t, err, os.ErrNotExist)
|
2020-04-19 14:21:42 +02:00
|
|
|
})
|
2018-11-06 12:56:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewDNSProviderConfig(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
desc string
|
|
|
|
accountName string
|
|
|
|
privateKeyPath string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
desc: "success",
|
|
|
|
accountName: "johndoe",
|
|
|
|
privateKeyPath: "./fixtures/private.key",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing all credentials",
|
|
|
|
expected: "transip: AccountName is required",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing account name",
|
|
|
|
privateKeyPath: "./fixtures/private.key",
|
|
|
|
expected: "transip: AccountName is required",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
desc: "missing private key path",
|
|
|
|
accountName: "johndoe",
|
2020-04-19 14:21:42 +02:00
|
|
|
expected: "transip: PrivateKeyReader, token or PrivateKeyReader is required",
|
2018-11-06 12:56:28 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range testCases {
|
|
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.AccountName = test.accountName
|
|
|
|
config.PrivateKeyPath = test.privateKeyPath
|
|
|
|
|
|
|
|
p, err := NewDNSProviderConfig(config)
|
|
|
|
|
2021-03-04 21:16:59 +02:00
|
|
|
if test.expected == "" {
|
2018-11-06 12:56:28 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotNil(t, p)
|
|
|
|
require.NotNil(t, p.config)
|
2020-04-19 14:21:42 +02:00
|
|
|
require.NotNil(t, p.repository)
|
2018-11-06 12:56:28 +02:00
|
|
|
} else {
|
|
|
|
require.EqualError(t, err, test.expected)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-04-19 14:21:42 +02:00
|
|
|
|
|
|
|
// The error message for a file not existing is different on Windows and Linux.
|
2023-07-29 12:59:24 +02:00
|
|
|
// Therefore, we test if the error type is the same.
|
2020-04-19 14:21:42 +02:00
|
|
|
t.Run("could not open private key path", func(t *testing.T) {
|
|
|
|
config := NewDefaultConfig()
|
|
|
|
config.AccountName = "johndoe"
|
|
|
|
config.PrivateKeyPath = "./fixtures/non/existent/private.key"
|
|
|
|
|
|
|
|
_, err := NewDNSProviderConfig(config)
|
2023-10-31 15:08:50 +02:00
|
|
|
require.ErrorIs(t, err, os.ErrNotExist)
|
2020-04-19 14:21:42 +02:00
|
|
|
})
|
2018-11-06 12:56:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestLivePresent(t *testing.T) {
|
|
|
|
if !envTest.IsLiveTest() {
|
|
|
|
t.Skip("skipping live test")
|
|
|
|
}
|
|
|
|
|
|
|
|
envTest.RestoreEnv()
|
|
|
|
provider, err := NewDNSProvider()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
err = provider.Present(envTest.GetDomain(), "", "123d==")
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLiveCleanUp(t *testing.T) {
|
|
|
|
if !envTest.IsLiveTest() {
|
|
|
|
t.Skip("skipping live test")
|
|
|
|
}
|
|
|
|
|
|
|
|
envTest.RestoreEnv()
|
|
|
|
provider, err := NewDNSProvider()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
|
|
|
|
err = provider.CleanUp(envTest.GetDomain(), "", "123d==")
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|