mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-14 11:27:41 +08:00
2f83aa9302
* Switched to v2 go.mod Also set GO111MODULE=on in build stuff to always use Go modules even when in GOPATH. * Ensure go.mod, go.sum, and vendor are up to date * Attempt to fix Azure pipelines * Add set -e to properly fail on exit (it didn't seem to be propagating properly before). * Set workingDirectory for GoFmt and GoGen (this might be why it fails unlike compile and unitests). * Another attempt to fix Azure Pipelines * Use the Go env template for all go-related jobs. * Completely fixed Azure Pipelines * Added a display name to GoFmt for consistency. * Fixed diffs for GoFmt and GoGen. * Show git status for checks. * Drop GOPATH for tests TODO: Do the same for integration tests. * Drop GOPATH for integration tests * Show more diffs * Regenerate provider support matrix This wasn't done in #590...
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package activedir
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/StackExchange/dnscontrol/v2/models"
|
|
)
|
|
|
|
func makeRC(label, domain, target string, rc models.RecordConfig) *models.RecordConfig {
|
|
rc.SetLabel(label, domain)
|
|
rc.SetTarget(target)
|
|
return &rc
|
|
}
|
|
|
|
func TestGetExistingRecords(t *testing.T) {
|
|
|
|
cf := &adProvider{}
|
|
|
|
cf.fake = true
|
|
actual, err := cf.getExistingRecords("test2")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
expected := []*models.RecordConfig{
|
|
makeRC("@", "test2", "10.166.2.11", models.RecordConfig{Type: "A", TTL: 600}),
|
|
makeRC("_msdcs", "test2", "other_record", models.RecordConfig{Type: "NS", TTL: 300}),
|
|
makeRC("co-devsearch02", "test2", "10.8.2.64", models.RecordConfig{Type: "A", TTL: 3600}),
|
|
makeRC("co-devservice01", "test2", "10.8.2.48", models.RecordConfig{Type: "A", TTL: 1200}), // Downcased.
|
|
makeRC("yum", "test2", "10.8.0.59", models.RecordConfig{Type: "A", TTL: 3600}),
|
|
}
|
|
|
|
actualS := ""
|
|
for i, x := range actual {
|
|
actualS += fmt.Sprintf("%d %v\n", i, x)
|
|
}
|
|
|
|
expectedS := ""
|
|
for i, x := range expected {
|
|
expectedS += fmt.Sprintf("%d %v\n", i, x)
|
|
}
|
|
|
|
if actualS != expectedS {
|
|
t.Fatalf("got\n(%s)\nbut expected\n(%s)", actualS, expectedS)
|
|
}
|
|
}
|