Files
cgrates/apier/v1/versions_it_test.go
2025-10-29 19:42:40 +01:00

226 lines
7.3 KiB
Go

//go:build integration
// +build integration
/*
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 Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
*/
package v1
import (
"path"
"testing"
"github.com/cgrates/birpc"
"github.com/cgrates/birpc/context"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/utils"
)
var (
vrsCfgPath string
vrsCfg *config.CGRConfig
vrsRPC *birpc.Client
vrsDelay int
vrsConfigDIR string //run tests for specific configuration
vrsStorageType string
sTestsVrs = []func(t *testing.T){
testVrsInitCfg,
testVrsResetStorDb,
testVrsStartEngine,
testVrsRpcConn,
testVrsDataDB,
testVrsStorDB,
testVrsSetDataDBVrs,
testVrsSetStorDBVrs,
testVrsKillEngine,
}
)
// Test start here
func TestVrsIT(t *testing.T) {
switch *utils.DBType {
case utils.MetaInternal:
// vrsConfigDIR = "tutinternal"
// vrsStorageType = utils.INTERNAL
t.SkipNow() // as is commented below
case utils.MetaMySQL:
vrsConfigDIR = "tutmysql"
vrsStorageType = utils.MetaRedis
case utils.MetaMongo:
vrsConfigDIR = "tutmongo"
vrsStorageType = utils.MetaMongo
case utils.MetaPostgres:
t.SkipNow()
default:
t.Fatal("Unknown Database type")
}
for _, stest := range sTestsVrs {
t.Run(vrsConfigDIR, stest)
}
}
// func TestVrsITInternal(t *testing.T) {
// vrsConfigDIR = "tutinternal"
// vrsStorageType = utils.INTERNAL
// for _, stest := range sTestsVrs {
// t.Run(vrsConfigDIR, stest)
// }
// }
func testVrsInitCfg(t *testing.T) {
var err error
vrsCfgPath = path.Join(*utils.DataDir, "conf", "samples", vrsConfigDIR)
vrsCfg, err = config.NewCGRConfigFromPath(vrsCfgPath)
if err != nil {
t.Error(err)
}
vrsCfg.DataFolderPath = *utils.DataDir // Share DataFolderPath through config towards StoreDb for Flush()
vrsDelay = 1000
}
// Wipe out the cdr database
func testVrsResetStorDb(t *testing.T) {
if err := engine.InitStorDb(vrsCfg); err != nil {
t.Fatal(err)
}
}
// Start CGR Engine
func testVrsStartEngine(t *testing.T) {
if _, err := engine.StopStartEngine(vrsCfgPath, vrsDelay); err != nil {
t.Fatal(err)
}
}
// Connect rpc client to rater
func testVrsRpcConn(t *testing.T) {
var err error
vrsRPC, err = newRPCClient(vrsCfg.ListenCfg()) // We connect over JSON so we can also troubleshoot if needed
if err != nil {
t.Fatal(err)
}
}
func testVrsDataDB(t *testing.T) {
var result engine.Versions
expectedVrs := engine.Versions{"ActionTriggers": 2,
"Actions": 2, "RQF": 5, "ReverseDestinations": 1, "Attributes": 6, "RatingPlan": 1,
"RatingProfile": 1, "Accounts": 3, "ActionPlans": 3, "Chargers": 2,
"Destinations": 1, "LoadIDs": 1, "SharedGroups": 2, "Stats": 4, "Resource": 1,
"Subscribers": 1, "Routes": 2, "Thresholds": 4, "Timing": 1, "Dispatchers": 2}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1GetDataDBVersions, utils.StringPointer(utils.EmptyString), &result); err != nil {
t.Error(err)
} else if expectedVrs.Compare(result, vrsStorageType, true) != "" {
t.Errorf("Expecting: %+v, received: %+v", utils.ToJSON(expectedVrs), utils.ToJSON(result))
}
}
func testVrsStorDB(t *testing.T) {
var result engine.Versions
expectedVrs := engine.Versions{"TpDestinations": 1, "TpResource": 1, "TpThresholds": 1,
"TpActions": 1, "TpDestinationRates": 1, "TpFilters": 1, "TpRates": 1, "CDRs": 2, "TpActionTriggers": 1, "TpRatingPlans": 1,
"TpSharedGroups": 1, "TpRoutes": 1, "SessionSCosts": 3, "TpRatingProfiles": 1, "TpStats": 1, "TpTiming": 1,
"CostDetails": 2, "TpAccountActions": 1, "TpActionPlans": 1, "TpChargers": 1, "TpRatingProfile": 1,
"TpRatingPlan": 1, "TpResources": 1}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1GetStorDBVersions, utils.StringPointer(utils.EmptyString), &result); err != nil {
t.Error(err)
} else if expectedVrs.Compare(result, vrsStorageType, true) != "" {
t.Errorf("Expecting: %+v, received: %+v", utils.ToJSON(result), utils.ToJSON(expectedVrs))
}
}
func testVrsSetDataDBVrs(t *testing.T) {
var reply string
args := SetVersionsArg{
Versions: engine.Versions{
"Attributes": 3,
},
}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1SetDataDBVersions, &args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Expecting: %+v, received: %+v", utils.OK, reply)
}
var result engine.Versions
expectedVrs := engine.Versions{"ActionTriggers": 2,
"Actions": 2, "RQF": 5, "ReverseDestinations": 1, "Attributes": 3, "RatingPlan": 1,
"RatingProfile": 1, "Accounts": 3, "ActionPlans": 3, "Chargers": 2,
"Destinations": 1, "LoadIDs": 1, "SharedGroups": 2, "Stats": 4, "Resource": 1,
"Subscribers": 1, "Routes": 2, "Thresholds": 4, "Timing": 1,
"Dispatchers": 2}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1GetDataDBVersions, utils.StringPointer(utils.EmptyString), &result); err != nil {
t.Error(err)
} else if expectedVrs.Compare(result, vrsStorageType, true) != "" {
t.Errorf("Expecting: %+v, received: %+v", utils.ToJSON(expectedVrs), utils.ToJSON(result))
}
args = SetVersionsArg{
Versions: nil,
}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1SetDataDBVersions, &args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Expecting: %+v, received: %+v", utils.OK, reply)
}
}
func testVrsSetStorDBVrs(t *testing.T) {
var reply string
args := SetVersionsArg{
Versions: engine.Versions{
"TpResources": 2,
},
}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1SetStorDBVersions, &args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Expecting: %+v, received: %+v", utils.OK, reply)
}
var result engine.Versions
expectedVrs := engine.Versions{"TpDestinations": 1, "TpResource": 1, "TpThresholds": 1,
"TpActions": 1, "TpDestinationRates": 1, "TpFilters": 1, "TpRates": 1, "CDRs": 2, "TpActionTriggers": 1, "TpRatingPlans": 1,
"TpSharedGroups": 1, "TpRoutes": 1, "SessionSCosts": 3, "TpRatingProfiles": 1, "TpStats": 1, "TpTiming": 1,
"CostDetails": 2, "TpAccountActions": 1, "TpActionPlans": 1, "TpChargers": 1, "TpRatingProfile": 1,
"TpRatingPlan": 1, "TpResources": 2}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1GetStorDBVersions, utils.StringPointer(utils.EmptyString), &result); err != nil {
t.Error(err)
} else if expectedVrs.Compare(result, vrsStorageType, true) != "" {
t.Errorf("Expecting: %+v, received: %+v", result, expectedVrs)
}
args = SetVersionsArg{
Versions: nil,
}
if err := vrsRPC.Call(context.Background(), utils.APIerSv1SetStorDBVersions, &args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Expecting: %+v, received: %+v", utils.OK, reply)
}
}
func testVrsKillEngine(t *testing.T) {
if err := engine.KillEngine(vrsDelay); err != nil {
t.Error(err)
}
}