Files
cgrates/dispatchers/config_it_test.go
2019-04-18 12:29:07 +03:00

64 lines
1.9 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 (
"reflect"
"testing"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/utils"
)
var sTestsDspConfig = []func(t *testing.T){
testDspConfigSv1GetJSONSection,
}
//Test start here
func TestDspConfigITMySQL(t *testing.T) {
testDsp(t, sTestsDspConfig, "TestDspConfigITMySQL", "all", "all2", "dispatchers", "tutorial", "oldtutorial", "dispatchers")
}
func testDspConfigSv1GetJSONSection(t *testing.T) {
expected := map[string]interface{}{
"HTTPListen": ":6080",
"HTTPTLSListen": "127.0.0.1:2280",
"RPCGOBListen": ":6013",
"RPCGOBTLSListen": "127.0.0.1:2023",
"RPCJSONListen": ":6012",
"RPCJSONTLSListen": "127.0.0.1:2022",
}
var reply map[string]interface{}
if err := dispEngine.RCP.Call(utils.ConfigSv1GetJSONSection, &config.StringWithArgDispatcher{
TenantArg: utils.TenantArg{
Tenant: "cgrates.org",
},
ArgDispatcher: &utils.ArgDispatcher{
APIKey: utils.StringPointer("cfg12345"),
},
Section: "listen",
}, &reply); err != nil {
t.Error(err)
} else if !reflect.DeepEqual(expected, reply) {
t.Errorf("Expected: %+v, received: %+v", expected, reply)
}
}