forked from golang/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlookup_windows_test.go
232 lines (210 loc) · 5.97 KB
/
lookup_windows_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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package net
import (
"bytes"
"encoding/json"
"errors"
"internal/testenv"
"os/exec"
"reflect"
"regexp"
"sort"
"strings"
"testing"
)
var nslookupTestServers = []string{"mail.golang.com", "gmail.com"}
func toJson(v interface{}) string {
data, _ := json.Marshal(v)
return string(data)
}
func TestNSLookupMX(t *testing.T) {
testenv.MustHaveExternalNetwork(t)
for _, server := range nslookupTestServers {
mx, err := LookupMX(server)
if err != nil {
t.Error(err)
continue
}
if len(mx) == 0 {
t.Errorf("no results")
continue
}
expected, err := nslookupMX(server)
if err != nil {
t.Logf("skipping failed nslookup %s test: %s", server, err)
}
sort.Sort(byPrefAndHost(expected))
sort.Sort(byPrefAndHost(mx))
if !reflect.DeepEqual(expected, mx) {
t.Errorf("different results %s:\texp:%v\tgot:%v", server, toJson(expected), toJson(mx))
}
}
}
func TestNSLookupCNAME(t *testing.T) {
testenv.MustHaveExternalNetwork(t)
for _, server := range nslookupTestServers {
cname, err := LookupCNAME(server)
if err != nil {
t.Errorf("failed %s: %s", server, err)
continue
}
if cname == "" {
t.Errorf("no result %s", server)
}
expected, err := nslookupCNAME(server)
if err != nil {
t.Logf("skipping failed nslookup %s test: %s", server, err)
continue
}
if expected != cname {
t.Errorf("different results %s:\texp:%v\tgot:%v", server, expected, cname)
}
}
}
func TestNSLookupNS(t *testing.T) {
testenv.MustHaveExternalNetwork(t)
for _, server := range nslookupTestServers {
ns, err := LookupNS(server)
if err != nil {
t.Errorf("failed %s: %s", server, err)
continue
}
if len(ns) == 0 {
t.Errorf("no results")
continue
}
expected, err := nslookupNS(server)
if err != nil {
t.Logf("skipping failed nslookup %s test: %s", server, err)
continue
}
sort.Sort(byHost(expected))
sort.Sort(byHost(ns))
if !reflect.DeepEqual(expected, ns) {
t.Errorf("different results %s:\texp:%v\tgot:%v", toJson(server), toJson(expected), ns)
}
}
}
func TestNSLookupTXT(t *testing.T) {
testenv.MustHaveExternalNetwork(t)
for _, server := range nslookupTestServers {
txt, err := LookupTXT(server)
if err != nil {
t.Errorf("failed %s: %s", server, err)
continue
}
if len(txt) == 0 {
t.Errorf("no results")
continue
}
expected, err := nslookupTXT(server)
if err != nil {
t.Logf("skipping failed nslookup %s test: %s", server, err)
continue
}
sort.Strings(expected)
sort.Strings(txt)
if !reflect.DeepEqual(expected, txt) {
t.Errorf("different results %s:\texp:%v\tgot:%v", server, toJson(expected), toJson(txt))
}
}
}
type byPrefAndHost []*MX
func (s byPrefAndHost) Len() int { return len(s) }
func (s byPrefAndHost) Less(i, j int) bool {
if s[i].Pref != s[j].Pref {
return s[i].Pref < s[j].Pref
}
return s[i].Host < s[j].Host
}
func (s byPrefAndHost) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
type byHost []*NS
func (s byHost) Len() int { return len(s) }
func (s byHost) Less(i, j int) bool { return s[i].Host < s[j].Host }
func (s byHost) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func nslookup(qtype, name string) (string, error) {
var out bytes.Buffer
var err bytes.Buffer
cmd := exec.Command("nslookup", "-querytype="+qtype, name)
cmd.Stdout = &out
cmd.Stderr = &err
if err := cmd.Run(); err != nil {
return "", err
}
r := strings.Replace(out.String(), "\r\n", "\n", -1)
// nslookup stderr output contains also debug information such as
// "Non-authoritative answer" and it doesn't return the correct errcode
if strings.Contains(err.String(), "can't find") {
return r, errors.New(err.String())
}
return r, nil
}
func nslookupMX(name string) (mx []*MX, err error) {
var r string
if r, err = nslookup("mx", name); err != nil {
return
}
mx = make([]*MX, 0, 10)
// linux nslookup syntax
// golang.org mail exchanger = 2 alt1.aspmx.l.google.com.
rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+mail exchanger\s*=\s*([0-9]+)\s*([a-z0-9.\-]+)$`)
for _, ans := range rx.FindAllStringSubmatch(r, -1) {
pref, _, _ := dtoi(ans[2])
mx = append(mx, &MX{absDomainName([]byte(ans[3])), uint16(pref)})
}
// windows nslookup syntax
// gmail.com MX preference = 30, mail exchanger = alt3.gmail-smtp-in.l.google.com
rx = regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+MX preference\s*=\s*([0-9]+)\s*,\s*mail exchanger\s*=\s*([a-z0-9.\-]+)$`)
for _, ans := range rx.FindAllStringSubmatch(r, -1) {
pref, _, _ := dtoi(ans[2])
mx = append(mx, &MX{absDomainName([]byte(ans[3])), uint16(pref)})
}
return
}
func nslookupNS(name string) (ns []*NS, err error) {
var r string
if r, err = nslookup("ns", name); err != nil {
return
}
ns = make([]*NS, 0, 10)
// golang.org nameserver = ns1.google.com.
rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+nameserver\s*=\s*([a-z0-9.\-]+)$`)
for _, ans := range rx.FindAllStringSubmatch(r, -1) {
ns = append(ns, &NS{absDomainName([]byte(ans[2]))})
}
return
}
func nslookupCNAME(name string) (cname string, err error) {
var r string
if r, err = nslookup("cname", name); err != nil {
return
}
// mail.golang.com canonical name = golang.org.
rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+canonical name\s*=\s*([a-z0-9.\-]+)$`)
// assumes the last CNAME is the correct one
last := name
for _, ans := range rx.FindAllStringSubmatch(r, -1) {
last = ans[2]
}
return absDomainName([]byte(last)), nil
}
func nslookupTXT(name string) (txt []string, err error) {
var r string
if r, err = nslookup("txt", name); err != nil {
return
}
txt = make([]string, 0, 10)
// linux
// golang.org text = "v=spf1 redirect=_spf.google.com"
// windows
// golang.org text =
//
// "v=spf1 redirect=_spf.google.com"
rx := regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+text\s*=\s*"(.*)"$`)
for _, ans := range rx.FindAllStringSubmatch(r, -1) {
txt = append(txt, ans[2])
}
return
}