-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathmodel_mikrotik_test.go
339 lines (270 loc) · 9.44 KB
/
model_mikrotik_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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
package dev
import (
"io"
"net"
"path/filepath"
"strings"
"testing"
"github.com/udhos/jazigo/conf"
"github.com/udhos/jazigo/temp"
)
type optionsMikrotik struct {
sendBanner bool
breakConn bool
}
func TestMikrotik1(t *testing.T) {
// launch bogus test server
addr := ":2011"
s, listenErr := spawnServerMikrotik(t, addr, optionsMikrotik{})
if listenErr != nil {
t.Errorf("could not spawn bogus Mikrotik server: %v", listenErr)
}
// run client test
logger := &testLogger{t}
tab := NewDeviceTable()
opt := conf.NewOptions()
opt.Set(&conf.AppConfig{MaxConcurrency: 3, MaxConfigFiles: 10})
RegisterModels(logger, tab)
CreateDevice(tab, logger, "mikrotik", "lab1", "localhost"+addr, "telnet", "lab", "pass", "en", false, nil)
repo := temp.MakeTempRepo()
defer temp.CleanupTempRepo()
requestCh := make(chan FetchRequest)
errlogPrefix := filepath.Join(repo, "errlog_test.")
go Spawner(tab, logger, requestCh, repo, errlogPrefix, opt, NewFilterTable(logger))
good, bad, skip := Scan(tab, tab.ListDevices(), logger, opt.Get(), requestCh)
if good != 1 || bad != 0 || skip != 0 {
t.Errorf("good=%d bad=%d skip=%d", good, bad, skip)
}
close(requestCh) // shutdown Spawner - we might exit first though
s.close() // shutdown server
<-s.done // wait termination of accept loop goroutine
}
func TestMikrotik2(t *testing.T) {
// launch bogus test server
addr := ":2012"
s, listenErr := spawnServerMikrotik(t, addr, optionsMikrotik{sendBanner: true})
if listenErr != nil {
t.Errorf("could not spawn bogus Mikrotik server: %v", listenErr)
}
// run client test
logger := &testLogger{t}
tab := NewDeviceTable()
opt := conf.NewOptions()
opt.Set(&conf.AppConfig{MaxConcurrency: 3, MaxConfigFiles: 10})
RegisterModels(logger, tab)
CreateDevice(tab, logger, "mikrotik", "lab1", "localhost"+addr, "telnet", "lab", "pass", "en", false, nil)
repo := temp.MakeTempRepo()
defer temp.CleanupTempRepo()
requestCh := make(chan FetchRequest)
errlogPrefix := filepath.Join(repo, "errlog_test.")
go Spawner(tab, logger, requestCh, repo, errlogPrefix, opt, NewFilterTable(logger))
good, bad, skip := Scan(tab, tab.ListDevices(), logger, opt.Get(), requestCh)
if good != 1 || bad != 0 || skip != 0 {
t.Errorf("good=%d bad=%d skip=%d", good, bad, skip)
}
close(requestCh) // shutdown Spawner - we might exit first though
s.close() // shutdown server
<-s.done // wait termination of accept loop goroutine
}
func TestMikrotik3(t *testing.T) {
// launch bogus test server
addr := ":2013"
s, listenErr := spawnServerMikrotik(t, addr, optionsMikrotik{breakConn: true})
if listenErr != nil {
t.Errorf("could not spawn bogus Mikrotik server: %v", listenErr)
}
// run client test
logger := &testLogger{t}
tab := NewDeviceTable()
opt := conf.NewOptions()
opt.Set(&conf.AppConfig{MaxConcurrency: 3, MaxConfigFiles: 10})
RegisterModels(logger, tab)
CreateDevice(tab, logger, "mikrotik", "lab1", "localhost"+addr, "telnet", "lab", "pass", "en", false, nil)
repo := temp.MakeTempRepo()
defer temp.CleanupTempRepo()
requestCh := make(chan FetchRequest)
errlogPrefix := filepath.Join(repo, "errlog_test.")
go Spawner(tab, logger, requestCh, repo, errlogPrefix, opt, NewFilterTable(logger))
good, bad, skip := Scan(tab, tab.ListDevices(), logger, opt.Get(), requestCh)
if good != 0 || bad != 1 || skip != 0 {
t.Errorf("good=%d bad=%d skip=%d", good, bad, skip)
}
close(requestCh) // shutdown Spawner - we might exit first though
s.close() // shutdown server
<-s.done // wait termination of accept loop goroutine
}
func TestMikrotik4(t *testing.T) {
// launch bogus test server
addr := ":2014"
s, listenErr := spawnServerMikrotik(t, addr, optionsMikrotik{sendBanner: true, breakConn: true})
if listenErr != nil {
t.Errorf("could not spawn bogus Mikrotik server: %v", listenErr)
}
// run client test
logger := &testLogger{t}
tab := NewDeviceTable()
opt := conf.NewOptions()
opt.Set(&conf.AppConfig{MaxConcurrency: 3, MaxConfigFiles: 10})
RegisterModels(logger, tab)
CreateDevice(tab, logger, "mikrotik", "lab1", "localhost"+addr, "telnet", "lab", "pass", "en", false, nil)
repo := temp.MakeTempRepo()
defer temp.CleanupTempRepo()
requestCh := make(chan FetchRequest)
errlogPrefix := filepath.Join(repo, "errlog_test.")
go Spawner(tab, logger, requestCh, repo, errlogPrefix, opt, NewFilterTable(logger))
good, bad, skip := Scan(tab, tab.ListDevices(), logger, opt.Get(), requestCh)
if good != 0 || bad != 1 || skip != 0 {
t.Errorf("good=%d bad=%d skip=%d", good, bad, skip)
}
close(requestCh) // shutdown Spawner - we might exit first though
s.close() // shutdown server
<-s.done // wait termination of accept loop goroutine
}
func spawnServerMikrotik(t *testing.T, addr string, options optionsMikrotik) (*testServer, error) {
ln, err := net.Listen("tcp", addr)
if err != nil {
return nil, err
}
s := &testServer{listener: ln, done: make(chan int)}
go acceptLoopMikrotik(t, s, handleConnectionMikrotik, options)
return s, nil
}
func acceptLoopMikrotik(t *testing.T, s *testServer, handler func(*testing.T, net.Conn, optionsMikrotik), options optionsMikrotik) {
for {
conn, err := s.listener.Accept()
if err != nil {
t.Logf("acceptLoopMikrotik: accept failure, exiting: %v", err)
break
}
go handler(t, conn, options)
}
close(s.done)
}
func handleConnectionMikrotik(t *testing.T, c net.Conn, options optionsMikrotik) {
defer c.Close()
buf := make([]byte, 1000)
// send username prompt
if _, err := c.Write([]byte("Login: ")); err != nil {
t.Logf("handleConnectionMikrotik: send username prompt error: %v", err)
return
}
// consume username
if _, err := c.Read(buf); err != nil {
t.Logf("handleConnectionMikrotik: read username error: %v", err)
return
}
// send password prompt
if _, err := c.Write([]byte("\nPassword: ")); err != nil {
t.Logf("handleConnectionMikrotik: send password prompt error: %v", err)
return
}
// consume password
if _, err := c.Read(buf); err != nil {
t.Logf("handleConnectionMikrotik: read password error: %v", err)
return
}
// send post login prompt
if options.sendBanner {
banner := `
MMM MMM KKK TTTTTTTTTTT KKK
MMMM MMMM KKK TTTTTTTTTTT KKK
MMM MMMM MMM III KKK KKK RRRRRR OOOOOO TTT III KKK KKK
MMM MM MMM III KKKKK RRR RRR OOO OOO TTT III KKKKK
MMM MMM III KKK KKK RRRRRR OOO OOO TTT III KKK KKK
MMM MMM III KKK KKK RRR RRR OOOOOO TTT III KKK KKK
MikroTik RouterOS 6.37.3 (c) 1999-2016 http://www.mikrotik.com/
ROUTER HAS NO SOFTWARE KEY
----------------------------
You have 20h19m to configure the router to be remotely accessible,
and to enter the key by pasting it in a Telnet window or in Winbox.
Turn off the device to stop the timer.
See www.mikrotik.com/key for more details.
Current installation "software ID": 6ZDH-HYFR
Please press "Enter" to continue!
`
if _, err := c.Write([]byte("\r\n" + banner)); err != nil {
t.Logf("handleConnectionMikrotik: send banner error: %v", err)
return
}
// consume response
if _, err := c.Read(buf); err != nil {
t.Logf("handleConnectionMikrotik: read response error: %v", err)
return
}
}
LOOP:
for {
// send command prompt
if _, err := c.Write([]byte("\r\n[admin@MikroTik] > ")); err != nil {
t.Logf("handleConnectionMikrotik: send command prompt error: %v", err)
return
}
// consume command
n, readErr := c.Read(buf)
if readErr != nil {
if readErr == io.EOF {
t.Logf("handleConnectionMikrotik: peer EOF")
return // peer closed connection
}
t.Logf("handleConnectionMikrotik: read command error: %v", readErr)
return
}
str := strings.TrimSpace(string(buf[:n]))
t.Logf("handleConnectionMikrotik: command: [%s]", str)
if strings.HasPrefix(str, "/") {
str = str[1:]
}
switch {
case strings.HasPrefix(str, "quit"):
break LOOP
case strings.HasPrefix(str, "export"):
if options.breakConn {
t.Logf("handleConnectionMikrotik: export command: will BREAK conn")
return // break connection (defer/close)
}
config := `# jan/08/2015 22:37:22 by RouterOS 6.37.3
# software id = PSRQ-KACL
#
/ip address
add address=192.168.56.100/24 interface=ether1 network=192.168.56.0
`
if _, err := c.Write([]byte("\r\n" + config)); err != nil {
t.Logf("handleConnectionMikrotik: send config error: %v", err)
return
}
case strings.HasPrefix(str, "system resource print"):
system :=
` uptime: 10h9m21s
version: 6.37.3 (stable)
build-time: Jan/28/2014 11:11:46
free-memory: 231.7MiB
total-memory: 249.8MiB
cpu: Intel(R)
cpu-count: 1
cpu-frequency: 0MHz
cpu-load: 100%
free-hdd-space: 3950.3MiB
total-hdd-space: 4032.5MiB
write-sect-since-reboot: 5896
write-sect-total: 5896
architecture-name: x86
board-name: x86
platform: MikroTik
`
if _, err := c.Write([]byte("\r\n" + system)); err != nil {
t.Logf("handleConnectionMikrotik: send system error: %v", err)
return
}
default:
if _, err := c.Write([]byte("\r\nbad command name")); err != nil {
t.Logf("handleConnectionMikrotik: send unknown command error: %v", err)
return
}
}
}
// send bye
if _, err := c.Write([]byte("\r\ninterrupted\r\n")); err != nil {
t.Logf("handleConnectionMikrotik: send bye error: %v", err)
return
}
}