mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
203 lines
6.0 KiB
Go
203 lines
6.0 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"
|
|
"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 (
|
|
tpTimingCfgPath string
|
|
tpTimingCfg *config.CGRConfig
|
|
tpTimingRPC *birpc.Client
|
|
tpTiming *utils.ApierTPTiming
|
|
tpTimingDelay int
|
|
tpTimingConfigDIR string //run tests for specific configuration
|
|
)
|
|
|
|
var sTestsTPTiming = []func(t *testing.T){
|
|
testTPTimingsInitCfg,
|
|
testTPTimingsResetStorDb,
|
|
testTPTimingsStartEngine,
|
|
testTPTimingsRpcConn,
|
|
testTPTimingsGetTPTimingBeforeSet,
|
|
testTPTimingsSetTPTiming,
|
|
testTPTimingsGetTPTimingAfterSet,
|
|
testTPTimingsGetTPTimingIds,
|
|
testTPTimingsUpdateTPTiming,
|
|
testTPTimingsGetTPTimingAfterUpdate,
|
|
testTPTimingsRemoveTPTiming,
|
|
testTPTimingsGetTPTimingAfterRemove,
|
|
testTPTimingsKillEngine,
|
|
}
|
|
|
|
// Test start here
|
|
func TestTPTimingIT(t *testing.T) {
|
|
switch *utils.DBType {
|
|
case utils.MetaInternal:
|
|
tpTimingConfigDIR = "tutinternal"
|
|
case utils.MetaMySQL:
|
|
tpTimingConfigDIR = "tutmysql"
|
|
case utils.MetaMongo:
|
|
tpTimingConfigDIR = "tutmongo"
|
|
case utils.MetaPostgres:
|
|
t.SkipNow()
|
|
default:
|
|
t.Fatal("Unknown Database type")
|
|
}
|
|
for _, stest := range sTestsTPTiming {
|
|
t.Run(tpTimingConfigDIR, stest)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsInitCfg(t *testing.T) {
|
|
var err error
|
|
tpTimingCfgPath = path.Join(*utils.DataDir, "conf", "samples", tpTimingConfigDIR)
|
|
tpTimingCfg, err = config.NewCGRConfigFromPath(tpTimingCfgPath)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
switch tpTimingConfigDIR {
|
|
case "tutmongo": // Mongo needs more time to reset db
|
|
tpTimingDelay = 2000
|
|
default:
|
|
tpTimingDelay = 1000
|
|
}
|
|
}
|
|
|
|
// Wipe out the cdr database
|
|
func testTPTimingsResetStorDb(t *testing.T) {
|
|
if err := engine.InitStorDb(tpTimingCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Start CGR Engine
|
|
func testTPTimingsStartEngine(t *testing.T) {
|
|
if _, err := engine.StopStartEngine(tpTimingCfgPath, tpTimingDelay); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Connect rpc client to rater
|
|
func testTPTimingsRpcConn(t *testing.T) {
|
|
var err error
|
|
tpTimingRPC, err = jsonrpc.Dial(utils.TCP, tpTimingCfg.ListenCfg().RPCJSONListen) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsGetTPTimingBeforeSet(t *testing.T) {
|
|
var reply *utils.ApierTPTiming
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1GetTPTiming, &AttrGetTPTiming{TPid: "TPT1", ID: "Timining"}, &reply); err == nil || err.Error() != utils.ErrNotFound.Error() {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsSetTPTiming(t *testing.T) {
|
|
tpTiming = &utils.ApierTPTiming{
|
|
TPid: "TPT1",
|
|
ID: "Timing",
|
|
Years: "2017",
|
|
Months: "05",
|
|
MonthDays: "01",
|
|
WeekDays: "1",
|
|
Time: "15:00:00Z",
|
|
}
|
|
var result string
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1SetTPTiming, &tpTiming, &result); err != nil {
|
|
t.Error(err)
|
|
} else if result != utils.OK {
|
|
t.Error("Unexpected reply returned", result)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsGetTPTimingAfterSet(t *testing.T) {
|
|
var respond *utils.ApierTPTiming
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1GetTPTiming, &AttrGetTPTiming{TPid: tpTiming.TPid, ID: tpTiming.ID}, &respond); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(tpTiming, respond) {
|
|
t.Errorf("Expecting: %+v, received: %+v", tpTiming, respond)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsGetTPTimingIds(t *testing.T) {
|
|
var result []string
|
|
expectedTPID := []string{"Timing"}
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1GetTPTimingIds, &AttrGetTPTimingIds{TPid: tpTiming.TPid}, &result); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(result, expectedTPID) {
|
|
t.Errorf("Expecting: %+v, received: %+v", result, expectedTPID)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsUpdateTPTiming(t *testing.T) {
|
|
var result string
|
|
tpTiming.Years = "2015"
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1SetTPTiming, &tpTiming, &result); err != nil {
|
|
t.Error(err)
|
|
} else if result != utils.OK {
|
|
t.Error("Unexpected reply returned", result)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsGetTPTimingAfterUpdate(t *testing.T) {
|
|
var expectedTPS *utils.ApierTPTiming
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1GetTPTiming, &AttrGetTPTiming{TPid: tpTiming.TPid, ID: tpTiming.ID}, &expectedTPS); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(tpTiming, expectedTPS) {
|
|
t.Errorf("Expecting: %+v, received: %+v", tpTiming, expectedTPS)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsRemoveTPTiming(t *testing.T) {
|
|
var resp string
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1RemoveTPTiming, &AttrGetTPTiming{TPid: tpTiming.TPid, ID: tpTiming.ID}, &resp); err != nil {
|
|
t.Error(err)
|
|
} else if resp != utils.OK {
|
|
t.Error("Unexpected reply returned", resp)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsGetTPTimingAfterRemove(t *testing.T) {
|
|
var reply *utils.ApierTPTiming
|
|
if err := tpTimingRPC.Call(context.Background(), utils.APIerSv1GetTPTiming, &AttrGetTPTiming{TPid: "TPT1", ID: "Timining"}, &reply); err == nil || err.Error() != utils.ErrNotFound.Error() {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testTPTimingsKillEngine(t *testing.T) {
|
|
if err := engine.KillEngine(tpTimingDelay); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|