mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-13 03:34:32 +08:00
33 lines
889 B
Go
33 lines
889 B
Go
package models
|
|
|
|
import "testing"
|
|
|
|
func TestKey(t *testing.T) {
|
|
var tests = []struct {
|
|
rc RecordConfig
|
|
expected RecordKey
|
|
}{
|
|
{
|
|
RecordConfig{Type: "A", NameFQDN: "example.com"},
|
|
RecordKey{Type: "A", NameFQDN: "example.com"},
|
|
},
|
|
{
|
|
RecordConfig{Type: "R53_ALIAS", NameFQDN: "example.com"},
|
|
RecordKey{Type: "R53_ALIAS", NameFQDN: "example.com"},
|
|
},
|
|
{
|
|
RecordConfig{Type: "R53_ALIAS", NameFQDN: "example.com", R53Alias: map[string]string{"foo": "bar"}},
|
|
RecordKey{Type: "R53_ALIAS", NameFQDN: "example.com"},
|
|
},
|
|
{
|
|
RecordConfig{Type: "R53_ALIAS", NameFQDN: "example.com", R53Alias: map[string]string{"type": "AAAA"}},
|
|
RecordKey{Type: "R53_ALIAS_AAAA", NameFQDN: "example.com"},
|
|
},
|
|
}
|
|
for i, test := range tests {
|
|
actual := test.rc.Key()
|
|
if test.expected != actual {
|
|
t.Errorf("%d: Expected %s, got %s", i, test.expected, actual)
|
|
}
|
|
}
|
|
}
|