lego/providers/dns/conoha/conoha_test.go
Fernandez Ludovic e7a90b9471 chore: migrate to go module (v3.0.0)
- chore: update dependencies: use version with go modules.
- chore: remove dep.
- chore: update backoff imports.
- chore: init go module.
- chore: update CI.
- chore: mod v3
- chore: update docker image.
2019-08-07 14:07:47 +02:00

176 lines
4.4 KiB
Go

package conoha
import (
"testing"
"time"
"github.com/go-acme/lego/v3/platform/tester"
"github.com/stretchr/testify/require"
)
var envTest = tester.NewEnvTest(
"CONOHA_TENANT_ID",
"CONOHA_API_USERNAME",
"CONOHA_API_PASSWORD").
WithDomain("CONOHA_DOMAIN")
func TestNewDNSProvider(t *testing.T) {
testCases := []struct {
desc string
envVars map[string]string
expected string
}{
{
desc: "complete credentials, but login failed",
envVars: map[string]string{
"CONOHA_TENANT_ID": "tenant_id",
"CONOHA_API_USERNAME": "api_username",
"CONOHA_API_PASSWORD": "api_password",
},
expected: `conoha: failed to create client: failed to login: HTTP request failed with status code 401: {"unauthorized":{"message":"Invalid user: api_username","code":401}}`,
},
{
desc: "missing credentials",
envVars: map[string]string{
"CONOHA_TENANT_ID": "",
"CONOHA_API_USERNAME": "",
"CONOHA_API_PASSWORD": "",
},
expected: "conoha: some credentials information are missing: CONOHA_TENANT_ID,CONOHA_API_USERNAME,CONOHA_API_PASSWORD",
},
{
desc: "missing tenant id",
envVars: map[string]string{
"CONOHA_TENANT_ID": "",
"CONOHA_API_USERNAME": "api_username",
"CONOHA_API_PASSWORD": "api_password",
},
expected: "conoha: some credentials information are missing: CONOHA_TENANT_ID",
},
{
desc: "missing api username",
envVars: map[string]string{
"CONOHA_TENANT_ID": "tenant_id",
"CONOHA_API_USERNAME": "",
"CONOHA_API_PASSWORD": "api_password",
},
expected: "conoha: some credentials information are missing: CONOHA_API_USERNAME",
},
{
desc: "missing api password",
envVars: map[string]string{
"CONOHA_TENANT_ID": "tenant_id",
"CONOHA_API_USERNAME": "api_username",
"CONOHA_API_PASSWORD": "",
},
expected: "conoha: some credentials information are missing: CONOHA_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)
} else {
require.EqualError(t, err, test.expected)
}
})
}
}
func TestNewDNSProviderConfig(t *testing.T) {
testCases := []struct {
desc string
expected string
tenant string
username string
password string
}{
{
desc: "complete credentials, but login failed",
expected: `conoha: failed to create client: failed to login: HTTP request failed with status code 401: {"unauthorized":{"message":"Invalid user: api_username","code":401}}`,
tenant: "tenant_id",
username: "api_username",
password: "api_password",
},
{
desc: "missing credentials",
expected: "conoha: some credentials information are missing",
},
{
desc: "missing tenant id",
expected: "conoha: some credentials information are missing",
username: "api_username",
password: "api_password",
},
{
desc: "missing api username",
expected: "conoha: some credentials information are missing",
tenant: "tenant_id",
password: "api_password",
},
{
desc: "missing api password",
expected: "conoha: some credentials information are missing",
tenant: "tenant_id",
username: "api_username",
},
}
for _, test := range testCases {
t.Run(test.desc, func(t *testing.T) {
config := NewDefaultConfig()
config.TenantID = test.tenant
config.Username = test.username
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 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)
}