mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-19 22:28:45 +05:00
127 lines
3.4 KiB
Go
127 lines
3.4 KiB
Go
// +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 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 v1
|
|
|
|
import (
|
|
"net/rpc"
|
|
"net/rpc/jsonrpc"
|
|
"path"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
var (
|
|
costCfgPath string
|
|
costCfg *config.CGRConfig
|
|
costRPC *rpc.Client
|
|
costConfigDIR string //run tests for specific configuration
|
|
costDataDir = "/usr/share/cgrates"
|
|
)
|
|
|
|
var sTestsCost = []func(t *testing.T){
|
|
testCostInitCfg,
|
|
testCostInitDataDb,
|
|
testCostResetStorDb,
|
|
testCostStartEngine,
|
|
testCostRPCConn,
|
|
testCostLoadFromFolder,
|
|
testCostGetCost,
|
|
testCostKillEngine,
|
|
}
|
|
|
|
//Test start here
|
|
func TestCostIT(t *testing.T) {
|
|
costConfigDIR = "tutmysql"
|
|
for _, stest := range sTestsCost {
|
|
t.Run(costConfigDIR, stest)
|
|
}
|
|
}
|
|
|
|
func testCostInitCfg(t *testing.T) {
|
|
var err error
|
|
costCfgPath = path.Join(costDataDir, "conf", "samples", costConfigDIR)
|
|
costCfg, err = config.NewCGRConfigFromPath(costCfgPath)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
costCfg.DataFolderPath = costDataDir // Share DataFolderPath through config towards StoreDb for Flush()
|
|
config.SetCgrConfig(costCfg)
|
|
}
|
|
|
|
func testCostInitDataDb(t *testing.T) {
|
|
if err := engine.InitDataDb(costCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Wipe out the cdr database
|
|
func testCostResetStorDb(t *testing.T) {
|
|
if err := engine.InitStorDb(costCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Start CGR Engine
|
|
func testCostStartEngine(t *testing.T) {
|
|
if _, err := engine.StopStartEngine(costCfgPath, *waitRater); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Connect rpc client to rater
|
|
func testCostRPCConn(t *testing.T) {
|
|
var err error
|
|
costRPC, err = jsonrpc.Dial("tcp", costCfg.ListenCfg().RPCJSONListen) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testCostLoadFromFolder(t *testing.T) {
|
|
var reply string
|
|
attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "tutorial")}
|
|
if err := costRPC.Call("ApierV1.LoadTariffPlanFromFolder", attrs, &reply); err != nil {
|
|
t.Error(err)
|
|
}
|
|
time.Sleep(500 * time.Millisecond)
|
|
}
|
|
|
|
func testCostGetCost(t *testing.T) {
|
|
attrs := AttrGetCost{Category: "call", Tenant: "cgrates.org",
|
|
Subject: "1001", AnswerTime: "*now", Destination: "1002", Usage: "120000000000"} //120s ( 2m)
|
|
var rply *engine.EventCost
|
|
if err := costRPC.Call("ApierV1.GetCost", attrs, &rply); err != nil {
|
|
t.Error("Unexpected nil error received: ", err.Error())
|
|
} else if *rply.Cost != 0.700200 { // expect to get 0.7 (0.4 connect fee 0.2 first minute 0.1 each minute after)
|
|
t.Errorf("Unexpected cost received: %f", *rply.Cost)
|
|
}
|
|
}
|
|
|
|
func testCostKillEngine(t *testing.T) {
|
|
if err := engine.KillEngine(*waitRater); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|