mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
93 lines
3.2 KiB
Go
93 lines
3.2 KiB
Go
/*
|
|
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 config
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestKamAgentCfgloadFromJsonCfg(t *testing.T) {
|
|
var kamagcfg, expected KamAgentCfg
|
|
if err := kamagcfg.loadFromJsonCfg(nil); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(kamagcfg, expected) {
|
|
t.Errorf("Expected: %+v ,recived: %+v", expected, kamagcfg)
|
|
}
|
|
if err := kamagcfg.loadFromJsonCfg(new(KamAgentJsonCfg)); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(kamagcfg, expected) {
|
|
t.Errorf("Expected: %+v ,recived: %+v", expected, kamagcfg)
|
|
}
|
|
cfgJSONStr := `{
|
|
"kamailio_agent": {
|
|
"enabled": false, // starts SessionManager service: <true|false>
|
|
"sessions_conns": [
|
|
{"address": "*internal"} // connection towards session service: <*internal>
|
|
],
|
|
"create_cdr": false, // create CDR out of events and sends them to CDRS component
|
|
"timezone": "", // timezone of the Kamailio server
|
|
"evapi_conns":[ // instantiate connections to multiple Kamailio servers
|
|
{"address": "127.0.0.1:8448", "reconnects": 5}
|
|
],
|
|
},
|
|
}`
|
|
expected = KamAgentCfg{
|
|
SessionSConns: []*RemoteHost{{Address: "*internal"}},
|
|
EvapiConns: []*KamConnCfg{{Address: "127.0.0.1:8448", Reconnects: 5}},
|
|
}
|
|
if jsnCfg, err := NewCgrJsonCfgFromBytes([]byte(cfgJSONStr)); err != nil {
|
|
t.Error(err)
|
|
} else if jsnKamAgCfg, err := jsnCfg.KamAgentJsonCfg(); err != nil {
|
|
t.Error(err)
|
|
} else if err = kamagcfg.loadFromJsonCfg(jsnKamAgCfg); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, kamagcfg) {
|
|
t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(kamagcfg))
|
|
}
|
|
}
|
|
|
|
func TestKamConnCfgloadFromJsonCfg(t *testing.T) {
|
|
var kamcocfg, expected KamConnCfg
|
|
if err := kamcocfg.loadFromJsonCfg(nil); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(kamcocfg, expected) {
|
|
t.Errorf("Expected: %+v ,recived: %+v", expected, kamcocfg)
|
|
}
|
|
if err := kamcocfg.loadFromJsonCfg(new(KamConnJsonCfg)); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(kamcocfg, expected) {
|
|
t.Errorf("Expected: %+v ,recived: %+v", expected, kamcocfg)
|
|
}
|
|
json := &KamConnJsonCfg{
|
|
Address: utils.StringPointer("127.0.0.1:8448"),
|
|
Reconnects: utils.IntPointer(5),
|
|
}
|
|
expected = KamConnCfg{
|
|
Address: "127.0.0.1:8448",
|
|
Reconnects: 5,
|
|
}
|
|
if err = kamcocfg.loadFromJsonCfg(json); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, kamcocfg) {
|
|
t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(kamcocfg))
|
|
}
|
|
}
|