mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-22 07:38:45 +05:00
496 lines
14 KiB
Go
496 lines
14 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 dispatchers
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
var sTestsDspCDRs = []func(t *testing.T){
|
|
testDspCDRsPing,
|
|
testDspCDRsProcessEvent,
|
|
testDspCDRsCountCDR,
|
|
testDspCDRsGetCDR,
|
|
testDspCDRsGetCDRWithoutTenant,
|
|
testDspCDRsProcessCDR,
|
|
testDspCDRsGetCDR2,
|
|
testDspCDRsProcessExternalCDR,
|
|
testDspCDRsGetCDR3,
|
|
}
|
|
|
|
var sTestsDspCDRsWithoutAuth = []func(t *testing.T){
|
|
testDspCDRsPingNoAuth,
|
|
testDspCDRsProcessEventNoAuth,
|
|
testDspCDRsCountCDRNoAuth,
|
|
testDspCDRsGetCDRNoAuth,
|
|
testDspCDRsGetCDRNoAuthWithoutTenant,
|
|
testDspCDRsProcessCDRNoAuth,
|
|
testDspCDRsGetCDR2NoAuth,
|
|
testDspCDRsProcessExternalCDRNoAuth,
|
|
testDspCDRsGetCDR3NoAuth,
|
|
}
|
|
|
|
//Test start here
|
|
func TestDspCDRsITMySQL(t *testing.T) {
|
|
testDsp(t, sTestsDspCDRs, "TestDspCDRs", "all", "all2", "dispatchers", "tutorial", "oldtutorial", "dispatchers")
|
|
}
|
|
|
|
func TestDspCDRsITMySQLWithoutAuth(t *testing.T) {
|
|
testDsp(t, sTestsDspCDRsWithoutAuth, "TestDspCDRsWithoutAuth", "all", "all2", "dispatchers_no_attributes", "tutorial", "oldtutorial", "dispatchers")
|
|
}
|
|
|
|
func TestDspCDRsITMongo(t *testing.T) {
|
|
testDsp(t, sTestsDspCDRs, "TestDspCDRs", "all", "all2", "dispatchers_mongo", "tutorial", "oldtutorial", "dispatchers")
|
|
}
|
|
|
|
func testDspCDRsPing(t *testing.T) {
|
|
var reply string
|
|
if err := allEngine.RCP.Call(utils.CDRsV1Ping, new(utils.CGREvent), &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1Ping, &utils.CGREventWithArgDispatcher{
|
|
CGREvent: &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessEvent(t *testing.T) {
|
|
var reply string
|
|
args := &engine.ArgV1ProcessEvent{
|
|
CGREvent: utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
Event: map[string]interface{}{
|
|
utils.OriginID: "testDspCDRsProcessEvent",
|
|
utils.OriginHost: "192.168.1.1",
|
|
utils.Source: "testDspCDRsProcessEvent",
|
|
utils.RequestType: utils.META_RATED,
|
|
utils.Account: "1001",
|
|
utils.Subject: "1001",
|
|
utils.Destination: "1002",
|
|
utils.AnswerTime: time.Date(2018, 8, 24, 16, 00, 26, 0, time.UTC),
|
|
utils.Usage: time.Duration(1) * time.Minute,
|
|
"field_extr1": "val_extr1",
|
|
"fieldextr2": "valextr2",
|
|
},
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessEvent, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsCountCDR(t *testing.T) {
|
|
var reply int64
|
|
args := &utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1CountCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsGetCDR(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "9ee4c71fcd67eef5fb25a4bb3f190487de3073f5" {
|
|
t.Errorf("Expected: 9ee4c71fcd67eef5fb25a4bb3f190487de3073f5 , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsGetCDRWithoutTenant(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "9ee4c71fcd67eef5fb25a4bb3f190487de3073f5" {
|
|
t.Errorf("Expected: 9ee4c71fcd67eef5fb25a4bb3f190487de3073f5 , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessCDR(t *testing.T) {
|
|
var reply string
|
|
args := &engine.CDRWithArgDispatcher{
|
|
CDR: &engine.CDR{
|
|
Tenant: "cgrates.org",
|
|
OriginID: "testDspCDRsProcessCDR",
|
|
OriginHost: "192.168.1.1",
|
|
Source: "testDspCDRsProcessCDR",
|
|
RequestType: utils.META_RATED,
|
|
Account: "1001",
|
|
Subject: "1001",
|
|
Destination: "1002",
|
|
AnswerTime: time.Date(2018, 8, 24, 16, 00, 26, 0, time.UTC),
|
|
Usage: time.Duration(2) * time.Minute,
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessCDR, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsGetCDR2(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
OriginIDs: []string{"testDspCDRsProcessCDR"},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "f08dfd32930b6bea326bb8ec4e38ab03d781c0bf" {
|
|
t.Errorf("Expected: f08dfd32930b6bea326bb8ec4e38ab03d781c0bf , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessExternalCDR(t *testing.T) {
|
|
var reply string
|
|
args := &engine.ExternalCDRWithArgDispatcher{
|
|
ExternalCDR: &engine.ExternalCDR{
|
|
ToR: utils.VOICE,
|
|
OriginID: "testDspCDRsProcessExternalCDR",
|
|
OriginHost: "127.0.0.1",
|
|
Source: utils.UNIT_TEST,
|
|
RequestType: utils.META_RATED,
|
|
Tenant: "cgrates.org",
|
|
Category: "call",
|
|
Account: "1003",
|
|
Subject: "1003",
|
|
Destination: "1001",
|
|
SetupTime: "2014-08-04T13:00:00Z",
|
|
AnswerTime: "2014-08-04T13:00:07Z",
|
|
Usage: "1s",
|
|
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessExternalCDR, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsGetCDR3(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1003"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
OriginIDs: []string{"testDspCDRsProcessExternalCDR"},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
ArgDispatcher: &utils.ArgDispatcher{
|
|
APIKey: utils.StringPointer("cdrs12345"),
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "8ae63781b39f3265d014d2ba6a70437172fba46d" {
|
|
t.Errorf("Expected: 8ae63781b39f3265d014d2ba6a70437172fba46d , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsPingNoAuth(t *testing.T) {
|
|
var reply string
|
|
if err := allEngine.RCP.Call(utils.CDRsV1Ping, new(utils.CGREvent), &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1Ping, &utils.CGREventWithArgDispatcher{
|
|
CGREvent: &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
}, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.Pong {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessEventNoAuth(t *testing.T) {
|
|
var reply string
|
|
args := &engine.ArgV1ProcessEvent{
|
|
CGREvent: utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
Event: map[string]interface{}{
|
|
utils.OriginID: "testDspCDRsProcessEvent",
|
|
utils.OriginHost: "192.168.1.1",
|
|
utils.Source: "testDspCDRsProcessEvent",
|
|
utils.RequestType: utils.META_RATED,
|
|
utils.Account: "1001",
|
|
utils.Subject: "1001",
|
|
utils.Destination: "1002",
|
|
utils.AnswerTime: time.Date(2018, 8, 24, 16, 00, 26, 0, time.UTC),
|
|
utils.Usage: time.Duration(1) * time.Minute,
|
|
"field_extr1": "val_extr1",
|
|
"fieldextr2": "valextr2",
|
|
},
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessEvent, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsCountCDRNoAuth(t *testing.T) {
|
|
var reply int64
|
|
args := &utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1CountCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsGetCDRNoAuth(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "9ee4c71fcd67eef5fb25a4bb3f190487de3073f5" {
|
|
t.Errorf("Expected: 9ee4c71fcd67eef5fb25a4bb3f190487de3073f5 , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsGetCDRNoAuthWithoutTenant(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "9ee4c71fcd67eef5fb25a4bb3f190487de3073f5" {
|
|
t.Errorf("Expected: 9ee4c71fcd67eef5fb25a4bb3f190487de3073f5 , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessCDRNoAuth(t *testing.T) {
|
|
var reply string
|
|
args := &engine.CDRWithArgDispatcher{
|
|
CDR: &engine.CDR{
|
|
Tenant: "cgrates.org",
|
|
OriginID: "testDspCDRsProcessCDR",
|
|
OriginHost: "192.168.1.1",
|
|
Source: "testDspCDRsProcessCDR",
|
|
RequestType: utils.META_RATED,
|
|
Account: "1001",
|
|
Subject: "1001",
|
|
Destination: "1002",
|
|
AnswerTime: time.Date(2018, 8, 24, 16, 00, 26, 0, time.UTC),
|
|
Usage: time.Duration(2) * time.Minute,
|
|
},
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessCDR, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsGetCDR2NoAuth(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1001"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
OriginIDs: []string{"testDspCDRsProcessCDR"},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "f08dfd32930b6bea326bb8ec4e38ab03d781c0bf" {
|
|
t.Errorf("Expected: f08dfd32930b6bea326bb8ec4e38ab03d781c0bf , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|
|
|
|
func testDspCDRsProcessExternalCDRNoAuth(t *testing.T) {
|
|
var reply string
|
|
args := &engine.ExternalCDRWithArgDispatcher{
|
|
ExternalCDR: &engine.ExternalCDR{
|
|
ToR: utils.VOICE,
|
|
OriginID: "testDspCDRsProcessExternalCDR",
|
|
OriginHost: "127.0.0.1",
|
|
Source: utils.UNIT_TEST,
|
|
RequestType: utils.META_RATED,
|
|
Tenant: "cgrates.org",
|
|
Category: "call",
|
|
Account: "1003",
|
|
Subject: "1003",
|
|
Destination: "1001",
|
|
SetupTime: "2014-08-04T13:00:00Z",
|
|
AnswerTime: "2014-08-04T13:00:07Z",
|
|
Usage: "1s",
|
|
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
|
|
},
|
|
}
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1ProcessExternalCDR, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if reply != utils.OK {
|
|
t.Errorf("Received: %s", reply)
|
|
}
|
|
time.Sleep(100 * time.Millisecond)
|
|
}
|
|
|
|
func testDspCDRsGetCDR3NoAuth(t *testing.T) {
|
|
var reply []*engine.CDR
|
|
args := utils.RPCCDRsFilterWithArgDispatcher{
|
|
RPCCDRsFilter: &utils.RPCCDRsFilter{
|
|
Accounts: []string{"1003"},
|
|
RunIDs: []string{utils.MetaDefault},
|
|
OriginIDs: []string{"testDspCDRsProcessExternalCDR"},
|
|
},
|
|
TenantArg: &utils.TenantArg{
|
|
Tenant: "cgrates.org",
|
|
},
|
|
}
|
|
|
|
if err := dispEngine.RCP.Call(utils.CDRsV1GetCDRs, args, &reply); err != nil {
|
|
t.Error(err)
|
|
} else if len(reply) != 1 {
|
|
t.Errorf("Received: %+v", reply)
|
|
} else if reply[0].CGRID != "8ae63781b39f3265d014d2ba6a70437172fba46d" {
|
|
t.Errorf("Expected: 8ae63781b39f3265d014d2ba6a70437172fba46d , received:%v", reply[0].CGRID)
|
|
}
|
|
}
|