1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/backend/api/response_test.go

80 lines
1.4 KiB
Go
Raw Normal View History

2017-05-18 12:52:10 +02:00
package api
import (
"encoding/json"
"testing"
"time"
)
func TestStatusResponseSerialization(t *testing.T) {
// Make status
response := StatusResponse{
Api: ApiStatus{
Version: "2.0.0",
CacheStatus: CacheStatus{},
ResultFromCache: false,
Ttl: time.Now(),
2017-05-18 12:52:10 +02:00
},
Status: Status{
Message: "Server is up and running",
RouterId: "testrouter",
Version: "1.6.3",
Backend: "birdwatcher",
},
}
result, err := json.Marshal(response)
if err != nil {
t.Error(err)
}
_ = result
}
func TestNeighbourSerialization(t *testing.T) {
// Original backend response
payload := `{
"action": "restart",
"bgp_state": "Established",
"bird_protocol": "BGP",
"connection": "Established"
}`
details := make(map[string]interface{})
err := json.Unmarshal([]byte(payload), &details)
if err != nil {
t.Error(err)
}
// Make neighbour
neighbour := Neighbour{
Id: "PROTOCOL_23_42_",
State: "Established",
Description: "Some peer",
Address: "10.10.10.1",
Details: details,
}
result, err := json.Marshal(neighbour)
if err != nil {
t.Error(err)
}
_ = result
}
2018-10-16 18:21:20 +02:00
func TestCommunityStringify(t *testing.T) {
com := Community{23, 42}
if com.String() != "23:42" {
t.Error("Expected 23:42, got:", com.String())
}
extCom := ExtCommunity{"ro", 42, 123}
if extCom.String() != "ro:42:123" {
t.Error("Expected ro:42:123, but got:", extCom.String())
}
}