-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
230 lines (201 loc) · 5.75 KB
/
main_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
package main
import (
"bytes"
"context"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"os"
"strings"
"testing"
"time"
"github.com/imuni4fun/fadingMetricsCache"
"github.com/stretchr/testify/assert"
"goyave.dev/goyave/v5/config"
"goyave.dev/goyave/v5/util/errors"
)
// description of test
func TestConfigure(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
runServer(ctx)
}()
time.Sleep(1 * time.Second)
cfg, err := config.Load()
if err != nil {
fmt.Fprintln(os.Stderr, err.(*errors.Error).String())
os.Exit(1)
}
logInfof("extracted listener port %v for test harness\n", cfg.GetInt("server.port"))
cache := fadingMetricsCache.FadingMetricsCache{}
cache.Configure(ctx, time.Second*5, 2, 1000000)
fmt.Println("created cache and did not crash!")
}
// description of test
func TestPost(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
runServer(ctx)
}()
time.Sleep(1 * time.Second)
httpPostEvent(map[string]string{
"type": "testResult",
"result": "pass",
})
fmt.Println("did not crash!")
}
// description of test
func TestSetValue(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
runServer(ctx)
}()
time.Sleep(1 * time.Second)
httpGetMetrics() // register scraper
httpPostEvent(map[string]string{
"type": "testResult",
"result": "pass",
"value": "42.5",
})
result := httpGetMetrics()
foundLabel := false
foundValue := false
for _, str := range result {
if strings.Contains(str, `value="42.5"`) {
logInfof("found label: %s", str)
foundLabel = true
continue
}
if strings.Contains(str, `} 42.5`) {
logInfof("found value: %s", str)
foundValue = true
break
}
}
assert.False(t, foundLabel, "should not find data as label")
assert.True(t, foundValue, "should find data as value")
}
// description of test
func TestScrape(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
runServer(ctx)
}()
time.Sleep(1 * time.Second)
httpGetMetrics() // register scraper
httpPostEvent(map[string]string{
"type": "testResult",
"result": "pass",
})
httpPostEvent(map[string]string{
"type": "testResult",
"result": "fail",
})
result := httpGetMetrics()
found := false
for _, str := range result {
if strings.Contains(str, `type="testResult"`) && strings.Contains(str, `result="pass"`) {
logInfof("found metric: %s", str)
found = true
break
}
}
assert.True(t, found, "did not find expected metric")
found = false
for _, str := range result {
if strings.Contains(str, `type="testResult"`) && strings.Contains(str, `result="fail"`) {
logInfof("found metric: %s", str)
found = true
break
}
}
assert.True(t, found, "did not find expected metric")
}
func TestParseScraper(t *testing.T) {
testStrings := map[string]string{
"203.0.113.0": "203.0.113.0",
"10.133.107.114:35282": "10.133.107.114",
"2001:db8:3333:4444:5555:6666:7777:8888": "2001:db8:3333:4444:5555:6666:7777:8888",
"[2001:db8:3333:4444:5555:6666:7777:8888]:8080": "2001:db8:3333:4444:5555:6666:7777:8888",
"[2001:db8:0::1]:80": "2001:db8:0::1",
"2001:db8:0::1": "2001:db8:0::1",
}
failStrings := []string{}
for k, v := range testStrings {
parsed := getScraperFromIP(k)
assert.NotEqual(t, "<nil>", parsed, "Parse should not fail for %s", k)
assert.NotEqual(t, "", parsed, "Parse should not fail for %s", k)
assert.Equal(t, v, parsed, "Parse for %s should return %s, not %s", k, v, parsed)
logInfof("address %s --> %s", k, parsed)
}
for _, str := range failStrings {
assert.Panicsf(t, func() {
_ = getScraperFromIP(str)
}, "Unsupported address %s should panic", str)
logInfof("address %s --> should panic", str)
}
}
func httpPostEvent(content map[string]string) {
cfg, err := config.Load()
if err != nil {
fmt.Fprintln(os.Stderr, err.(*errors.Error).String())
os.Exit(1)
}
port := cfg.GetInt("server.port")
params := []string{}
for k, v := range content {
params = append(params, fmt.Sprintf("%s=%s", k, url.QueryEscape(v)))
}
postUrl := fmt.Sprintf("http://localhost:%d/event?%s", port, strings.Join(params, "&"))
logDebugf("posting to %s\n", postUrl)
req, err := http.NewRequest(http.MethodPost, postUrl, bytes.NewReader([]byte{}))
if err != nil {
logWarnf("client: could not create request: %s\n", err)
os.Exit(2)
}
res, err := http.DefaultClient.Do(req)
if err != nil {
logWarnf("client: error making http request: %s\n", err)
os.Exit(3)
}
logDebugf("client: got response!\n")
logDebugf("client: status code: %d\n", res.StatusCode)
}
func httpGetMetrics() []string {
cfg, err := config.Load()
if err != nil {
fmt.Fprintln(os.Stderr, err.(*errors.Error).String())
os.Exit(1)
}
port := cfg.GetInt("server.port")
getUrl := fmt.Sprintf("http://localhost:%d/metrics", port)
logDebugf("posting to %s\n", getUrl)
req, err := http.NewRequest(http.MethodGet, getUrl, bytes.NewReader([]byte{}))
if err != nil {
logWarnf("client: could not create request: %s\n", err)
os.Exit(2)
}
res, err := http.DefaultClient.Do(req)
if err != nil {
logWarnf("client: error making http request: %s\n", err)
os.Exit(3)
}
logDebugf("client: got response!\n")
logDebugf("client: status code: %d\n", res.StatusCode)
if res.StatusCode != http.StatusOK {
logWarnf("client: did not receive StatusOK response code: %d\n", res.StatusCode)
os.Exit(4)
}
resBody, err := ioutil.ReadAll(res.Body)
if err != nil {
logWarnf("client: could not read response body: %s\n", err)
os.Exit(5)
}
logDebugf("client: response body:\n%s\n", resBody)
return strings.Split(string(resBody), "\n")
}