// Remove data in both rating and accounting db func TestSMGRplcResetDB(t *testing.T) { if err := engine.InitDataDb(smgRplcMasterCfg); err != nil { t.Fatal(err) } if err := engine.InitStorDb(smgRplcMasterCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestSTIResetDataDb(t *testing.T) { if !*testSureTax { return } if err := engine.InitDataDb(stiCfg); err != nil { t.Fatal(err) } }
func TestV2CdrsMongoInitDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(cdrsMongoCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestApierV2itResetDataDb(t *testing.T) { if !*testIT { return } if err := engine.InitDataDb(apierCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestTutKamCallsResetDataDb(t *testing.T) { if !*testCalls { return } if err := engine.InitDataDb(tutKamCallsCfg); err != nil { t.Fatal(err) } }
func TestV2CDRsPSQLInitDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(cdrsPsqlCfg); err != nil { t.Fatal(err) } }
func TestCDRStatsLclInitDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(cdrstCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestSMGV1ResetDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(smgV1Cfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestTutLocalResetDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(tutFsLocalCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestMCDRCResetDataDb(t *testing.T) { if !*testLocal { return } if err := engine.InitDataDb(cfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestTPitResetDataDb(t *testing.T) { if !*testTP { return } if err := engine.InitDataDb(tpCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestSMGResetDataDb(t *testing.T) { if !*testIntegration { return } if err := engine.InitDataDb(daCfg); err != nil { t.Fatal(err) } }
func TestDestManagCacheWithGetCache(t *testing.T) { if !*testIntegration { return } if err := engine.InitDataDb(destCfg); err != nil { t.Fatal(err) } var reply string if err := destRPC.Call("ApierV1.ReloadCache", utils.AttrReloadCache{}, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error()) } else if reply != utils.OK { t.Errorf("Calling ApierV1.ReloadCache received: %+v", reply) } attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "test", "destinations", "cacheall"), FlushDb: true} if err := destRPC.Call("ApierV2.LoadTariffPlanFromFolder", attrs, &destLoadInst); err != nil { t.Error(err) } else if destLoadInst.RatingLoadID == "" || destLoadInst.AccountingLoadID == "" { t.Error("Empty loadId received, loadInstance: ", destLoadInst) } time.Sleep(time.Duration(*waitRater) * time.Millisecond) // Give time for scheduler to execute topups dests := make([]*engine.Destination, 0) if err := destRPC.Call("ApierV2.GetDestinations", v2.AttrGetDestinations{DestinationIDs: []string{}}, &dests); err != nil { t.Error("Got error on ApierV2.GetDestinations: ", err.Error()) } else if len(dests) != 1 { t.Errorf("Calling ApierV2.GetDestinations got reply: %v", utils.ToIJSON(dests)) } var rcvStats utils.CacheStats if err := destRPC.Call("ApierV1.GetCacheStats", utils.AttrCacheStats{}, &rcvStats); err != nil { t.Error("Got error on ApierV1.GetCacheStats: ", err.Error()) } else if rcvStats.Destinations != 2 { t.Errorf("Calling ApierV1.GetCacheStats received: %+v", rcvStats) } attrs = &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "test", "destinations", "cacheone"), FlushDb: true} if err := destRPC.Call("ApierV2.LoadTariffPlanFromFolder", attrs, &destLoadInst); err != nil { t.Error(err) } else if destLoadInst.RatingLoadID == "" || destLoadInst.AccountingLoadID == "" { t.Error("Empty loadId received, loadInstance: ", destLoadInst) } time.Sleep(time.Duration(*waitRater) * time.Millisecond) // Give time for scheduler to execute topups dests = make([]*engine.Destination, 0) if err := destRPC.Call("ApierV2.GetDestinations", v2.AttrGetDestinations{DestinationIDs: []string{}}, &dests); err != nil { t.Error("Got error on ApierV2.GetDestinations: ", err.Error()) } else if len(dests) != 1 { t.Errorf("Calling ApierV2.GetDestinations got reply: %v", utils.ToIJSON(dests)) } if err := destRPC.Call("ApierV1.GetCacheStats", utils.AttrCacheStats{}, &rcvStats); err != nil { t.Error("Got error on ApierV1.GetCacheStats: ", err.Error()) } else if rcvStats.Destinations != 1 { t.Errorf("Calling ApierV1.GetCacheStats received: %+v", rcvStats) } }
func TestRPCITLclInitCfg(t *testing.T) { rpcITCfgPath1 = path.Join(*dataDir, "conf", "samples", "multiral1") rpcITCfgPath2 = path.Join(*dataDir, "conf", "samples", "multiral2") rpcITCfg1, err = config.NewCGRConfigFromFolder(rpcITCfgPath1) if err != nil { t.Error(err) } rpcITCfg2, err = config.NewCGRConfigFromFolder(rpcITCfgPath2) if err != nil { t.Error(err) } if err := engine.InitDataDb(rpcITCfg1); err != nil { t.Fatal(err) } }
func testV2CDRsInitDataDb(t *testing.T) { if err := engine.InitDataDb(cdrsCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestTutSMGResetDataDb(t *testing.T) { if err := engine.InitDataDb(tutSMGCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestDmtAgentResetDataDb(t *testing.T) { if err := engine.InitDataDb(daCfg); err != nil { t.Fatal(err) } }
// Remove data in both rating and accounting db func TestTutOsipsCallsResetDataDb(t *testing.T) { if err := engine.InitDataDb(tutOsipsCallsCfg); err != nil { t.Fatal(err) } }
func TestDestManagCacheWithGetCost(t *testing.T) { if !*testIntegration { return } if err := engine.InitDataDb(destCfg); err != nil { t.Fatal(err) } var reply string if err := destRPC.Call("ApierV1.ReloadCache", utils.AttrReloadCache{}, &reply); err != nil { t.Error("Got error on ApierV1.ReloadCache: ", err.Error()) } else if reply != utils.OK { t.Errorf("Calling ApierV1.ReloadCache received: %+v", reply) } attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "test", "destinations", "cacheall"), FlushDb: true} if err := destRPC.Call("ApierV2.LoadTariffPlanFromFolder", attrs, &destLoadInst); err != nil { t.Error(err) } else if destLoadInst.RatingLoadID == "" || destLoadInst.AccountingLoadID == "" { t.Error("Empty loadId received, loadInstance: ", destLoadInst) } time.Sleep(time.Duration(*waitRater) * time.Millisecond) // Give time for scheduler to execute topups dests := make([]*engine.Destination, 0) if err := destRPC.Call("ApierV2.GetDestinations", v2.AttrGetDestinations{DestinationIDs: []string{}}, &dests); err != nil { t.Error("Got error on ApierV2.GetDestinations: ", err.Error()) } else if len(dests) != 1 { t.Errorf("Calling ApierV2.GetDestinations got reply: %v", utils.ToIJSON(dests)) } var cc engine.CallCost cd := &engine.CallDescriptor{ Direction: "*out", Tenant: "cgrates.org", Category: "call", Account: "test", Destination: "1002", TimeStart: time.Date(2016, 2, 24, 0, 0, 0, 0, time.UTC), TimeEnd: time.Date(2016, 2, 24, 0, 0, 10, 0, time.UTC), } if err := destRPC.Call("Responder.GetCost", cd, &cc); err != nil { t.Error(err) } else if cc.Cost != 1.6667 { t.Error("Empty loadId received, loadInstance: ", utils.ToIJSON(cc)) } attrs = &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*dataDir, "tariffplans", "test", "destinations", "cacheone"), FlushDb: true} if err := destRPC.Call("ApierV2.LoadTariffPlanFromFolder", attrs, &destLoadInst); err != nil { t.Error(err) } else if destLoadInst.RatingLoadID == "" || destLoadInst.AccountingLoadID == "" { t.Error("Empty loadId received, loadInstance: ", destLoadInst) } time.Sleep(time.Duration(*waitRater) * time.Millisecond) // Give time for scheduler to execute topups dests = make([]*engine.Destination, 0) if err := destRPC.Call("ApierV2.GetDestinations", v2.AttrGetDestinations{DestinationIDs: []string{}}, &dests); err != nil { t.Error("Got error on ApierV2.GetDestinations: ", err.Error()) } else if len(dests) != 1 { t.Errorf("Calling ApierV2.GetDestinations got reply: %v", utils.ToIJSON(dests)) } if err := destRPC.Call("Responder.GetCost", cd, &cc); err.Error() != utils.ErrUnauthorizedDestination.Error() { t.Error(err) } }
// Remove data in both rating and accounting db func TestSMGVoiceResetDataDb(t *testing.T) { if err := engine.InitDataDb(daCfg); err != nil { t.Fatal(err) } }
func TestCDRStatsitInitDataDb(t *testing.T) { if err := engine.InitDataDb(cdrstCfg); err != nil { t.Fatal(err) } }