mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
241 lines
6.8 KiB
Go
241 lines
6.8 KiB
Go
//go:build flaky
|
|
|
|
/*
|
|
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 dispatchers
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/utils"
|
|
"github.com/cgrates/rpcclient"
|
|
)
|
|
|
|
var sTestsDspRsp = []func(t *testing.T){
|
|
testDspResponderStatus,
|
|
testDspResponderShutdown,
|
|
|
|
testDspResponderRandom,
|
|
testDspResponderBroadcast,
|
|
testDspResponderInternal,
|
|
}
|
|
|
|
// Test start here
|
|
func TestDspResponder(t *testing.T) {
|
|
var config1, config2, config3 string
|
|
switch *utils.DBType {
|
|
case utils.MetaInternal:
|
|
t.SkipNow()
|
|
case utils.MetaMySQL:
|
|
config1 = "all_mysql"
|
|
config2 = "all2_mysql"
|
|
config3 = "dispatchers_mysql"
|
|
case utils.MetaMongo:
|
|
config1 = "all_mongo"
|
|
config2 = "all2_mongo"
|
|
config3 = "dispatchers_mongo"
|
|
case utils.MetaPostgres:
|
|
t.SkipNow()
|
|
default:
|
|
t.Fatal("Unknown Database type")
|
|
}
|
|
|
|
dispDIR := "dispatchers"
|
|
if *utils.Encoding == utils.MetaGOB {
|
|
dispDIR += "_gob"
|
|
}
|
|
testDsp(t, sTestsDspRsp, "TestDspResponder", config1, config2, config3, "tutorial", "oldtutorial", dispDIR)
|
|
}
|
|
|
|
func testDspResponderStatus(t *testing.T) {
|
|
var reply map[string]any
|
|
if err := allEngine.RPC.Call(context.Background(), utils.CoreSv1Status, utils.TenantWithAPIOpts{}, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply[utils.NodeID] != "ALL" {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
ev := utils.TenantWithAPIOpts{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemoteStatus, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply[utils.NodeID] != "ALL" {
|
|
t.Errorf("Received: %s", utils.ToJSON(reply))
|
|
}
|
|
allEngine.stopEngine(t)
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemoteStatus, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply[utils.NodeID] != "ALL2" {
|
|
t.Errorf("Received: %s", utils.ToJSON(reply))
|
|
}
|
|
allEngine.startEngine(t)
|
|
}
|
|
|
|
func getNodeWithRoute(route string, t *testing.T) string {
|
|
var reply map[string]any
|
|
var pingReply string
|
|
pingEv := utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
Event: map[string]any{
|
|
utils.EventName: "Random",
|
|
},
|
|
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
utils.OptsRouteID: route,
|
|
},
|
|
}
|
|
ev := utils.TenantWithAPIOpts{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
utils.OptsRouteID: route,
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemotePing, pingEv, &pingReply); err != nil {
|
|
t.Error(err)
|
|
} else if pingReply != utils.Pong {
|
|
t.Errorf("Received: %s", pingReply)
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemoteStatus, ev, &reply); err != nil {
|
|
t.Error(err)
|
|
}
|
|
if reply[utils.NodeID] == nil {
|
|
return ""
|
|
}
|
|
return reply[utils.NodeID].(string)
|
|
}
|
|
|
|
func testDspResponderRandom(t *testing.T) {
|
|
node := getNodeWithRoute("r_init", t)
|
|
for i := 0; i < 10; i++ {
|
|
if node != getNodeWithRoute(fmt.Sprintf("R_%v", i), t) {
|
|
return
|
|
}
|
|
}
|
|
t.Errorf("Random strategy fail with 0.0009765625%% probability")
|
|
}
|
|
|
|
func testDspResponderShutdown(t *testing.T) {
|
|
var reply string
|
|
var statusReply map[string]any
|
|
ev := utils.TenantWithAPIOpts{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.ResponderShutdown, ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != "Done!" {
|
|
t.Errorf("Received: %s", utils.ToJSON(reply))
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemoteStatus, &ev, &statusReply); err != nil {
|
|
t.Error(err)
|
|
} else if statusReply[utils.NodeID] != "ALL2" {
|
|
t.Errorf("Received: %s", utils.ToJSON(statusReply))
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.ResponderShutdown, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != "Done!" {
|
|
t.Errorf("Received: %s", utils.ToJSON(reply))
|
|
}
|
|
allEngine.startEngine(t)
|
|
allEngine2.startEngine(t)
|
|
}
|
|
|
|
func testDspResponderBroadcast(t *testing.T) {
|
|
var pingReply string
|
|
pingEv := utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
Event: map[string]any{
|
|
utils.EventName: "Broadcast",
|
|
},
|
|
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.ResponderPing, pingEv, &pingReply); err != nil {
|
|
t.Error(err)
|
|
} else if pingReply != utils.Pong {
|
|
t.Errorf("Received: %s", pingReply)
|
|
}
|
|
|
|
allEngine2.stopEngine(t)
|
|
pingReply = ""
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.ResponderPing, pingEv, &pingReply); err == nil ||
|
|
err.Error() != utils.ErrPartiallyExecuted.Error() {
|
|
t.Errorf("Expected error: %s received error: %v and reply %q", utils.ErrPartiallyExecuted.Error(), err, pingReply)
|
|
}
|
|
allEngine.stopEngine(t)
|
|
time.Sleep(10 * time.Millisecond)
|
|
pingReply = ""
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.ResponderPing, pingEv, &pingReply); !rpcclient.ShouldFailover(err) {
|
|
t.Errorf("Expected error: %s received error: %v and reply %q", utils.ErrPartiallyExecuted.Error(), err, pingReply)
|
|
}
|
|
allEngine.startEngine(t)
|
|
allEngine2.startEngine(t)
|
|
}
|
|
|
|
func testDspResponderInternal(t *testing.T) {
|
|
var reply map[string]any
|
|
var pingReply string
|
|
route := "internal"
|
|
pingEv := utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
Event: map[string]any{
|
|
utils.EventName: "Internal",
|
|
},
|
|
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
utils.OptsRouteID: route,
|
|
},
|
|
}
|
|
ev := utils.TenantWithAPIOpts{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "rsp12345",
|
|
utils.OptsRouteID: route,
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemotePing, pingEv, &pingReply); err != nil {
|
|
t.Error(err)
|
|
} else if pingReply != utils.Pong {
|
|
t.Errorf("Received: %s", pingReply)
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.DispatcherSv1RemoteStatus, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
}
|
|
if reply[utils.NodeID] == nil {
|
|
return
|
|
}
|
|
if strRply := reply[utils.NodeID].(string); strRply != "DispatcherS1" {
|
|
t.Errorf("Expected: DispatcherS1 , received: %s", strRply)
|
|
}
|
|
}
|