Add new unit tests on ees and ers

This commit is contained in:
armirveliaj
2024-08-07 09:28:29 -04:00
committed by Dan Christian Bogos
parent 0bab7d5557
commit 2f9f07a976
7 changed files with 324 additions and 0 deletions

60
ees/s3_test.go Normal file
View File

@@ -0,0 +1,60 @@
/*
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 ees
import (
"testing"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/utils"
)
func TestS3GetMetrics(t *testing.T) {
safeMapStorage := &utils.SafeMapStorage{}
pstr := &S3EE{
dc: safeMapStorage,
}
result := pstr.GetMetrics()
if result == nil {
t.Errorf("GetMetrics() returned nil; expected a non-nil SafeMapStorage")
return
}
if result != safeMapStorage {
t.Errorf("GetMetrics() returned unexpected result; got %v, want %v", result, safeMapStorage)
}
}
func TestClose(t *testing.T) {
pstr := &S3EE{}
err := pstr.Close()
if err != nil {
t.Errorf("Close() returned an error: %v; expected nil", err)
}
}
func TestS3Cfg(t *testing.T) {
expectedCfg := &config.EventExporterCfg{}
pstr := &S3EE{
cfg: expectedCfg,
}
actualCfg := pstr.Cfg()
if actualCfg != expectedCfg {
t.Errorf("Cfg() = %v; expected %v", actualCfg, expectedCfg)
}
}