2016-02-29 02:48:41 +00:00
|
|
|
package route53
|
2015-12-03 20:01:46 +00:00
|
|
|
|
|
|
|
import (
|
2016-03-26 03:34:31 +00:00
|
|
|
"net/http/httptest"
|
2015-12-03 20:01:46 +00:00
|
|
|
"os"
|
|
|
|
"testing"
|
2018-09-08 11:49:24 +00:00
|
|
|
"time"
|
2015-12-03 20:01:46 +00:00
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/credentials"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
|
|
|
"github.com/aws/aws-sdk-go/service/route53"
|
2015-12-03 20:01:46 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-09-08 11:49:24 +00:00
|
|
|
r53AwsSecretAccessKey string
|
|
|
|
r53AwsAccessKeyID string
|
|
|
|
r53AwsRegion string
|
|
|
|
r53AwsHostedZoneID string
|
|
|
|
|
|
|
|
r53AwsMaxRetries string
|
|
|
|
r53AwsTTL string
|
|
|
|
r53AwsPropagationTimeout string
|
|
|
|
r53AwsPollingInterval string
|
2015-12-03 20:01:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-09-08 11:49:24 +00:00
|
|
|
r53AwsAccessKeyID = os.Getenv("AWS_ACCESS_KEY_ID")
|
|
|
|
r53AwsSecretAccessKey = os.Getenv("AWS_SECRET_ACCESS_KEY")
|
|
|
|
r53AwsRegion = os.Getenv("AWS_REGION")
|
|
|
|
r53AwsHostedZoneID = os.Getenv("AWS_HOSTED_ZONE_ID")
|
|
|
|
|
|
|
|
r53AwsMaxRetries = os.Getenv("AWS_MAX_RETRIES")
|
|
|
|
r53AwsTTL = os.Getenv("AWS_TTL")
|
|
|
|
r53AwsPropagationTimeout = os.Getenv("AWS_PROPAGATION_TIMEOUT")
|
|
|
|
r53AwsPollingInterval = os.Getenv("AWS_POLLING_INTERVAL")
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2018-06-11 15:32:50 +00:00
|
|
|
func restoreEnv() {
|
2018-09-08 11:49:24 +00:00
|
|
|
os.Setenv("AWS_ACCESS_KEY_ID", r53AwsAccessKeyID)
|
|
|
|
os.Setenv("AWS_SECRET_ACCESS_KEY", r53AwsSecretAccessKey)
|
|
|
|
os.Setenv("AWS_REGION", r53AwsRegion)
|
|
|
|
os.Setenv("AWS_HOSTED_ZONE_ID", r53AwsHostedZoneID)
|
|
|
|
|
|
|
|
os.Setenv("AWS_MAX_RETRIES", r53AwsMaxRetries)
|
|
|
|
os.Setenv("AWS_TTL", r53AwsTTL)
|
|
|
|
os.Setenv("AWS_PROPAGATION_TIMEOUT", r53AwsPropagationTimeout)
|
|
|
|
os.Setenv("AWS_POLLING_INTERVAL", r53AwsPollingInterval)
|
|
|
|
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
func makeRoute53Provider(ts *httptest.Server) *DNSProvider {
|
|
|
|
config := &aws.Config{
|
|
|
|
Credentials: credentials.NewStaticCredentials("abc", "123", " "),
|
|
|
|
Endpoint: aws.String(ts.URL),
|
|
|
|
Region: aws.String("mock-region"),
|
|
|
|
MaxRetries: aws.Int(1),
|
|
|
|
}
|
2015-12-03 20:01:46 +00:00
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
client := route53.New(session.New(config))
|
2018-07-18 15:37:35 +00:00
|
|
|
cfg := NewDefaultConfig()
|
|
|
|
return &DNSProvider{client: client, config: cfg}
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
func TestCredentialsFromEnv(t *testing.T) {
|
2018-06-11 15:32:50 +00:00
|
|
|
defer restoreEnv()
|
2015-12-03 20:01:46 +00:00
|
|
|
os.Setenv("AWS_ACCESS_KEY_ID", "123")
|
|
|
|
os.Setenv("AWS_SECRET_ACCESS_KEY", "123")
|
2016-03-17 20:59:15 +00:00
|
|
|
os.Setenv("AWS_REGION", "us-east-1")
|
2015-12-03 20:01:46 +00:00
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
config := &aws.Config{
|
|
|
|
CredentialsChainVerboseErrors: aws.Bool(true),
|
|
|
|
}
|
2016-02-13 23:55:03 +00:00
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
sess := session.New(config)
|
|
|
|
_, err := sess.Config.Credentials.Get()
|
|
|
|
assert.NoError(t, err, "Expected credentials to be set from environment")
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2016-03-26 03:34:31 +00:00
|
|
|
func TestRegionFromEnv(t *testing.T) {
|
2018-06-11 15:32:50 +00:00
|
|
|
defer restoreEnv()
|
2016-03-26 03:34:31 +00:00
|
|
|
os.Setenv("AWS_REGION", "us-east-1")
|
|
|
|
|
|
|
|
sess := session.New(aws.NewConfig())
|
2018-05-30 17:53:04 +00:00
|
|
|
assert.Equal(t, "us-east-1", aws.StringValue(sess.Config.Region), "Expected Region to be set from environment")
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 19:50:53 +00:00
|
|
|
func TestHostedZoneIDFromEnv(t *testing.T) {
|
2018-06-11 15:32:50 +00:00
|
|
|
defer restoreEnv()
|
2017-07-17 19:50:53 +00:00
|
|
|
|
2018-06-11 15:32:50 +00:00
|
|
|
const testZoneID = "testzoneid"
|
2017-07-17 19:50:53 +00:00
|
|
|
os.Setenv("AWS_HOSTED_ZONE_ID", testZoneID)
|
|
|
|
|
|
|
|
provider, err := NewDNSProvider()
|
|
|
|
assert.NoError(t, err, "Expected no error constructing DNSProvider")
|
|
|
|
|
|
|
|
fqdn, err := provider.getHostedZoneID("whatever")
|
|
|
|
assert.NoError(t, err, "Expected FQDN to be resolved to environment variable value")
|
|
|
|
|
|
|
|
assert.Equal(t, testZoneID, fqdn)
|
|
|
|
}
|
|
|
|
|
2018-09-08 11:49:24 +00:00
|
|
|
func TestConfigFromEnv(t *testing.T) {
|
|
|
|
defer restoreEnv()
|
|
|
|
|
|
|
|
config := NewDefaultConfig()
|
|
|
|
assert.Equal(t, config.TTL, 10, "Expected TTL to be use the default")
|
|
|
|
|
|
|
|
os.Setenv("AWS_MAX_RETRIES", "10")
|
|
|
|
os.Setenv("AWS_TTL", "99")
|
|
|
|
os.Setenv("AWS_PROPAGATION_TIMEOUT", "60")
|
|
|
|
os.Setenv("AWS_POLLING_INTERVAL", "60")
|
|
|
|
const zoneID = "abc123"
|
|
|
|
os.Setenv("AWS_HOSTED_ZONE_ID", zoneID)
|
|
|
|
|
|
|
|
config = NewDefaultConfig()
|
|
|
|
assert.Equal(t, config.MaxRetries, 10, "Expected PropagationTimeout to be configured from the environment")
|
|
|
|
assert.Equal(t, config.TTL, 99, "Expected TTL to be configured from the environment")
|
2018-09-10 07:52:43 +00:00
|
|
|
assert.Equal(t, config.PropagationTimeout, time.Second*60, "Expected PropagationTimeout to be configured from the environment")
|
2018-09-08 11:49:24 +00:00
|
|
|
assert.Equal(t, config.PollingInterval, time.Second*60, "Expected PollingInterval to be configured from the environment")
|
|
|
|
assert.Equal(t, config.HostedZoneID, zoneID, "Expected HostedZoneID to be configured from the environment")
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
func TestRoute53Present(t *testing.T) {
|
2016-03-26 03:34:31 +00:00
|
|
|
mockResponses := MockResponseMap{
|
|
|
|
"/2013-04-01/hostedzonesbyname": MockResponse{StatusCode: 200, Body: ListHostedZonesByNameResponse},
|
|
|
|
"/2013-04-01/hostedzone/ABCDEFG/rrset/": MockResponse{StatusCode: 200, Body: ChangeResourceRecordSetsResponse},
|
|
|
|
"/2013-04-01/change/123456": MockResponse{StatusCode: 200, Body: GetChangeResponse},
|
|
|
|
}
|
|
|
|
|
|
|
|
ts := newMockServer(t, mockResponses)
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
provider := makeRoute53Provider(ts)
|
2015-12-03 20:01:46 +00:00
|
|
|
|
2016-01-15 04:06:25 +00:00
|
|
|
domain := "example.com"
|
|
|
|
keyAuth := "123456d=="
|
|
|
|
|
|
|
|
err := provider.Present(domain, "", keyAuth)
|
2016-03-26 03:34:31 +00:00
|
|
|
assert.NoError(t, err, "Expected Present to return no error")
|
2015-12-03 20:01:46 +00:00
|
|
|
}
|