mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
351 lines
9.8 KiB
Go
351 lines
9.8 KiB
Go
//go:build integration
|
|
// +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 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 (
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
var sTestsDspSts = []func(t *testing.T){
|
|
testDspStsPingFailover,
|
|
testDspStsGetStatFailover,
|
|
|
|
testDspStsPing,
|
|
testDspStsTestAuthKey,
|
|
testDspStsTestAuthKey2,
|
|
testDspStsTestAuthKey3,
|
|
}
|
|
|
|
// Test start here
|
|
func TestDspStatS(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, sTestsDspSts, "TestDspStatS", config1, config2, config3, "tutorial", "oldtutorial", dispDIR)
|
|
}
|
|
|
|
func testDspStsPingFailover(t *testing.T) {
|
|
var reply string
|
|
if err := allEngine.RPC.Call(context.Background(), utils.StatSv1Ping, new(utils.CGREvent), &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
ev := utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1Ping, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
allEngine.stopEngine(t)
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1Ping, &ev, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
allEngine2.stopEngine(t)
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1Ping, &ev, &reply); err == nil {
|
|
t.Errorf("Expected error but received %v and reply %v\n", err, reply)
|
|
}
|
|
allEngine.startEngine(t)
|
|
allEngine2.startEngine(t)
|
|
}
|
|
|
|
func testDspStsGetStatFailover(t *testing.T) {
|
|
var reply []string
|
|
var metrics map[string]string
|
|
expected := []string{"Stats1"}
|
|
args := &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "event1",
|
|
Event: map[string]any{
|
|
utils.EventName: "Event1",
|
|
utils.AccountField: "1001",
|
|
utils.AnswerTime: time.Date(2014, 7, 14, 14, 25, 0, 0, time.UTC),
|
|
utils.Usage: 135 * time.Second,
|
|
utils.Cost: 123.0,
|
|
utils.RunID: utils.MetaDefault,
|
|
utils.Destination: "1002",
|
|
},
|
|
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1ProcessEvent, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(reply, expected) {
|
|
t.Errorf("Expecting: %+v, received: %+v", expected, reply)
|
|
}
|
|
|
|
args2 := utils.TenantIDWithAPIOpts{
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
TenantID: &utils.TenantID{
|
|
Tenant: "cgrates.org",
|
|
ID: "Stats1",
|
|
},
|
|
}
|
|
allEngine.stopEngine(t)
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueStringMetrics,
|
|
args2, &metrics); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
allEngine.startEngine(t)
|
|
allEngine2.stopEngine(t)
|
|
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueStringMetrics,
|
|
args2, &metrics); err == nil || err.Error() != utils.ErrNotFound.Error() {
|
|
t.Errorf("Expected error NOT_FOUND but received %v and reply %v\n", err, reply)
|
|
}
|
|
allEngine2.startEngine(t)
|
|
}
|
|
|
|
func testDspStsPing(t *testing.T) {
|
|
var reply string
|
|
if err := allEngine.RPC.Call(context.Background(), utils.StatSv1Ping, new(utils.CGREvent), &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1Ping, &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
}
|
|
|
|
func testDspStsTestAuthKey(t *testing.T) {
|
|
var reply []string
|
|
args := &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "event1",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1001",
|
|
utils.AnswerTime: time.Date(2014, 7, 14, 14, 25, 0, 0, time.UTC),
|
|
utils.Usage: 135 * time.Second,
|
|
utils.Cost: 123.0,
|
|
utils.PDD: 12 * time.Second},
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1ProcessEvent,
|
|
args, &reply); err == nil || err.Error() != utils.ErrUnauthorizedApi.Error() {
|
|
t.Error(err)
|
|
}
|
|
|
|
args2 := utils.TenantIDWithAPIOpts{
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "12345",
|
|
},
|
|
TenantID: &utils.TenantID{
|
|
Tenant: "cgrates.org",
|
|
ID: "Stats2",
|
|
},
|
|
}
|
|
|
|
var metrics map[string]string
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueStringMetrics,
|
|
args2, &metrics); err == nil || err.Error() != utils.ErrUnauthorizedApi.Error() {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testDspStsTestAuthKey2(t *testing.T) {
|
|
var reply []string
|
|
var metrics map[string]string
|
|
expected := []string{"Stats2"}
|
|
args := &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "event1",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1001",
|
|
utils.AnswerTime: time.Date(2014, 7, 14, 14, 25, 0, 0, time.UTC),
|
|
utils.Usage: 135 * time.Second,
|
|
utils.Cost: 123.0,
|
|
utils.RunID: utils.MetaDefault,
|
|
utils.Destination: "1002"},
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1ProcessEvent, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(reply, expected) {
|
|
t.Errorf("Expecting: %+v, received: %+v", expected, reply)
|
|
}
|
|
|
|
args2 := utils.TenantIDWithAPIOpts{
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
TenantID: &utils.TenantID{
|
|
Tenant: "cgrates.org",
|
|
ID: "Stats2",
|
|
},
|
|
}
|
|
expectedMetrics := map[string]string{
|
|
utils.MetaTCC: "123",
|
|
utils.MetaTCD: "2m15s",
|
|
}
|
|
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueStringMetrics,
|
|
args2, &metrics); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expectedMetrics, metrics) {
|
|
t.Errorf("expecting: %+v, received reply: %s", expectedMetrics, metrics)
|
|
}
|
|
|
|
args = &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "event1",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1002",
|
|
utils.AnswerTime: time.Date(2014, 7, 14, 14, 25, 0, 0, time.UTC),
|
|
utils.Usage: 45 * time.Second,
|
|
utils.RunID: utils.MetaDefault,
|
|
utils.Cost: 10.0,
|
|
utils.Destination: "1001",
|
|
},
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1ProcessEvent, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(reply, expected) {
|
|
t.Errorf("Expecting: %+v, received: %+v", expected, reply)
|
|
}
|
|
|
|
expectedMetrics = map[string]string{
|
|
utils.MetaTCC: "133",
|
|
utils.MetaTCD: "3m0s",
|
|
}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueStringMetrics,
|
|
args2, &metrics); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expectedMetrics, metrics) {
|
|
t.Errorf("expecting: %+v, received reply: %s", expectedMetrics, metrics)
|
|
}
|
|
}
|
|
|
|
func testDspStsTestAuthKey3(t *testing.T) {
|
|
var reply []string
|
|
var metrics map[string]float64
|
|
|
|
args2 := utils.TenantIDWithAPIOpts{
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
TenantID: &utils.TenantID{
|
|
Tenant: "cgrates.org",
|
|
ID: "Stats2",
|
|
},
|
|
}
|
|
expectedMetrics := map[string]float64{
|
|
utils.MetaTCC: 133,
|
|
utils.MetaTCD: 180 * 1e9,
|
|
}
|
|
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueFloatMetrics,
|
|
args2, &metrics); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expectedMetrics, metrics) {
|
|
t.Errorf("expecting: %+v, received reply: %v", expectedMetrics, metrics)
|
|
}
|
|
|
|
estats := []string{"Stats2", "Stats2_1"}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetQueueIDs,
|
|
&utils.TenantWithAPIOpts{
|
|
Tenant: "cgrates.org",
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}, &reply); err != nil {
|
|
t.Error(err)
|
|
}
|
|
sort.Strings(estats)
|
|
sort.Strings(reply)
|
|
if !reflect.DeepEqual(estats, reply) {
|
|
t.Errorf("expecting: %+v, received reply: %v", estats, reply)
|
|
}
|
|
|
|
estats = []string{"Stats2"}
|
|
if err := dispEngine.RPC.Call(context.Background(), utils.StatSv1GetStatQueuesForEvent, &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "GetStats",
|
|
Event: map[string]any{
|
|
utils.AccountField: "1002",
|
|
utils.AnswerTime: time.Date(2014, 7, 14, 14, 25, 0, 0, time.UTC),
|
|
utils.Usage: 45 * time.Second,
|
|
utils.RunID: utils.MetaDefault,
|
|
utils.Cost: 10.0,
|
|
utils.Destination: "1001",
|
|
},
|
|
APIOpts: map[string]any{
|
|
utils.OptsAPIKey: "stat12345",
|
|
},
|
|
}, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(estats, reply) {
|
|
t.Errorf("expecting: %+v, received reply: %v", estats, reply)
|
|
}
|
|
}
|