summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/xenolf/lego/providers/dns/ovh/ovh_test.go
blob: 47da60e577655c887c589809a8dfee5d9b51ed93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package ovh

import (
	"os"
	"testing"
	"time"

	"github.com/stretchr/testify/assert"
)

var (
	liveTest          bool
	apiEndpoint       string
	applicationKey    string
	applicationSecret string
	consumerKey       string
	domain            string
)

func init() {
	apiEndpoint = os.Getenv("OVH_ENDPOINT")
	applicationKey = os.Getenv("OVH_APPLICATION_KEY")
	applicationSecret = os.Getenv("OVH_APPLICATION_SECRET")
	consumerKey = os.Getenv("OVH_CONSUMER_KEY")
	liveTest = len(apiEndpoint) > 0 && len(applicationKey) > 0 && len(applicationSecret) > 0 && len(consumerKey) > 0
}

func restoreEnv() {
	os.Setenv("OVH_ENDPOINT", apiEndpoint)
	os.Setenv("OVH_APPLICATION_KEY", applicationKey)
	os.Setenv("OVH_APPLICATION_SECRET", applicationSecret)
	os.Setenv("OVH_CONSUMER_KEY", consumerKey)
}

func TestNewDNSProviderValidEnv(t *testing.T) {
	os.Setenv("OVH_ENDPOINT", "ovh-eu")
	os.Setenv("OVH_APPLICATION_KEY", "1234")
	os.Setenv("OVH_APPLICATION_SECRET", "5678")
	os.Setenv("OVH_CONSUMER_KEY", "abcde")
	defer restoreEnv()
	_, err := NewDNSProvider()
	assert.NoError(t, err)
}

func TestNewDNSProviderMissingCredErr(t *testing.T) {
	os.Setenv("OVH_ENDPOINT", "")
	os.Setenv("OVH_APPLICATION_KEY", "1234")
	os.Setenv("OVH_APPLICATION_SECRET", "5678")
	os.Setenv("OVH_CONSUMER_KEY", "abcde")
	defer restoreEnv()
	_, err := NewDNSProvider()
	assert.EqualError(t, err, "OVH credentials missing")

	os.Setenv("OVH_ENDPOINT", "ovh-eu")
	os.Setenv("OVH_APPLICATION_KEY", "")
	os.Setenv("OVH_APPLICATION_SECRET", "5678")
	os.Setenv("OVH_CONSUMER_KEY", "abcde")
	defer restoreEnv()
	_, err = NewDNSProvider()
	assert.EqualError(t, err, "OVH credentials missing")

	os.Setenv("OVH_ENDPOINT", "ovh-eu")
	os.Setenv("OVH_APPLICATION_KEY", "1234")
	os.Setenv("OVH_APPLICATION_SECRET", "")
	os.Setenv("OVH_CONSUMER_KEY", "abcde")
	defer restoreEnv()
	_, err = NewDNSProvider()
	assert.EqualError(t, err, "OVH credentials missing")

	os.Setenv("OVH_ENDPOINT", "ovh-eu")
	os.Setenv("OVH_APPLICATION_KEY", "1234")
	os.Setenv("OVH_APPLICATION_SECRET", "5678")
	os.Setenv("OVH_CONSUMER_KEY", "")
	defer restoreEnv()
	_, err = NewDNSProvider()
	assert.EqualError(t, err, "OVH credentials missing")
}

func TestLivePresent(t *testing.T) {
	if !liveTest {
		t.Skip("skipping live test")
	}

	provider, err := NewDNSProvider()
	assert.NoError(t, err)

	err = provider.Present(domain, "", "123d==")
	assert.NoError(t, err)
}

func TestLiveCleanUp(t *testing.T) {
	if !liveTest {
		t.Skip("skipping live test")
	}

	time.Sleep(time.Second * 1)

	provider, err := NewDNSProvider()
	assert.NoError(t, err)

	err = provider.CleanUp(domain, "", "123d==")
	assert.NoError(t, err)
}