mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
183 lines
5.3 KiB
Go
183 lines
5.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"
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/birpc"
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
|
|
"github.com/cgrates/cgrates/config"
|
|
)
|
|
|
|
var (
|
|
engine1Cfg *config.CGRConfig
|
|
engine1RPC *birpc.Client
|
|
engine1CfgPath string
|
|
engine2Cfg *config.CGRConfig
|
|
engine2RPC *birpc.Client
|
|
engine2CfgPath string
|
|
|
|
sTestsCacheSReplicate = []func(t *testing.T){
|
|
testCacheSReplicateLoadConfig,
|
|
testCacheSReplicateInitDataDb,
|
|
testCacheSReplicateInitStorDb,
|
|
testCacheSReplicateStartEngine,
|
|
testCacheSReplicateRpcConn,
|
|
testCacheSReplicateLoadTariffPlanFromFolder,
|
|
testCacheSReplicateProcessAttributes,
|
|
testCacheSReplicateStopEngine,
|
|
}
|
|
)
|
|
|
|
func TestCacheSv1ReplicateIT(t *testing.T) {
|
|
for _, stest := range sTestsCacheSReplicate {
|
|
t.Run("TestCacheSv1ReplicateIT", stest)
|
|
}
|
|
}
|
|
|
|
func testCacheSReplicateLoadConfig(t *testing.T) {
|
|
var err error
|
|
engine1CfgPath = path.Join(*utils.DataDir, "conf", "samples", "replication_cache", "engine1")
|
|
if engine1Cfg, err = config.NewCGRConfigFromPath(engine1CfgPath); err != nil {
|
|
t.Error(err)
|
|
}
|
|
engine2CfgPath = path.Join(*utils.DataDir, "conf", "samples", "replication_cache", "engine2")
|
|
if engine2Cfg, err = config.NewCGRConfigFromPath(engine2CfgPath); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testCacheSReplicateInitDataDb(t *testing.T) {
|
|
if err := engine.InitDataDB(engine1Cfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := engine.InitDataDB(engine2Cfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Empty tables before using them
|
|
func testCacheSReplicateInitStorDb(t *testing.T) {
|
|
if err := engine.InitStorDb(engine1Cfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := engine.InitStorDb(engine2Cfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Start engine
|
|
func testCacheSReplicateStartEngine(t *testing.T) {
|
|
if _, err := engine.StopStartEngine(engine1CfgPath, *utils.WaitRater); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if _, err := engine.StartEngine(engine2CfgPath, *utils.WaitRater); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testCacheSReplicateRpcConn(t *testing.T) {
|
|
var err error
|
|
engine1RPC, err = newRPCClient(engine1Cfg.ListenCfg()) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal("Could not connect to RPC: ", err.Error())
|
|
}
|
|
engine2RPC, err = newRPCClient(engine2Cfg.ListenCfg()) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal("Could not connect to RPC: ", err.Error())
|
|
}
|
|
}
|
|
|
|
func testCacheSReplicateLoadTariffPlanFromFolder(t *testing.T) {
|
|
var reply string
|
|
attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*utils.DataDir, "tariffplans", "testit")}
|
|
if err := engine2RPC.Call(context.Background(), utils.APIerSv1LoadTariffPlanFromFolder, attrs, &reply); err != nil {
|
|
t.Error(err)
|
|
}
|
|
time.Sleep(time.Duration(*utils.WaitRater) * time.Millisecond)
|
|
}
|
|
|
|
func testCacheSReplicateProcessAttributes(t *testing.T) {
|
|
ev := &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "testCacheSReplicateProcessAttributes",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1001",
|
|
},
|
|
APIOpts: map[string]any{
|
|
utils.OptsContext: utils.MetaSessionS,
|
|
},
|
|
}
|
|
eRply := &engine.AttrSProcessEventReply{
|
|
MatchedProfiles: []string{"cgrates.org:ATTR_ACNT_1001"},
|
|
AlteredFields: []string{utils.MetaReq + utils.NestingSep + "OfficeGroup"},
|
|
CGREvent: &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "testCacheSReplicateProcessAttributes",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1001",
|
|
"OfficeGroup": "Marketing",
|
|
},
|
|
APIOpts: map[string]any{
|
|
utils.OptsContext: utils.MetaSessionS,
|
|
},
|
|
},
|
|
}
|
|
var rplyEv engine.AttrSProcessEventReply
|
|
if err := engine1RPC.Call(context.Background(), utils.AttributeSv1ProcessEvent,
|
|
ev, &rplyEv); err != nil {
|
|
t.Error(err)
|
|
} else {
|
|
sort.Strings(eRply.AlteredFields)
|
|
sort.Strings(rplyEv.AlteredFields)
|
|
if !reflect.DeepEqual(eRply, &rplyEv) { // second for reversed order of attributes
|
|
t.Errorf("Expecting: %s, received: %s",
|
|
utils.ToJSON(eRply), utils.ToJSON(rplyEv))
|
|
}
|
|
}
|
|
if err := engine2RPC.Call(context.Background(), utils.AttributeSv1ProcessEvent,
|
|
ev, &rplyEv); err != nil {
|
|
t.Error(err)
|
|
} else {
|
|
sort.Strings(eRply.AlteredFields)
|
|
sort.Strings(rplyEv.AlteredFields)
|
|
if !reflect.DeepEqual(eRply, &rplyEv) { // second for reversed order of attributes
|
|
t.Errorf("Expecting: %s, received: %s",
|
|
utils.ToJSON(eRply), utils.ToJSON(rplyEv))
|
|
}
|
|
}
|
|
}
|
|
|
|
func testCacheSReplicateStopEngine(t *testing.T) {
|
|
if err := engine.KillEngine(300); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|