-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtesting.go
191 lines (171 loc) · 5.47 KB
/
testing.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
package gsnmpgo
// gsnmpgo is a go/cgo wrapper around gsnmp.
//
// Copyright (C) 2012-2013 Sonia Hamilton [email protected].
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
import (
"fmt"
"github.com/petar/GoLLRB/llrb"
"io/ioutil"
"regexp"
"strconv"
"strings"
"testing"
)
var _ = fmt.Sprintf("dummy") // dummy
var _ = strings.Split("dummy", "m") // dummy
var _ = strconv.Itoa(0) // dummy
func ReadVeraxResults(filename string) (results *llrb.Tree, err error) {
var lines []byte
if lines, err = ioutil.ReadFile(filename); err != nil {
return nil, fmt.Errorf("unable to open file %s", filename)
}
results = llrb.New(LessOID)
// some lines have newlines in them, therefore can't just split on newline
lines_split := re_split(regexp.MustCompile(`\n\.`), string(lines), -1)
LINE:
for _, line := range lines_split {
splits_a := strings.SplitN(line, " = ", 2)
oid := splits_a[0]
splits_b := strings.SplitN(splits_a[1], ": ", 2)
oidtype := splits_b[0]
oidval := strings.TrimSpace(splits_b[1])
// removing leading . first oid
if string(oid[0]) == "." {
oid = oid[1:]
}
var value Varbinder
switch oidtype {
case "STRING", "String", "Hex-STRING":
oidval = strings.Trim(oidval, `"`)
value = VBT_OctetString(oidval)
case "OID":
value = VBT_ObjectID(oidval)
case "IpAddress", "Network Address":
value = VBT_IPAddress(oidval)
case "INTEGER":
if n, err := strconv.Atoi(oidval); err == nil {
value = VBT_Integer32(n)
} else {
panic(fmt.Sprintf("Err converting integer. oid: %s err: %v\n", oid, err))
}
case "Gauge32":
if n, err := strconv.Atoi(oidval); err == nil {
value = VBT_Unsigned32(n)
}
case "Counter32":
if n, err := strconv.ParseUint(oidval, 10, 32); err == nil {
value = VBT_Counter32(n)
} else {
panic(fmt.Sprintf("Counter32: oid: %s oidval: %s err: %v\n", oid, oidval, err))
}
case "Timeticks":
matches := regexp.MustCompile(`\d+`).FindAllString(oidval, 1) // pull out "(value)"
oidval := matches[0]
if n, err := strconv.Atoi(oidval); err == nil {
value = VBT_Timeticks(n)
}
case "Counter64":
if n, err := strconv.ParseUint(oidval, 10, 64); err == nil {
value = VBT_Counter64(n)
}
case "BITS":
continue LINE
// TODO is BITS Verax specific, or doesn't gsnmp handle?
// .1.3.6.1.2.1.88.1.4.2.1.3.6.95.115.110.109.112.100.95.109.116.101.
// 84.114.105.103.103.101.114.70.105.114.101.100
// = BITS: 38 30 20 30 2 3 4 10 11 18 26 27
default:
panic(fmt.Sprintf("Unhandled type: %s, %s\n", oidtype, oidval))
}
result := QueryResult{Oid: oid, Value: value}
results.ReplaceOrInsert(result)
}
return results, nil
}
func CompareVerax(t *testing.T, gresults, vresults *llrb.Tree) {
ch := gresults.IterAscend()
for {
gr := <-ch
if gr == nil {
break
}
goresult := gr.(QueryResult)
vstruct := QueryResult{Oid: goresult.Oid}
vr := vresults.Get(vstruct)
if vr == nil {
continue
}
vresult := vr.(QueryResult)
vstring := vresult.Value.String()
gostring := goresult.Value.String()
fmt.Printf("verax : %s\ngsnmpgo: %s\n\n", vstring, gostring)
if gostring != vstring {
// fmt.Printf("OK oid: %s type: %T value: %s\n", goresult.Oid, goresult.Value, gostring)
if len(gostring) > 4 && gostring[0:5] == "07 DA" {
// skip - weird Verax stuff
} else if len(vstring) > 4 && vstring[0:5] == "4E:85" {
// skip - weird Verax stuff
} else if len(vstring) > 17 && vstring[0:18] == "Cisco IOS Software" {
// skip - \n's have been stripped - ignore
} else {
t.Errorf("compare fail: oid: %s type: %T\ngostring: |%s|\nvstring : |%s|",
goresult.Oid, goresult.Value, gostring, vstring)
}
}
}
}
// adapted from http://codereview.appspot.com/6846048/
//
// re_split slices s into substrings separated by the expression and returns a slice of
// the substrings between those expression matches.
//
// The slice returned by this method consists of all the substrings of s
// not contained in the slice returned by FindAllString(). When called on an exp ression
// that contains no metacharacters, it is equivalent to strings.SplitN().
// Example:
// s := regexp.MustCompile("a*").re_split("abaabaccadaaae", 5)
// // s: ["", "b", "b", "c", "cadaaae"]
//
// The count determines the number of substrings to return:
// n > 0: at most n substrings; the last substring will be the unsplit remaind er.
// n == 0: the result is nil (zero substrings)
// n < 0: all substrings
func re_split(re *regexp.Regexp, s string, n int) []string {
if n == 0 {
return nil
}
if len(s) == 0 {
return []string{""}
}
matches := re.FindAllStringIndex(s, n)
strings := make([]string, 0, len(matches))
beg := 0
end := 0
for _, match := range matches {
if n > 0 && len(strings) >= n-1 {
break
}
end = match[0]
if match[1] != 0 {
strings = append(strings, s[beg:end])
}
beg = match[1]
}
if end != len(s) {
strings = append(strings, s[beg:])
}
return strings
}