mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-05 17:16:59 +02:00
603 lines
15 KiB
Go
603 lines
15 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package inmemory
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"sigs.k8s.io/external-dns/endpoint"
|
|
"sigs.k8s.io/external-dns/internal/testutils"
|
|
"sigs.k8s.io/external-dns/plan"
|
|
"sigs.k8s.io/external-dns/provider"
|
|
)
|
|
|
|
var _ provider.Provider = &InMemoryProvider{}
|
|
|
|
func TestInMemoryProvider(t *testing.T) {
|
|
t.Run("Records", testInMemoryRecords)
|
|
t.Run("validateChangeBatch", testInMemoryValidateChangeBatch)
|
|
t.Run("ApplyChanges", testInMemoryApplyChanges)
|
|
t.Run("NewInMemoryProvider", testNewInMemoryProvider)
|
|
t.Run("CreateZone", testInMemoryCreateZone)
|
|
}
|
|
|
|
func testInMemoryRecords(t *testing.T) {
|
|
for _, ti := range []struct {
|
|
title string
|
|
zone string
|
|
expectError bool
|
|
init map[string]zone
|
|
expected []*endpoint.Endpoint
|
|
}{
|
|
{
|
|
title: "no records, no zone",
|
|
zone: "",
|
|
init: map[string]zone{},
|
|
expectError: false,
|
|
},
|
|
{
|
|
title: "records, wrong zone",
|
|
zone: "net",
|
|
init: map[string]zone{
|
|
"org": {},
|
|
"com": {},
|
|
},
|
|
expectError: false,
|
|
},
|
|
{
|
|
title: "records, zone with records",
|
|
zone: "org",
|
|
init: map[string]zone{
|
|
"org": makeZone(
|
|
"example.org", "8.8.8.8", endpoint.RecordTypeA,
|
|
"example.org", "", endpoint.RecordTypeTXT,
|
|
"foo.org", "4.4.4.4", endpoint.RecordTypeCNAME,
|
|
),
|
|
"com": makeZone("example.com", "4.4.4.4", endpoint.RecordTypeCNAME),
|
|
},
|
|
expectError: false,
|
|
expected: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
{
|
|
DNSName: "example.org",
|
|
RecordType: endpoint.RecordTypeTXT,
|
|
Targets: endpoint.Targets{""},
|
|
},
|
|
{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeCNAME,
|
|
},
|
|
},
|
|
},
|
|
} {
|
|
t.Run(ti.title, func(t *testing.T) {
|
|
c := newInMemoryClient()
|
|
c.zones = ti.init
|
|
im := NewInMemoryProvider()
|
|
im.client = c
|
|
f := filter{domain: ti.zone}
|
|
im.filter = &f
|
|
records, err := im.Records(context.Background())
|
|
if ti.expectError {
|
|
assert.Nil(t, records)
|
|
assert.EqualError(t, err, ErrZoneNotFound.Error())
|
|
} else {
|
|
require.NoError(t, err)
|
|
assert.True(t, testutils.SameEndpoints(ti.expected, records), "Endpoints not the same: Expected: %+v Records: %+v", ti.expected, records)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func testInMemoryValidateChangeBatch(t *testing.T) {
|
|
init := map[string]zone{
|
|
"org": makeZone(
|
|
"example.org", "8.8.8.8", endpoint.RecordTypeA,
|
|
"example.org", "", endpoint.RecordTypeTXT,
|
|
"foo.org", "bar.org", endpoint.RecordTypeCNAME,
|
|
"foo.bar.org", "5.5.5.5", endpoint.RecordTypeA,
|
|
),
|
|
"com": makeZone("example.com", "another-example.com", endpoint.RecordTypeCNAME),
|
|
}
|
|
for _, ti := range []struct {
|
|
title string
|
|
expectError bool
|
|
errorType error
|
|
init map[string]zone
|
|
changes *plan.Changes
|
|
zone string
|
|
}{
|
|
{
|
|
title: "no zones, no update",
|
|
expectError: true,
|
|
zone: "",
|
|
init: map[string]zone{},
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrZoneNotFound,
|
|
},
|
|
{
|
|
title: "zones, no update",
|
|
expectError: true,
|
|
zone: "",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrZoneNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, wrong zone",
|
|
expectError: true,
|
|
zone: "test",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrZoneNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - already exists",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrRecordAlreadyExists,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - record not found for update",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrRecordNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - record not found for update",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrRecordNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - duplicated create",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
{
|
|
DNSName: "foo.org",
|
|
Targets: endpoint.Targets{"4.4.4.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrDuplicateRecordFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - duplicated update/delete",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{
|
|
{
|
|
Old: &endpoint.Endpoint{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
errorType: ErrDuplicateRecordFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - duplicated update",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrDuplicateRecordFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - wrong update old",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{
|
|
{
|
|
Old: &endpoint.Endpoint{
|
|
DNSName: "new.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "new.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
errorType: ErrRecordNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, invalid batch - wrong delete",
|
|
expectError: true,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "new.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
errorType: ErrRecordNotFound,
|
|
},
|
|
{
|
|
title: "zones, update, right zone, valid batch - delete",
|
|
expectError: false,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"5.5.5.5"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: "zones, update, right zone, valid batch - update and create",
|
|
expectError: false,
|
|
zone: "org",
|
|
init: init,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.bar.new.org",
|
|
Targets: endpoint.Targets{"4.8.8.9"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"4.8.8.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
Old: &endpoint.Endpoint{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"5.5.5.5"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
},
|
|
} {
|
|
t.Run(ti.title, func(t *testing.T) {
|
|
c := &inMemoryClient{}
|
|
c.zones = ti.init
|
|
ichanges := &plan.Changes{
|
|
Create: ti.changes.Create,
|
|
Update: ti.changes.Update,
|
|
Delete: ti.changes.Delete,
|
|
}
|
|
err := c.validateChangeBatch(ti.zone, ichanges)
|
|
if ti.expectError {
|
|
assert.EqualError(t, err, ti.errorType.Error())
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func getInitData() map[string]zone {
|
|
return map[string]zone{
|
|
"org": makeZone("example.org", "8.8.8.8", endpoint.RecordTypeA,
|
|
"example.org", "", endpoint.RecordTypeTXT,
|
|
"foo.org", "4.4.4.4", endpoint.RecordTypeCNAME,
|
|
"foo.bar.org", "5.5.5.5", endpoint.RecordTypeA,
|
|
),
|
|
"com": makeZone("example.com", "4.4.4.4", endpoint.RecordTypeCNAME),
|
|
}
|
|
}
|
|
|
|
func testInMemoryApplyChanges(t *testing.T) {
|
|
for _, ti := range []struct {
|
|
title string
|
|
expectError bool
|
|
init map[string]zone
|
|
changes *plan.Changes
|
|
expectedZonesState map[string]zone
|
|
}{
|
|
{
|
|
title: "unmatched zone, should be ignored in the apply step",
|
|
expectError: false,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{{
|
|
DNSName: "example.de",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
}},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{},
|
|
},
|
|
expectedZonesState: getInitData(),
|
|
},
|
|
{
|
|
title: "expect error",
|
|
expectError: true,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
Old: &endpoint.Endpoint{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: "zones, update, right zone, valid batch - delete",
|
|
expectError: false,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{},
|
|
Update: []*plan.Update{},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"5.5.5.5"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
},
|
|
},
|
|
},
|
|
expectedZonesState: map[string]zone{
|
|
"org": makeZone("example.org", "8.8.8.8", endpoint.RecordTypeA,
|
|
"example.org", "", endpoint.RecordTypeTXT,
|
|
"foo.org", "4.4.4.4", endpoint.RecordTypeCNAME,
|
|
),
|
|
"com": makeZone("example.com", "4.4.4.4", endpoint.RecordTypeCNAME),
|
|
},
|
|
},
|
|
{
|
|
title: "zones, update, right zone, valid batch - update, create, delete",
|
|
expectError: false,
|
|
changes: &plan.Changes{
|
|
Create: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "foo.bar.new.org",
|
|
Targets: endpoint.Targets{"4.8.8.9"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
Labels: endpoint.NewLabels(),
|
|
},
|
|
},
|
|
Update: []*plan.Update{
|
|
{
|
|
New: &endpoint.Endpoint{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"4.8.8.4"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
Labels: endpoint.NewLabels(),
|
|
},
|
|
Old: &endpoint.Endpoint{
|
|
DNSName: "foo.bar.org",
|
|
Targets: endpoint.Targets{"5.5.5.5"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
Labels: endpoint.NewLabels(),
|
|
},
|
|
},
|
|
},
|
|
Delete: []*endpoint.Endpoint{
|
|
{
|
|
DNSName: "example.org",
|
|
Targets: endpoint.Targets{"8.8.8.8"},
|
|
RecordType: endpoint.RecordTypeA,
|
|
Labels: endpoint.NewLabels(),
|
|
},
|
|
},
|
|
},
|
|
expectedZonesState: map[string]zone{
|
|
"org": makeZone(
|
|
"example.org", "", endpoint.RecordTypeTXT,
|
|
"foo.org", "4.4.4.4", endpoint.RecordTypeCNAME,
|
|
"foo.bar.org", "4.8.8.4", endpoint.RecordTypeA,
|
|
"foo.bar.new.org", "4.8.8.9", endpoint.RecordTypeA,
|
|
),
|
|
"com": makeZone("example.com", "4.4.4.4", endpoint.RecordTypeCNAME),
|
|
},
|
|
},
|
|
} {
|
|
t.Run(ti.title, func(t *testing.T) {
|
|
im := NewInMemoryProvider()
|
|
c := &inMemoryClient{}
|
|
c.zones = getInitData()
|
|
im.client = c
|
|
|
|
err := im.ApplyChanges(context.Background(), ti.changes)
|
|
if ti.expectError {
|
|
assert.Error(t, err)
|
|
} else {
|
|
require.NoError(t, err)
|
|
assert.Equal(t, ti.expectedZonesState, c.zones)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func testNewInMemoryProvider(t *testing.T) {
|
|
cfg := NewInMemoryProvider()
|
|
assert.NotNil(t, cfg.client)
|
|
}
|
|
|
|
func testInMemoryCreateZone(t *testing.T) {
|
|
im := NewInMemoryProvider()
|
|
err := im.CreateZone("zone")
|
|
require.NoError(t, err)
|
|
err = im.CreateZone("zone")
|
|
require.EqualError(t, err, ErrZoneAlreadyExists.Error())
|
|
}
|
|
|
|
func makeZone(s ...string) map[endpoint.EndpointKey]*endpoint.Endpoint {
|
|
if len(s)%3 != 0 {
|
|
panic("makeZone arguments must be multiple of 3")
|
|
}
|
|
|
|
output := map[endpoint.EndpointKey]*endpoint.Endpoint{}
|
|
for i := 0; i < len(s); i += 3 {
|
|
ep := endpoint.NewEndpoint(s[i], s[i+2], s[i+1])
|
|
output[ep.Key()] = ep
|
|
}
|
|
|
|
return output
|
|
}
|