forked from TrueCloudLab/lego
187 lines
3.9 KiB
Go
187 lines
3.9 KiB
Go
package netcup
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/go-acme/lego/v4/challenge/dns01"
|
|
"github.com/go-acme/lego/v4/platform/tester"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
const envDomain = envNamespace + "DOMAIN"
|
|
|
|
var envTest = tester.NewEnvTest(
|
|
EnvCustomerNumber,
|
|
EnvAPIKey,
|
|
EnvAPIPassword).
|
|
WithDomain(envDomain)
|
|
|
|
func TestNewDNSProvider(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
envVars map[string]string
|
|
expected string
|
|
}{
|
|
{
|
|
desc: "success",
|
|
envVars: map[string]string{
|
|
EnvCustomerNumber: "A",
|
|
EnvAPIKey: "B",
|
|
EnvAPIPassword: "C",
|
|
},
|
|
},
|
|
{
|
|
desc: "missing credentials",
|
|
envVars: map[string]string{
|
|
EnvCustomerNumber: "",
|
|
EnvAPIKey: "",
|
|
EnvAPIPassword: "",
|
|
},
|
|
expected: "netcup: some credentials information are missing: NETCUP_CUSTOMER_NUMBER,NETCUP_API_KEY,NETCUP_API_PASSWORD",
|
|
},
|
|
{
|
|
desc: "missing customer number",
|
|
envVars: map[string]string{
|
|
EnvCustomerNumber: "",
|
|
EnvAPIKey: "B",
|
|
EnvAPIPassword: "C",
|
|
},
|
|
expected: "netcup: some credentials information are missing: NETCUP_CUSTOMER_NUMBER",
|
|
},
|
|
{
|
|
desc: "missing API key",
|
|
envVars: map[string]string{
|
|
EnvCustomerNumber: "A",
|
|
EnvAPIKey: "",
|
|
EnvAPIPassword: "C",
|
|
},
|
|
expected: "netcup: some credentials information are missing: NETCUP_API_KEY",
|
|
},
|
|
{
|
|
desc: "missing api password",
|
|
envVars: map[string]string{
|
|
EnvCustomerNumber: "A",
|
|
EnvAPIKey: "B",
|
|
EnvAPIPassword: "",
|
|
},
|
|
expected: "netcup: some credentials information are missing: NETCUP_API_PASSWORD",
|
|
},
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
defer envTest.RestoreEnv()
|
|
envTest.ClearEnv()
|
|
|
|
envTest.Apply(test.envVars)
|
|
|
|
p, err := NewDNSProvider()
|
|
|
|
if len(test.expected) == 0 {
|
|
require.NoError(t, err)
|
|
require.NotNil(t, p)
|
|
require.NotNil(t, p.config)
|
|
require.NotNil(t, p.client)
|
|
} else {
|
|
require.EqualError(t, err, test.expected)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestNewDNSProviderConfig(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
customer string
|
|
key string
|
|
password string
|
|
expected string
|
|
}{
|
|
{
|
|
desc: "success",
|
|
customer: "A",
|
|
key: "B",
|
|
password: "C",
|
|
},
|
|
{
|
|
desc: "missing credentials",
|
|
expected: "netcup: credentials missing",
|
|
},
|
|
{
|
|
desc: "missing customer",
|
|
customer: "",
|
|
key: "B",
|
|
password: "C",
|
|
expected: "netcup: credentials missing",
|
|
},
|
|
{
|
|
desc: "missing key",
|
|
customer: "A",
|
|
key: "",
|
|
password: "C",
|
|
expected: "netcup: credentials missing",
|
|
},
|
|
{
|
|
desc: "missing password",
|
|
customer: "A",
|
|
key: "B",
|
|
password: "",
|
|
expected: "netcup: credentials missing",
|
|
},
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
config := NewDefaultConfig()
|
|
config.Customer = test.customer
|
|
config.Key = test.key
|
|
config.Password = test.password
|
|
|
|
p, err := NewDNSProviderConfig(config)
|
|
|
|
if len(test.expected) == 0 {
|
|
require.NoError(t, err)
|
|
require.NotNil(t, p)
|
|
require.NotNil(t, p.config)
|
|
require.NotNil(t, p.client)
|
|
} else {
|
|
require.EqualError(t, err, test.expected)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLivePresentAndCleanup(t *testing.T) {
|
|
if !envTest.IsLiveTest() {
|
|
t.Skip("skipping live test")
|
|
}
|
|
|
|
envTest.RestoreEnv()
|
|
p, err := NewDNSProvider()
|
|
require.NoError(t, err)
|
|
|
|
fqdn, _ := dns01.GetRecord(envTest.GetDomain(), "123d==")
|
|
|
|
zone, err := dns01.FindZoneByFqdn(fqdn)
|
|
require.NoError(t, err, "error finding DNSZone")
|
|
|
|
zone = dns01.UnFqdn(zone)
|
|
|
|
testCases := []string{
|
|
zone,
|
|
"sub." + zone,
|
|
"*." + zone,
|
|
"*.sub." + zone,
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
t.Run(fmt.Sprintf("domain(%s)", test), func(t *testing.T) {
|
|
err = p.Present(test, "987d", "123d==")
|
|
require.NoError(t, err)
|
|
|
|
err = p.CleanUp(test, "987d", "123d==")
|
|
require.NoError(t, err, "Did not clean up! Please remove record yourself.")
|
|
})
|
|
}
|
|
}
|