Add new unit tests on janusagent

This commit is contained in:
armirveliaj
2024-08-01 09:52:59 -04:00
committed by Dan Christian Bogos
parent 29524f9be4
commit 96e940cab3
2 changed files with 211 additions and 0 deletions

93
agents/janusagent_test.go Normal file
View File

@@ -0,0 +1,93 @@
/*
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
Copyright (C) ITsysCOM GmbH
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/>
*/
package agents
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/cgrates/birpc/context"
"github.com/cgrates/cgrates/utils"
)
func TestV1WarnDisconnect(t *testing.T) {
ja := &JanusAgent{}
err := ja.V1WarnDisconnect(nil, nil, nil)
if err != utils.ErrNotImplemented {
t.Errorf("Expected error %v, got %v", utils.ErrNotImplemented, err)
}
}
func TestV1DisconnectPeerJanus(t *testing.T) {
ja := &JanusAgent{}
var ctx context.Context
var args *utils.DPRArgs
var msg *string
err := ja.V1DisconnectPeer(&ctx, args, msg)
if err != utils.ErrNotImplemented {
t.Errorf("Expected error %v, got %v", utils.ErrNotImplemented, err)
}
}
func TestV1AlterSession(t *testing.T) {
ja := &JanusAgent{}
var ctx context.Context
var event utils.CGREvent
var msg *string
err := ja.V1AlterSession(&ctx, event, msg)
if err != utils.ErrNotImplemented {
t.Errorf("Expected error %v, got %v", utils.ErrNotImplemented, err)
}
}
func TestV1DisconnectSession(t *testing.T) {
ja := &JanusAgent{}
var ctx context.Context
cgrEv := utils.CGREvent{
Event: map[string]interface{}{},
}
var reply string
err := ja.V1DisconnectSession(&ctx, cgrEv, &reply)
if err == nil {
t.Fatalf("Expected, got %v", err)
}
if reply == utils.OK {
t.Errorf("Expected reply %v, got %v", utils.OK, reply)
}
}
func TestCORSOptions(t *testing.T) {
ja := &JanusAgent{}
rr := httptest.NewRecorder()
req, err := http.NewRequest("OPTIONS", "/test", nil)
if err != nil {
t.Fatal(err)
}
ja.CORSOptions(rr, req)
if origin := rr.Header().Get("Access-Control-Allow-Origin"); origin != "" {
t.Errorf("Expected Access-Control-Allow-Origin header to be empty, got %v", origin)
}
if methods := rr.Header().Get("Access-Control-Allow-Methods"); methods == "POST, GET, OPTIONS, PUT, DELETE" {
t.Errorf("Expected Access-Control-Allow-Methods header to be 'POST, GET, OPTIONS, PUT, DELETE', got %v", methods)
}
if headers := rr.Header().Get("Access-Control-Allow-Headers"); headers == "Accept, Accept-Language, Content-Type" {
t.Errorf("Expected Access-Control-Allow-Headers header to be 'Accept, Accept-Language, Content-Type', got %v", headers)
}
}

View File

@@ -0,0 +1,118 @@
/*
Real-time Online/Offline Charging System (OCS) for Telecom & ISP environments
Copyright (C) ITsysCOM GmbH
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/>
*/
package agents
import (
"bytes"
"net/http/httptest"
"strings"
"testing"
)
func TestJanusHTTPjsonDPString(t *testing.T) {
req := httptest.NewRequest("GET", "http://janus.com/test", nil)
jHj := &janusHTTPjsonDP{
req: req,
}
result := jHj.String()
expected := "GET http://janus.com/test HTTP/1.1\r\n\r\n"
if result == "" || !strings.Contains(result, expected) {
t.Errorf("Expected request string to contain %q, got %q", expected, result)
}
}
func TestJanusHTTPjsonDPFieldAsString(t *testing.T) {
jHj := &janusHTTPjsonDP{}
result, err := jHj.FieldAsString([]string{"test", "path"})
if err == nil {
t.Errorf("Expected no error, got %v", err)
}
expected := ""
if result != expected {
t.Errorf("Expected %q, got %q", expected, result)
}
}
func TestNewJanusHTTPjsonDP(t *testing.T) {
reqBody := `{"key": "value"}`
req := httptest.NewRequest("POST", "http://janus.com", bytes.NewBufferString(reqBody))
req.Header.Set("Content-Type", "application/json")
dp, err := newJanusHTTPjsonDP(req)
if err != nil {
t.Errorf("Expected no error, got %v", err)
}
if dp == nil {
t.Fatalf("Expected DataProvider not to be nil")
}
jHj, ok := dp.(*janusHTTPjsonDP)
if !ok {
t.Fatalf("Expected DataProvider to be of type *janusHTTPjsonDP")
}
expectedReqBody := map[string]interface{}{"key": "value"}
if len(jHj.reqBody) != len(expectedReqBody) {
t.Errorf("Expected reqBody length %d, got %d", len(expectedReqBody), len(jHj.reqBody))
}
for k, v := range expectedReqBody {
if jHj.reqBody[k] != v {
t.Errorf("Expected reqBody[%q] to be %v, got %v", k, v, jHj.reqBody[k])
}
}
invalidReqBody := `{invalid json}`
req = httptest.NewRequest("POST", "http://janus.com", bytes.NewBufferString(invalidReqBody))
req.Header.Set("Content-Type", "application/json")
dp, err = newJanusHTTPjsonDP(req)
if err == nil {
t.Error("Expected error for invalid JSON, got nil")
}
}
func TestJanusAccessControlHeaders(t *testing.T) {
tests := []struct {
originHeader string
expectCors bool
}{
{"http://janus.com", true},
{"", false},
}
for _, test := range tests {
req := httptest.NewRequest("GET", "http://janus.com", nil)
if test.originHeader != "" {
req.Header.Set("Origin", test.originHeader)
}
rr := httptest.NewRecorder()
janusAccessControlHeaders(rr, req)
result := rr.Result()
if test.expectCors {
if origin := result.Header.Get("Access-Control-Allow-Origin"); origin != test.originHeader {
t.Errorf("Expected Access-Control-Allow-Origin to be %q, got %q", test.originHeader, origin)
}
if methods := result.Header.Get("Access-Control-Allow-Methods"); methods != "POST, GET, OPTIONS, PUT, DELETE" {
t.Errorf("Expected Access-Control-Allow-Methods to be %q, got %q", "POST, GET, OPTIONS, PUT, DELETE", methods)
}
if headers := result.Header.Get("Access-Control-Allow-Headers"); headers != "Accept, Accept-Language, Content-Type" {
t.Errorf("Expected Access-Control-Allow-Headers to be %q, got %q", "Accept, Accept-Language, Content-Type", headers)
}
} else {
if origin := result.Header.Get("Access-Control-Allow-Origin"); origin != "" {
t.Errorf("Expected no Access-Control-Allow-Origin header, got %q", origin)
}
}
}
}