mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-23 07:03:01 +08:00
42 lines
1,022 B
Go
42 lines
1,022 B
Go
package gandiv5
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/StackExchange/dnscontrol/v4/models"
|
|
)
|
|
|
|
func TestRecordsToNative_1(t *testing.T) {
|
|
rcs := []*models.RecordConfig{{}}
|
|
rcs[0].SetLabelFromFQDN("foo.example.com", "example.com")
|
|
rcs[0].Type = "A"
|
|
rcs[0].MustSetTarget("1.2.3.4")
|
|
|
|
ns := recordsToNative(rcs, "example.com")
|
|
|
|
if len(ns) != 1 {
|
|
t.Errorf("len(ns) != 1; got=%v", len(ns))
|
|
}
|
|
if len(ns[0].RrsetValues) != 1 {
|
|
t.Errorf("len(ns[0].RrsetValues) != 1; got=%v", ns[0].RrsetValues)
|
|
}
|
|
}
|
|
|
|
func TestRecordsToNative_2(t *testing.T) {
|
|
rcs := []*models.RecordConfig{{}, {}}
|
|
rcs[0].SetLabelFromFQDN("foo.example.com", "example.com")
|
|
rcs[0].Type = "A"
|
|
rcs[0].MustSetTarget("1.2.3.4")
|
|
rcs[1].SetLabelFromFQDN("foo.example.com", "example.com")
|
|
rcs[1].Type = "A"
|
|
rcs[1].MustSetTarget("5.6.7.8")
|
|
|
|
ns := recordsToNative(rcs, "example.com")
|
|
|
|
if len(ns) != 1 {
|
|
t.Errorf("len(ns) != 1; got=%v", len(ns))
|
|
}
|
|
if len(ns[0].RrsetValues) != 2 {
|
|
t.Errorf("len(ns[0].RrsetValues) != 2; got=%v", ns[0].RrsetValues)
|
|
}
|
|
}
|