forked from abh/geodns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzones_test.go
127 lines (102 loc) · 3.24 KB
/
zones_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package main
import (
"io"
"io/ioutil"
"os"
"testing"
"github.com/abh/geodns/Godeps/_workspace/src/github.com/miekg/dns"
. "github.com/abh/geodns/Godeps/_workspace/src/gopkg.in/check.v1"
)
// Hook up gocheck into the gotest runner.
func Test(t *testing.T) { TestingT(t) }
type ConfigSuite struct {
zones Zones
}
var _ = Suite(&ConfigSuite{})
func (s *ConfigSuite) SetUpSuite(c *C) {
s.zones = make(Zones)
lastRead = map[string]*ZoneReadRecord{}
zonesReadDir("dns", s.zones)
}
func (s *ConfigSuite) TestReadConfigs(c *C) {
// Just check that example.com and test.example.org loaded, too.
c.Check(s.zones["example.com"].Origin, Equals, "example.com")
c.Check(s.zones["test.example.org"].Origin, Equals, "test.example.org")
if s.zones["test.example.org"].Options.Serial == 0 {
c.Log("Serial number is 0, should be set by file timestamp")
c.Fail()
}
// The real tests are in test.example.com so we have a place
// to make nutty configuration entries
tz := s.zones["test.example.com"]
// test.example.com was loaded
c.Check(tz.Origin, Equals, "test.example.com")
c.Check(tz.Options.MaxHosts, Equals, 2)
c.Check(tz.Options.Contact, Equals, "support.bitnames.com")
c.Check(tz.Options.Targeting.String(), Equals, "@ continent country regiongroup region asn ip")
// Got logging option
c.Check(tz.Logging.StatHat, Equals, true)
c.Check(tz.Labels["weight"].MaxHosts, Equals, 1)
/* test different cname targets */
c.Check(tz.Labels["www"].
firstRR(dns.TypeCNAME).(*dns.CNAME).
Target, Equals, "geo.bitnames.com.")
c.Check(tz.Labels["www-cname"].
firstRR(dns.TypeCNAME).(*dns.CNAME).
Target, Equals, "bar.test.example.com.")
c.Check(tz.Labels["www-alias"].
firstRR(dns.TypeMF).(*dns.MF).
Mf, Equals, "www")
// The header name should just have a dot-prefix
c.Check(tz.Labels[""].Records[dns.TypeNS][0].RR.(*dns.NS).Hdr.Name, Equals, "test.example.com.")
}
func (s *ConfigSuite) TestRemoveConfig(c *C) {
// restore the dns.Mux
defer zonesReadDir("dns", s.zones)
dir, err := ioutil.TempDir("", "geodns-test.")
if err != nil {
c.Fail()
}
defer os.RemoveAll(dir)
_, err = CopyFile(c, "dns/test.example.org.json", dir+"/test.example.org.json")
if err != nil {
c.Log(err)
c.Fail()
}
_, err = CopyFile(c, "dns/test.example.org.json", dir+"/test2.example.org.json")
if err != nil {
c.Log(err)
c.Fail()
}
err = ioutil.WriteFile(dir+"/invalid.example.org.json", []byte("not-json"), 0644)
if err != nil {
c.Log(err)
c.Fail()
}
zonesReadDir(dir, s.zones)
c.Check(s.zones["test.example.org"].Origin, Equals, "test.example.org")
c.Check(s.zones["test2.example.org"].Origin, Equals, "test2.example.org")
os.Remove(dir + "/test2.example.org.json")
os.Remove(dir + "/invalid.example.org.json")
zonesReadDir(dir, s.zones)
c.Check(s.zones["test.example.org"].Origin, Equals, "test.example.org")
_, ok := s.zones["test2.example.org"]
c.Check(ok, Equals, false)
}
func CopyFile(c *C, src, dst string) (int64, error) {
sf, err := os.Open(src)
if err != nil {
c.Log("Could not copy", src, "to", dst, "because", err)
c.Fail()
return 0, err
}
defer sf.Close()
df, err := os.Create(dst)
if err != nil {
c.Log("Could not copy", src, "to", dst, "because", err)
c.Fail()
return 0, err
}
defer df.Close()
return io.Copy(df, sf)
}