Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
| 21 | package main |
| 22 | |
| 23 | import ( |
| 24 | "bytes" |
| 25 | "encoding/json" |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 26 | "net/http" |
| 27 | "net/http/httptest" |
| 28 | "testing" |
| 29 | |
Juha Hyttinen | 281d060 | 2021-12-23 10:14:40 +0200 | [diff] [blame] | 30 | "gerrit.o-ran-sc.org/r/ric-plt/alarm-go.git/alarm" |
Mohamed Abukar | a5c8299 | 2021-06-06 13:45:30 +0000 | [diff] [blame] | 31 | "github.com/stretchr/testify/assert" |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 32 | ) |
| 33 | |
| 34 | // Test cases |
| 35 | func TestGetActiveAlarmsRESTInterface(t *testing.T) { |
| 36 | req, err := http.NewRequest("GET", "/ric/v1/alarms", nil) |
| 37 | if err != nil { |
| 38 | t.Fatal(err) |
| 39 | } |
| 40 | |
| 41 | rr := httptest.NewRecorder() |
Abukar Mohamed | 121e8b6 | 2020-09-18 11:41:33 +0000 | [diff] [blame] | 42 | handler := http.HandlerFunc(alarmManager.GetActiveAlarms) |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 43 | handler.ServeHTTP(rr, req) |
| 44 | |
| 45 | assert.Equal(t, true, rr != nil) |
| 46 | assert.Equal(t, rr.Code, http.StatusOK) |
| 47 | } |
| 48 | |
| 49 | func TestRaiseAlarmRESTInterface(t *testing.T) { |
manoj1 | cb3ca38 | 2021-09-14 05:57:26 -0400 | [diff] [blame] | 50 | a := alarmer.NewAlarm(alarm.E2_CONNECTION_PROBLEM, alarm.SeverityMajor, "Some App data", "eth 0 1") |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 51 | b, err := json.Marshal(&a) |
| 52 | if err != nil { |
| 53 | t.Errorf("Unexpected error %v", err) |
| 54 | } |
| 55 | |
| 56 | req, err := http.NewRequest("POST", "/ric/v1/alarms", bytes.NewBuffer(b)) |
| 57 | if err != nil { |
| 58 | t.Fatal(err) |
| 59 | } |
| 60 | |
| 61 | rr := httptest.NewRecorder() |
Abukar Mohamed | 121e8b6 | 2020-09-18 11:41:33 +0000 | [diff] [blame] | 62 | handler := http.HandlerFunc(alarmManager.RaiseAlarm) |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 63 | handler.ServeHTTP(rr, req) |
| 64 | |
| 65 | assert.True(t, rr != nil) |
| 66 | assert.Equal(t, rr.Code, http.StatusOK) |
| 67 | } |
| 68 | |
| 69 | func TestClearAlarmRESTInterface(t *testing.T) { |
manoj1 | cb3ca38 | 2021-09-14 05:57:26 -0400 | [diff] [blame] | 70 | a := alarmer.NewAlarm(alarm.E2_CONNECTION_PROBLEM, alarm.SeverityMajor, "Some App data", "eth 0 1") |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 71 | b, err := json.Marshal(&a) |
| 72 | if err != nil { |
| 73 | t.Errorf("Unexpected error %v", err) |
| 74 | } |
| 75 | |
| 76 | req, err := http.NewRequest("POST", "/ric/v1/alarms", bytes.NewBuffer(b)) |
| 77 | if err != nil { |
| 78 | t.Fatal(err) |
| 79 | } |
| 80 | |
| 81 | rr := httptest.NewRecorder() |
Abukar Mohamed | 121e8b6 | 2020-09-18 11:41:33 +0000 | [diff] [blame] | 82 | handler := http.HandlerFunc(alarmManager.ClearAlarm) |
Mohamed Abukar | af0c570 | 2020-03-11 10:29:40 +0200 | [diff] [blame] | 83 | handler.ServeHTTP(rr, req) |
| 84 | |
| 85 | assert.Equal(t, true, rr != nil) |
| 86 | assert.Equal(t, rr.Code, http.StatusOK) |
| 87 | } |
Mohamed Abukar | a5c8299 | 2021-06-06 13:45:30 +0000 | [diff] [blame] | 88 | |
| 89 | func TestSymptomDataHandler(t *testing.T) { |
| 90 | req, err := http.NewRequest("POST", "/ric/v1/symptomdata", nil) |
| 91 | if err != nil { |
| 92 | t.Fatal(err) |
| 93 | } |
| 94 | |
| 95 | rr := httptest.NewRecorder() |
| 96 | handler := http.HandlerFunc(alarmManager.SymptomDataHandler) |
| 97 | handler.ServeHTTP(rr, req) |
| 98 | |
| 99 | assert.Equal(t, true, rr != nil) |
| 100 | assert.Equal(t, rr.Code, http.StatusOK) |
| 101 | } |