blob: 34b3902ef56da91d4dc4bf55a3c83df300af1327 [file] [log] [blame]
Mohamed Abukar4e7e7122020-03-04 10:01:45 +02001/*
2 * Copyright (c) 2020 AT&T Intellectual Property.
3 * Copyright (c) 2020 Nokia.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 * platform project (RICP).
19 */
20
21package main
22
23import (
vipin4cedd502020-09-25 05:58:31 +000024 "bytes"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020025 "encoding/json"
26 "fmt"
vipin4cedd502020-09-25 05:58:31 +000027 "gerrit.o-ran-sc.org/r/ric-plt/alarm-go/alarm"
28 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
29 "github.com/gorilla/mux"
30 "github.com/prometheus/alertmanager/api/v2/models"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020031 "github.com/stretchr/testify/assert"
32 "io"
33 "io/ioutil"
34 "net"
35 "net/http"
36 "net/http/httptest"
37 "os"
vipin4cedd502020-09-25 05:58:31 +000038 "strconv"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020039 "strings"
40 "testing"
41 "time"
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020042)
43
Abukar Mohamed121e8b62020-09-18 11:41:33 +000044var alarmManager *AlarmManager
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020045var alarmer *alarm.RICAlarm
46var eventChan chan string
47
48// Test cases
49func TestMain(M *testing.M) {
Abukar Mohamed121e8b62020-09-18 11:41:33 +000050 alarmManager = NewAlarmManager("localhost:9093", 500)
vipin6f73fa32020-10-06 06:51:53 +000051 alarmManager.alertInterval = 20000
Abukar Mohamed121e8b62020-09-18 11:41:33 +000052 go alarmManager.Run(false)
vipin14323a92020-09-25 10:03:43 +000053 time.Sleep(time.Duration(10) * time.Second)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020054
55 // Wait until RMR is up-and-running
56 for !xapp.Rmr.IsReady() {
57 time.Sleep(time.Duration(1) * time.Second)
58 }
59
60 alarmer, _ = alarm.InitAlarm("my-pod", "my-app")
vipin541eb502020-09-22 12:04:59 +000061 alarmManager.alarmClient = alarmer
Mohamed Abukareac44512020-03-31 09:46:04 +030062 time.Sleep(time.Duration(5) * time.Second)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +020063 eventChan = make(chan string)
64
65 os.Exit(M.Run())
66}
67
vipin14323a92020-09-25 10:03:43 +000068func TestGetPreDefinedAlarmDefinitions(t *testing.T) {
69 xapp.Logger.Info("TestGetPreDefinedAlarmDefinitions")
70 var alarmDefinition alarm.AlarmDefinition
71 req, _ := http.NewRequest("GET", "/ric/v1/alarms/define", nil)
72 vars := map[string]string{"alarmId": strconv.FormatUint(8004, 10)}
73 req = mux.SetURLVars(req, vars)
74 handleFunc := http.HandlerFunc(alarmManager.GetAlarmDefinition)
75 response := executeRequest(req, handleFunc)
76 checkResponseCode(t, http.StatusOK, response.Code)
77 json.NewDecoder(response.Body).Decode(&alarmDefinition)
78 xapp.Logger.Info("alarm definition = %v", alarmDefinition)
79 if alarmDefinition.AlarmId != alarm.RIC_RT_DISTRIBUTION_FAILED || alarmDefinition.AlarmText != "RIC ROUTING TABLE DISTRIBUTION FAILED" {
80 t.Errorf("Incorrect alarm definition")
81 }
82}
83
vipin54a3a4f2020-09-23 12:19:58 +000084func TestSetAlarmDefinitions(t *testing.T) {
85 xapp.Logger.Info("TestSetAlarmDefinitions")
86 var alarm8004Definition alarm.AlarmDefinition
87 alarm8004Definition.AlarmId = alarm.RIC_RT_DISTRIBUTION_FAILED
88 alarm8004Definition.AlarmText = "RIC ROUTING TABLE DISTRIBUTION FAILED"
89 alarm8004Definition.EventType = "Processing error"
90 alarm8004Definition.OperationInstructions = "Not defined"
91
92 var alarm8005Definition alarm.AlarmDefinition
93 alarm8005Definition.AlarmId = alarm.TCP_CONNECTIVITY_LOST_TO_DBAAS
94 alarm8005Definition.AlarmText = "TCP CONNECTIVITY LOST TO DBAAS"
95 alarm8005Definition.EventType = "Communication error"
96 alarm8005Definition.OperationInstructions = "Not defined"
97
98 var alarm8006Definition alarm.AlarmDefinition
99 alarm8006Definition.AlarmId = alarm.E2_CONNECTIVITY_LOST_TO_GNODEB
100 alarm8006Definition.AlarmText = "E2 CONNECTIVITY LOST TO G-NODEB"
101 alarm8006Definition.EventType = "Communication error"
102 alarm8006Definition.OperationInstructions = "Not defined"
103
104 var alarm8007Definition alarm.AlarmDefinition
105 alarm8007Definition.AlarmId = alarm.E2_CONNECTIVITY_LOST_TO_ENODEB
106 alarm8007Definition.AlarmText = "E2 CONNECTIVITY LOST TO E-NODEB"
107 alarm8007Definition.EventType = "Communication error"
108 alarm8007Definition.OperationInstructions = "Not defined"
109
110 var alarm8008Definition alarm.AlarmDefinition
111 alarm8008Definition.AlarmId = alarm.ACTIVE_ALARM_EXCEED_MAX_THRESHOLD
112 alarm8008Definition.AlarmText = "ACTIVE ALARM EXCEED MAX THRESHOLD"
113 alarm8008Definition.EventType = "storage warning"
vipin14323a92020-09-25 10:03:43 +0000114 alarm8008Definition.OperationInstructions = "Clear alarms or raise threshold"
vipin54a3a4f2020-09-23 12:19:58 +0000115
116 var alarm8009Definition alarm.AlarmDefinition
117 alarm8009Definition.AlarmId = alarm.ALARM_HISTORY_EXCEED_MAX_THRESHOLD
118 alarm8009Definition.AlarmText = "ALARM HISTORY EXCEED MAX THRESHOLD"
119 alarm8009Definition.EventType = "storage warning"
vipin14323a92020-09-25 10:03:43 +0000120 alarm8009Definition.OperationInstructions = "Clear alarms or raise threshold"
vipin54a3a4f2020-09-23 12:19:58 +0000121
122 pbodyParams := RicAlarmDefinitions{AlarmDefinitions: []*alarm.AlarmDefinition{&alarm8004Definition, &alarm8005Definition, &alarm8006Definition, &alarm8007Definition, &alarm8008Definition, &alarm8009Definition}}
123 pbodyEn, _ := json.Marshal(pbodyParams)
124 req, _ := http.NewRequest("POST", "/ric/v1/alarms/define", bytes.NewBuffer(pbodyEn))
125 handleFunc := http.HandlerFunc(alarmManager.SetAlarmDefinition)
126 response := executeRequest(req, handleFunc)
127 status := checkResponseCode(t, http.StatusOK, response.Code)
128 xapp.Logger.Info("status = %v", status)
129
130}
131
132func TestGetAlarmDefinitions(t *testing.T) {
133 xapp.Logger.Info("TestGetAlarmDefinitions")
134 var alarmDefinition alarm.AlarmDefinition
135 req, _ := http.NewRequest("GET", "/ric/v1/alarms/define", nil)
136 vars := map[string]string{"alarmId": strconv.FormatUint(8004, 10)}
137 req = mux.SetURLVars(req, vars)
138 handleFunc := http.HandlerFunc(alarmManager.GetAlarmDefinition)
139 response := executeRequest(req, handleFunc)
140 checkResponseCode(t, http.StatusOK, response.Code)
141 json.NewDecoder(response.Body).Decode(&alarmDefinition)
142 xapp.Logger.Info("alarm definition = %v", alarmDefinition)
143 if alarmDefinition.AlarmId != alarm.RIC_RT_DISTRIBUTION_FAILED || alarmDefinition.AlarmText != "RIC ROUTING TABLE DISTRIBUTION FAILED" {
144 t.Errorf("Incorrect alarm definition")
145 }
146}
147
148func TestDeleteAlarmDefinitions(t *testing.T) {
149 xapp.Logger.Info("TestDeleteAlarmDefinitions")
150 //Get all
151 var ricAlarmDefinitions RicAlarmDefinitions
152 req, _ := http.NewRequest("GET", "/ric/v1/alarms/define", nil)
153 req = mux.SetURLVars(req, nil)
154 handleFunc := http.HandlerFunc(alarmManager.GetAlarmDefinition)
155 response := executeRequest(req, handleFunc)
156 checkResponseCode(t, http.StatusOK, response.Code)
157 json.NewDecoder(response.Body).Decode(&ricAlarmDefinitions)
158 for _, alarmDefinition := range ricAlarmDefinitions.AlarmDefinitions {
159 xapp.Logger.Info("alarm definition = %v", *alarmDefinition)
160 }
161
162 //Delete 8004
163 req, _ = http.NewRequest("DELETE", "/ric/v1/alarms/define", nil)
vipin4cedd502020-09-25 05:58:31 +0000164 vars := map[string]string{"alarmId": strconv.FormatUint(8004, 10)}
165 req = mux.SetURLVars(req, vars)
166 handleFunc = http.HandlerFunc(alarmManager.DeleteAlarmDefinition)
167 response = executeRequest(req, handleFunc)
168 checkResponseCode(t, http.StatusOK, response.Code)
vipin54a3a4f2020-09-23 12:19:58 +0000169
170 //Get 8004 fail
171 req, _ = http.NewRequest("GET", "/ric/v1/alarms/define", nil)
172 vars = map[string]string{"alarmId": strconv.FormatUint(8004, 10)}
173 req = mux.SetURLVars(req, vars)
174 handleFunc = http.HandlerFunc(alarmManager.GetAlarmDefinition)
175 response = executeRequest(req, handleFunc)
176 checkResponseCode(t, http.StatusBadRequest, response.Code)
177
178 //Set 8004 success
179 var alarm8004Definition alarm.AlarmDefinition
180 alarm8004Definition.AlarmId = alarm.RIC_RT_DISTRIBUTION_FAILED
181 alarm8004Definition.AlarmText = "RIC ROUTING TABLE DISTRIBUTION FAILED"
182 alarm8004Definition.EventType = "Processing error"
183 alarm8004Definition.OperationInstructions = "Not defined"
184 pbodyParams := RicAlarmDefinitions{AlarmDefinitions: []*alarm.AlarmDefinition{&alarm8004Definition}}
185 pbodyEn, _ := json.Marshal(pbodyParams)
186 req, _ = http.NewRequest("POST", "/ric/v1/alarms/define", bytes.NewBuffer(pbodyEn))
187 handleFunc = http.HandlerFunc(alarmManager.SetAlarmDefinition)
188 response = executeRequest(req, handleFunc)
189 checkResponseCode(t, http.StatusOK, response.Code)
190
191 //Get 8004 success
192 req, _ = http.NewRequest("GET", "/ric/v1/alarms/define", nil)
193 vars = map[string]string{"alarmId": strconv.FormatUint(8004, 10)}
194 req = mux.SetURLVars(req, vars)
195 handleFunc = http.HandlerFunc(alarmManager.GetAlarmDefinition)
196 response = executeRequest(req, handleFunc)
197 checkResponseCode(t, http.StatusOK, response.Code)
198}
199
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200200func TestNewAlarmStoredAndPostedSucess(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000201 xapp.Logger.Info("TestNewAlarmStoredAndPostedSucess")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200202 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
203 defer ts.Close()
204
Mohamed Abukar540ceee2020-09-09 08:07:40 +0300205 a := alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityCritical, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200206 assert.Nil(t, alarmer.Raise(a), "raise failed")
207
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200208 VerifyAlarm(t, a, 1)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200209}
210
211func TestAlarmClearedSucess(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000212 xapp.Logger.Info("TestAlarmClearedSucess")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200213 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
214 defer ts.Close()
215
216 // Raise the alarm
Mohamed Abukar540ceee2020-09-09 08:07:40 +0300217 a := alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityCritical, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200218 assert.Nil(t, alarmer.Raise(a), "raise failed")
219
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200220 VerifyAlarm(t, a, 1)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200221
222 // Now Clear the alarm and check alarm is removed
Mohamed Abukar540ceee2020-09-09 08:07:40 +0300223 a = alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityCritical, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200224 assert.Nil(t, alarmer.Clear(a), "clear failed")
225
226 time.Sleep(time.Duration(2) * time.Second)
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000227 assert.Equal(t, len(alarmManager.activeAlarms), 0)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200228}
229
230func TestMultipleAlarmsRaisedSucess(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000231 xapp.Logger.Info("TestMultipleAlarmsRaisedSucess")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200232 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
233 defer ts.Close()
234
235 // Raise two alarms
Mohamed Abukaraf0c5702020-03-11 10:29:40 +0200236 a := alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityMajor, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200237 assert.Nil(t, alarmer.Raise(a), "raise failed")
238
Mohamed Abukaraf0c5702020-03-11 10:29:40 +0200239 b := alarmer.NewAlarm(alarm.TCP_CONNECTIVITY_LOST_TO_DBAAS, alarm.SeverityMinor, "Hello", "abcd 11")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200240 assert.Nil(t, alarmer.Raise(b), "raise failed")
241
vipin6f73fa32020-10-06 06:51:53 +0000242 time.Sleep(time.Duration(2) * time.Second)
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200243 VerifyAlarm(t, a, 2)
244 VerifyAlarm(t, b, 2)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200245}
246
247func TestMultipleAlarmsClearedSucess(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000248 xapp.Logger.Info("TestMultipleAlarmsClearedSucess")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200249 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
250 defer ts.Close()
251
252 // Raise two alarms
Mohamed Abukaraf0c5702020-03-11 10:29:40 +0200253 a := alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityMajor, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200254 assert.Nil(t, alarmer.Clear(a), "clear failed")
255
Mohamed Abukaraf0c5702020-03-11 10:29:40 +0200256 b := alarmer.NewAlarm(alarm.TCP_CONNECTIVITY_LOST_TO_DBAAS, alarm.SeverityMinor, "Hello", "abcd 11")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200257 assert.Nil(t, alarmer.Clear(b), "clear failed")
258
259 time.Sleep(time.Duration(2) * time.Second)
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000260 assert.Equal(t, len(alarmManager.activeAlarms), 0)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200261}
262
263func TestAlarmsSuppresedSucess(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000264 xapp.Logger.Info("TestAlarmsSuppresedSucess")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200265 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
266 defer ts.Close()
267
268 // Raise two similar/matching alarms ... the second one suppresed
Mohamed Abukaraf0c5702020-03-11 10:29:40 +0200269 a := alarmer.NewAlarm(alarm.RIC_RT_DISTRIBUTION_FAILED, alarm.SeverityMajor, "Some App data", "eth 0 1")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200270 assert.Nil(t, alarmer.Raise(a), "raise failed")
271 assert.Nil(t, alarmer.Raise(a), "raise failed")
272
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200273 VerifyAlarm(t, a, 1)
vipin541eb502020-09-22 12:04:59 +0000274 assert.Nil(t, alarmer.Clear(a), "clear failed")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200275}
276
277func TestInvalidAlarms(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000278 xapp.Logger.Info("TestInvalidAlarms")
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200279 a := alarmer.NewAlarm(1111, alarm.SeverityMajor, "Some App data", "eth 0 1")
280 assert.Nil(t, alarmer.Raise(a), "raise failed")
281 time.Sleep(time.Duration(2) * time.Second)
282}
283
284func TestAlarmHandlingErrorCases(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000285 xapp.Logger.Info("TestAlarmHandlingErrorCases")
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000286 ok, err := alarmManager.HandleAlarms(&xapp.RMRParams{})
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200287 assert.Equal(t, err.Error(), "unexpected end of JSON input")
288 assert.Nil(t, ok, "raise failed")
289}
290
291func TestConsumeUnknownMessage(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000292 xapp.Logger.Info("TestConsumeUnknownMessage")
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000293 err := alarmManager.Consume(&xapp.RMRParams{})
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200294 assert.Nil(t, err, "raise failed")
295}
296
297func TestStatusCallback(t *testing.T) {
vipin54a3a4f2020-09-23 12:19:58 +0000298 xapp.Logger.Info("TestStatusCallback")
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000299 assert.Equal(t, true, alarmManager.StatusCB())
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200300}
301
vipin541eb502020-09-22 12:04:59 +0000302func TestActiveAlarmMaxThresholds(t *testing.T) {
303 xapp.Logger.Info("TestActiveAlarmMaxThresholds")
304 ts := CreatePromAlertSimulator(t, "POST", "/api/v2/alerts", http.StatusOK, models.LabelSet{})
305 alarmManager.maxActiveAlarms = 0
306 alarmManager.maxAlarmHistory = 10
307
308 a := alarmer.NewAlarm(alarm.E2_CONNECTIVITY_LOST_TO_GNODEB, alarm.SeverityCritical, "Some Application data", "eth 0 2")
309 assert.Nil(t, alarmer.Raise(a), "raise failed")
310
311 var alarmConfigParams alarm.AlarmConfigParams
312 req, _ := http.NewRequest("GET", "/ric/v1/alarms/config", nil)
313 req = mux.SetURLVars(req, nil)
314 handleFunc := http.HandlerFunc(alarmManager.GetAlarmConfig)
315 response := executeRequest(req, handleFunc)
316
317 // Check HTTP Status Code
318 checkResponseCode(t, http.StatusOK, response.Code)
319
320 // Decode the json output from handler
321 json.NewDecoder(response.Body).Decode(&alarmConfigParams)
322 if alarmConfigParams.MaxActiveAlarms != 0 || alarmConfigParams.MaxAlarmHistory != 10 {
323 t.Errorf("Incorrect alarm thresholds")
324 }
325
326 time.Sleep(time.Duration(1) * time.Second)
327 alarmManager.maxActiveAlarms = 5000
328 alarmManager.maxAlarmHistory = 20000
329 VerifyAlarm(t, a, 2)
330 VerifyAlarm(t, a, 2)
331 ts.Close()
332}
333
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200334func VerifyAlarm(t *testing.T, a alarm.Alarm, expectedCount int) string {
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200335 receivedAlert := waitForEvent()
336
vipin6f73fa32020-10-06 06:51:53 +0000337 assert.Equal(t, expectedCount, len(alarmManager.activeAlarms))
Abukar Mohamed121e8b62020-09-18 11:41:33 +0000338 _, ok := alarmManager.IsMatchFound(a)
Mohamed Abukarebe58c22020-03-13 14:40:47 +0200339 assert.True(t, ok)
Mohamed Abukar4e7e7122020-03-04 10:01:45 +0200340
341 return receivedAlert
342}
343
344func VerifyAlert(t *testing.T, receivedAlert, expectedAlert string) {
345 receivedAlert = strings.Replace(fmt.Sprintf("%v", receivedAlert), "\r\n", " ", -1)
346 //assert.Equal(t, receivedAlert, e)
347}
348
349func CreatePromAlertSimulator(t *testing.T, method, url string, status int, respData interface{}) *httptest.Server {
350 l, err := net.Listen("tcp", "localhost:9093")
351 if err != nil {
352 t.Error("Failed to create listener: " + err.Error())
353 }
354 ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
355 assert.Equal(t, r.Method, method)
356 assert.Equal(t, r.URL.String(), url)
357
358 fireEvent(t, r.Body)
359
360 w.Header().Add("Content-Type", "application/json")
361 w.WriteHeader(status)
362 b, _ := json.Marshal(respData)
363 w.Write(b)
364 }))
365 ts.Listener.Close()
366 ts.Listener = l
367
368 ts.Start()
369
370 return ts
371}
372
373func waitForEvent() string {
374 receivedAlert := <-eventChan
375 return receivedAlert
376}
377
378func fireEvent(t *testing.T, body io.ReadCloser) {
379 reqBody, err := ioutil.ReadAll(body)
380 assert.Nil(t, err, "ioutil.ReadAll failed")
381 assert.NotNil(t, reqBody, "ioutil.ReadAll failed")
382
383 eventChan <- fmt.Sprintf("%s", reqBody)
384}
vipin541eb502020-09-22 12:04:59 +0000385
386func executeRequest(req *http.Request, handleR http.HandlerFunc) *httptest.ResponseRecorder {
387 rr := httptest.NewRecorder()
388
389 handleR.ServeHTTP(rr, req)
390
391 return rr
392}
393
394func checkResponseCode(t *testing.T, expected, actual int) bool {
395 if expected != actual {
396 t.Errorf("Expected response code %d. Got %d\n", expected, actual)
397 return false
398 }
399 return true
400}