mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
647 lines
23 KiB
Go
647 lines
23 KiB
Go
/*
|
|
Real-time Charging System for Telecom & ISP environments
|
|
Copyright (C) ITsysCOM GmbH
|
|
|
|
This program is free software: you can Storagetribute 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 WITH*out 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 general_tests
|
|
|
|
import (
|
|
"net/rpc"
|
|
"net/rpc/jsonrpc"
|
|
"os"
|
|
"path"
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/apier/v1"
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
var tutFsCallsCfg *config.CGRConfig
|
|
var tutFsCallsRpc *rpc.Client
|
|
var tutFsCallsPjSuaListener *os.File
|
|
|
|
func TestTutFsCallsInitCfg(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
// Init config first
|
|
var err error
|
|
tutFsCallsCfg, err = config.NewCGRConfigFromFolder(path.Join(*dataDir, "tutorials", "fs_evsock", "cgrates", "etc", "cgrates"))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
tutFsCallsCfg.DataFolderPath = *dataDir // Share DataFolderPath through config towards StoreDb for Flush()
|
|
config.SetCgrConfig(tutFsCallsCfg)
|
|
}
|
|
|
|
// Wipe out the cdr database
|
|
func TestTutFsCallsResetDb(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.InitCdrDb(tutFsCallsCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Remove data in both rating and accounting db
|
|
func TestTutFsCallsResetDataDb(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.InitDataDb(tutFsCallsCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// start FS server
|
|
func TestTutFsCallsStartFS(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
engine.KillProcName("freeswitch", 5000)
|
|
if err := engine.CallScript(path.Join(*dataDir, "tutorials", "fs_evsock", "freeswitch", "etc", "init.d", "freeswitch"), "start", 3000); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Start CGR Engine
|
|
func TestTutFsCallsStartEngine(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
engine.KillProcName("cgr-engine", *waitRater)
|
|
if err := engine.CallScript(path.Join(*dataDir, "tutorials", "fs_evsock", "cgrates", "etc", "init.d", "cgrates"), "start", 100); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Restart FS so we make sure reconnects are working
|
|
|
|
func TestTutFsCallsRestartFS(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
engine.KillProcName("freeswitch", 5000)
|
|
if err := engine.CallScript(path.Join(*dataDir, "tutorials", "fs_evsock", "freeswitch", "etc", "init.d", "freeswitch"), "start", 3000); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Connect rpc client to rater
|
|
func TestTutFsCallsRpcConn(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var err error
|
|
tutFsCallsRpc, err = jsonrpc.Dial("tcp", tutFsCallsCfg.RPCJSONListen) // We connect over JSON so we can also troubleshoot if needed
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Load the tariff plan, creating accounts and their balances
|
|
func TestTutFsCallsLoadTariffPlanFromFolder(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
reply := ""
|
|
attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "tutorial")}
|
|
if err := tutFsCallsRpc.Call("ApierV1.LoadTariffPlanFromFolder", attrs, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != "OK" {
|
|
t.Error(reply)
|
|
}
|
|
time.Sleep(time.Duration(*waitRater) * time.Millisecond) // Give time for scheduler to execute topups
|
|
}
|
|
|
|
// Check loaded stats
|
|
func TestTutFsCallsCacheStats(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var rcvStats *utils.CacheStats
|
|
expectedStats := &utils.CacheStats{Destinations: 3, RatingPlans: 3, RatingProfiles: 3, Actions: 6, SharedGroups: 1, RatingAliases: 1, AccountAliases: 1, DerivedChargers: 1}
|
|
var args utils.AttrCacheStats
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCacheStats", args, &rcvStats); err != nil {
|
|
t.Error("Got error on ApierV1.GetCacheStats: ", err.Error())
|
|
} else if !reflect.DeepEqual(expectedStats, rcvStats) {
|
|
t.Errorf("Calling ApierV1.GetCacheStats expected: %v, received: %v", expectedStats, rcvStats)
|
|
}
|
|
}
|
|
|
|
// Check items age
|
|
func TestApierGetCachedItemAge(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var rcvAge *utils.CachedItemAge
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "1002", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.Destination > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "RP_RETAIL1", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.RatingPlan > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "*out:cgrates.org:call:*any", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.RatingProfile > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "LOG_WARNING", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.Action > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "SHARED_A", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.SharedGroup > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
/*
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "1006", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.RatingAlias > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetCachedItemAge", "1006", &rcvAge); err != nil {
|
|
t.Error("Got error on ApierV1.GetCachedItemAge: ", err.Error())
|
|
} else if rcvAge.RatingAlias > time.Duration(2)*time.Second || rcvAge.AccountAlias > time.Duration(2)*time.Second {
|
|
t.Errorf("Cache too old: %d", rcvAge)
|
|
}
|
|
*/
|
|
}
|
|
|
|
// Make sure account was debited properly
|
|
func TestTutFsCallsAccountsBefore(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var reply *engine.Account
|
|
attrs := &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1001", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() != 10.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
}
|
|
attrs = &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1002", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() != 10.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
}
|
|
attrs = &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1003", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() != 10.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
}
|
|
attrs = &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1004", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() != 10.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
}
|
|
attrs = &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1007", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() != 0.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
}
|
|
attrs = &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1005", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err == nil || !strings.HasSuffix(err.Error(), "does not exist") {
|
|
t.Error("Got error on ApierV1.GetAccount: %v", err)
|
|
}
|
|
}
|
|
|
|
// Check call costs
|
|
func TestTutFsCallsGetCosts(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
tStart, _ := utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ := utils.ParseDate("2014-08-04T13:00:20Z")
|
|
cd := engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1002",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
var cc engine.CallCost
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 0.3 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
tStart, _ = utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ = utils.ParseDate("2014-08-04T13:01:25Z")
|
|
cd = engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1002",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 0.6209 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
tStart, _ = utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ = utils.ParseDate("2014-08-04T13:00:20Z")
|
|
cd = engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1003",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 0.3 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
tStart, _ = utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ = utils.ParseDate("2014-08-04T13:01:25Z")
|
|
cd = engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1003",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 1.2209 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
tStart, _ = utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ = utils.ParseDate("2014-08-04T13:00:20Z")
|
|
cd = engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1004",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 0.3 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
tStart, _ = utils.ParseDate("2014-08-04T13:00:00Z")
|
|
tEnd, _ = utils.ParseDate("2014-08-04T13:01:25Z")
|
|
cd = engine.CallDescriptor{
|
|
Direction: "*out",
|
|
Category: "call",
|
|
Tenant: "cgrates.org",
|
|
Subject: "1001",
|
|
Account: "1001",
|
|
Destination: "1004",
|
|
DurationIndex: 0,
|
|
TimeStart: tStart,
|
|
TimeEnd: tEnd,
|
|
}
|
|
if err := tutFsCallsRpc.Call("Responder.GetCost", cd, &cc); err != nil {
|
|
t.Error("Got error on Responder.GetCost: ", err.Error())
|
|
} else if cc.Cost != 1.2209 {
|
|
t.Errorf("Calling Responder.GetCost got callcost: %v", cc.Cost)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCdrStats(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var queueIds []string
|
|
eQueueIds := []string{"*default", "CDRST1", "CDRST_1001", "CDRST_1002", "CDRST_1003"}
|
|
if err := tutFsCallsRpc.Call("CDRStatsV1.GetQueueIds", "", &queueIds); err != nil {
|
|
t.Error("Calling CDRStatsV1.GetQueueIds, got error: ", err.Error())
|
|
} else if len(eQueueIds) != len(queueIds) {
|
|
t.Errorf("Expecting: %v, received: %v", eQueueIds, queueIds)
|
|
}
|
|
}
|
|
|
|
// Start Pjsua as listener and register it to receive calls
|
|
func TestTutFsCallsStartPjsuaListener(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var err error
|
|
acnts := []*engine.PjsuaAccount{
|
|
&engine.PjsuaAccount{Id: "sip:1001@127.0.0.1", Username: "1001", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"},
|
|
&engine.PjsuaAccount{Id: "sip:1002@127.0.0.1", Username: "1002", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"},
|
|
&engine.PjsuaAccount{Id: "sip:1003@127.0.0.1", Username: "1003", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"},
|
|
&engine.PjsuaAccount{Id: "sip:1004@127.0.0.1", Username: "1004", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"},
|
|
&engine.PjsuaAccount{Id: "sip:1006@127.0.0.1", Username: "1006", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"},
|
|
&engine.PjsuaAccount{Id: "sip:1007@127.0.0.1", Username: "1007", Password: "1234", Realm: "*", Registrar: "sip:127.0.0.1:25060"}}
|
|
if tutFsCallsPjSuaListener, err = engine.StartPjsuaListener(acnts, *waitRater); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Call from 1001 (prepaid) to 1002
|
|
func TestTutFsCallsCall1001To1002(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1001@127.0.0.1", Username: "1001", Password: "1234", Realm: "*"}, "sip:1002@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(67)*time.Second, 5071); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCall1002To1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1002@127.0.0.1", Username: "1002", Password: "1234", Realm: "*"}, "sip:1001@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(61)*time.Second, 5072); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCall1003To1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1003@127.0.0.1", Username: "1003", Password: "1234", Realm: "*"}, "sip:1001@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(63)*time.Second, 5073); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCall1004To1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1004@127.0.0.1", Username: "1004", Password: "1234", Realm: "*"}, "sip:1001@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(62)*time.Second, 5074); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCall1006To1002(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1006@127.0.0.1", Username: "1006", Password: "1234", Realm: "*"}, "sip:1002@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(64)*time.Second, 5075); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsCall1007To1002(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.PjsuaCallUri(&engine.PjsuaAccount{Id: "sip:1007@127.0.0.1", Username: "1007", Password: "1234", Realm: "*"}, "sip:1002@127.0.0.1",
|
|
"sip:127.0.0.1:25060", time.Duration(66)*time.Second, 5076); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
// Make sure account was debited properly
|
|
func TestTutFsCallsAccount1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
time.Sleep(time.Duration(70) * time.Second) // Allow calls to finish before start querying the results
|
|
var reply *engine.Account
|
|
attrs := &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1001", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue() == 10.0 { // Make sure we debitted
|
|
t.Errorf("Calling ApierV1.GetBalance received: %f", reply.BalanceMap[engine.CREDIT+attrs.Direction].GetTotalValue())
|
|
} else if reply.Disabled == true {
|
|
t.Error("Account disabled")
|
|
}
|
|
}
|
|
|
|
// Make sure account was debited properly
|
|
func TestTutFsCallsCdrs(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var reply []*engine.ExternalCdr
|
|
req := utils.RpcCdrsFilter{Accounts: []string{"1001"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_PREPAID {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "67" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1001"}, RunIds: []string{"derived_run1"}, FilterOnDerived: true}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].ReqType != utils.META_RATED {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Subject != "1002" {
|
|
t.Errorf("Unexpected Subject for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1002"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_POSTPAID {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Destination != "1001" {
|
|
t.Errorf("Unexpected Destination for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "61" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1003"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_PSEUDOPREPAID {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Destination != "1001" {
|
|
t.Errorf("Unexpected Destination for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "63" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1004"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_RATED {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Destination != "1001" {
|
|
t.Errorf("Unexpected Destination for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "62" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1006"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_PREPAID {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Destination != "1002" {
|
|
t.Errorf("Unexpected Destination for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "64" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
req = utils.RpcCdrsFilter{Accounts: []string{"1007"}, RunIds: []string{utils.META_DEFAULT}}
|
|
if err := tutFsCallsRpc.Call("ApierV2.GetCdrs", req, &reply); err != nil {
|
|
t.Error("Unexpected error: ", err.Error())
|
|
} else if len(reply) != 1 {
|
|
t.Error("Unexpected number of CDRs returned: ", len(reply))
|
|
} else {
|
|
if reply[0].CdrSource != "FS_CHANNEL_HANGUP_COMPLETE" {
|
|
t.Errorf("Unexpected CdrSource for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].ReqType != utils.META_PREPAID {
|
|
t.Errorf("Unexpected ReqType for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Destination != "1002" {
|
|
t.Errorf("Unexpected Destination for CDR: %+v", reply[0])
|
|
}
|
|
if reply[0].Usage != "66" { // Usage as seconds
|
|
t.Errorf("Unexpected Usage for CDR: %+v", reply[0])
|
|
}
|
|
}
|
|
}
|
|
|
|
// Make sure account was debited properly
|
|
func TestTutFsCallsAccountFraud1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var reply string
|
|
attrAddBlnc := &v1.AttrAddBalance{Tenant: "cgrates.org", Account: "1001", BalanceType: "*monetary", Direction: "*out", Value: 101}
|
|
if err := tutFsCallsRpc.Call("ApierV1.AddBalance", attrAddBlnc, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.AddBalance: ", err.Error())
|
|
} else if reply != "OK" {
|
|
t.Errorf("Calling ApierV1.AddBalance received: %s", reply)
|
|
}
|
|
}
|
|
|
|
// Based on Fraud automatic mitigation, our account should be disabled
|
|
func TestTutFsCallsAccountDisabled1001(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
var reply *engine.Account
|
|
attrs := &utils.AttrGetAccount{Tenant: "cgrates.org", Account: "1001", Direction: "*out"}
|
|
if err := tutFsCallsRpc.Call("ApierV1.GetAccount", attrs, &reply); err != nil {
|
|
t.Error("Got error on ApierV1.GetAccount: ", err.Error())
|
|
} else if reply.Disabled == false {
|
|
t.Error("Account should be disabled per fraud detection rules.")
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsStopPjsuaListener(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
|
|
tutFsCallsPjSuaListener.Write([]byte("q\n")) // Close pjsua
|
|
time.Sleep(time.Duration(1) * time.Second) // Allow pjsua to finish it's tasks, eg un-REGISTER
|
|
}
|
|
|
|
func TestTutFsCallsStopCgrEngine(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
if err := engine.KillEngine(100); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestTutFsCallsStopFS(t *testing.T) {
|
|
if !*testCalls {
|
|
return
|
|
}
|
|
engine.KillProcName("freeswitch", 1000)
|
|
}
|