mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
222 lines
6.6 KiB
Go
222 lines
6.6 KiB
Go
//go:build offline
|
|
// +build offline
|
|
|
|
/*
|
|
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"
|
|
|
|
"github.com/cgrates/birpc"
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/birpc/jsonrpc"
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
var (
|
|
tpThresholdCfgPath string
|
|
tpThresholdCfg *config.CGRConfig
|
|
tpThresholdRPC *birpc.Client
|
|
tpThreshold *utils.TPThresholdProfile
|
|
tpThresholdDelay int
|
|
tpThresholdConfigDIR string //run tests for specific configuration
|
|
)
|
|
|
|
var sTestsTPThreshold = []func(t *testing.T){
|
|
testTPThreholdInitCfg,
|
|
testTPThreholdResetStorDb,
|
|
testTPThreholdStartEngine,
|
|
testTPThreholdRpcConn,
|
|
testTPThreholdGetTPThreholdBeforeSet,
|
|
testTPThreholdSetTPThrehold,
|
|
testTPThreholdGetTPThreholdAfterSet,
|
|
testTPThreholdGetTPThreholdIds,
|
|
testTPThreholdUpdateTPThrehold,
|
|
testTPThreholdGetTPThreholdAfterUpdate,
|
|
testTPThreholdRemTPThrehold,
|
|
testTPThreholdGetTPThreholdAfterRemove,
|
|
testTPThreholdKillEngine,
|
|
}
|
|
|
|
// Test start here
|
|
func TestTPThresholdIT(t *testing.T) {
|
|
switch *utils.DBType {
|
|
case utils.MetaInternal:
|
|
tpThresholdConfigDIR = "tutinternal"
|
|
case utils.MetaMySQL:
|
|
tpThresholdConfigDIR = "tutmysql"
|
|
case utils.MetaMongo:
|
|
tpThresholdConfigDIR = "tutmongo"
|
|
case utils.MetaPostgres:
|
|
tpThresholdConfigDIR = "tutpostgres"
|
|
default:
|
|
t.Fatal("Unknown Database type")
|
|
}
|
|
for _, stest := range sTestsTPThreshold {
|
|
t.Run(tpThresholdConfigDIR, stest)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdInitCfg(t *testing.T) {
|
|
var err error
|
|
tpThresholdCfgPath = path.Join(*utils.DataDir, "conf", "samples", tpThresholdConfigDIR)
|
|
tpThresholdCfg, err = config.NewCGRConfigFromPath(tpThresholdCfgPath)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
tpThresholdDelay = 1000
|
|
|
|
}
|
|
|
|
// Wipe out the cdr database
|
|
func testTPThreholdResetStorDb(t *testing.T) {
|
|
if err := engine.InitStorDb(tpThresholdCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Start CGR Engine
|
|
func testTPThreholdStartEngine(t *testing.T) {
|
|
if _, err := engine.StopStartEngine(tpThresholdCfgPath, tpThresholdDelay); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Connect rpc client to rater
|
|
func testTPThreholdRpcConn(t *testing.T) {
|
|
var err error
|
|
tpThresholdRPC, err = jsonrpc.Dial(utils.TCP, tpThresholdCfg.ListenCfg().RPCJSONListen) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdGetTPThreholdBeforeSet(t *testing.T) {
|
|
var reply *utils.TPThresholdProfile
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1GetTPThreshold,
|
|
&utils.TPTntID{TPid: "TH1", Tenant: "cgrates.org", ID: "Threshold"}, &reply); err == nil ||
|
|
err.Error() != utils.ErrNotFound.Error() {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdSetTPThrehold(t *testing.T) {
|
|
tpThreshold = &utils.TPThresholdProfile{
|
|
TPid: "TH1",
|
|
Tenant: "cgrates.org",
|
|
ID: "Threshold",
|
|
FilterIDs: []string{"FLTR_1", "FLTR_2"},
|
|
ActivationInterval: &utils.TPActivationInterval{
|
|
ActivationTime: "2014-07-29T15:00:00Z",
|
|
ExpiryTime: "",
|
|
},
|
|
MinSleep: "1s",
|
|
Blocker: true,
|
|
Weight: 10,
|
|
ActionIDs: []string{"Thresh1", "Thresh2"},
|
|
Async: true,
|
|
}
|
|
sort.Strings(tpThreshold.FilterIDs)
|
|
sort.Strings(tpThreshold.ActionIDs)
|
|
var result string
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1SetTPThreshold, tpThreshold, &result); err != nil {
|
|
t.Error(err)
|
|
} else if result != utils.OK {
|
|
t.Error("Unexpected reply returned", result)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdGetTPThreholdAfterSet(t *testing.T) {
|
|
var respond *utils.TPThresholdProfile
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1GetTPThreshold,
|
|
&utils.TPTntID{TPid: "TH1", Tenant: "cgrates.org", ID: "Threshold"}, &respond); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
sort.Strings(respond.FilterIDs)
|
|
sort.Strings(respond.ActionIDs)
|
|
if !reflect.DeepEqual(tpThreshold, respond) {
|
|
t.Errorf("Expecting: %+v, received: %+v", tpThreshold, respond)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdGetTPThreholdIds(t *testing.T) {
|
|
var result []string
|
|
expectedTPID := []string{"cgrates.org:Threshold"}
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1GetTPThresholdIDs,
|
|
&AttrGetTPThresholdIds{TPid: tpThreshold.TPid}, &result); err != nil {
|
|
t.Fatal(err)
|
|
} else if !reflect.DeepEqual(result, expectedTPID) {
|
|
t.Errorf("Expecting: %+v, received: %+v", result, expectedTPID)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdUpdateTPThrehold(t *testing.T) {
|
|
var result string
|
|
tpThreshold.FilterIDs = []string{"FLTR_1", "FLTR_2", "FLTR_3"}
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1SetTPThreshold, tpThreshold, &result); err != nil {
|
|
t.Error(err)
|
|
} else if result != utils.OK {
|
|
t.Error("Unexpected reply returned", result)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdGetTPThreholdAfterUpdate(t *testing.T) {
|
|
var respond *utils.TPThresholdProfile
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1GetTPThreshold,
|
|
&utils.TPTntID{TPid: "TH1", Tenant: "cgrates.org", ID: "Threshold"}, &respond); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
sort.Strings(respond.FilterIDs)
|
|
sort.Strings(respond.ActionIDs)
|
|
if !reflect.DeepEqual(tpThreshold, respond) {
|
|
t.Errorf("Expecting: %+v, received: %+v", tpThreshold, respond)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdRemTPThrehold(t *testing.T) {
|
|
var resp string
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1RemoveTPThreshold,
|
|
&utils.TPTntID{TPid: "TH1", Tenant: "cgrates.org", ID: "Threshold"}, &resp); err != nil {
|
|
t.Error(err)
|
|
} else if resp != utils.OK {
|
|
t.Error("Unexpected reply returned", resp)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdGetTPThreholdAfterRemove(t *testing.T) {
|
|
var reply *utils.TPThresholdProfile
|
|
if err := tpThresholdRPC.Call(context.Background(), utils.APIerSv1GetTPThreshold,
|
|
&utils.TPTntID{TPid: "TH1", Tenant: "cgrates.org", ID: "Threshold"}, &reply); err == nil ||
|
|
err.Error() != utils.ErrNotFound.Error() {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testTPThreholdKillEngine(t *testing.T) {
|
|
if err := engine.KillEngine(tpThresholdDelay); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|