/* 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 */ package config import ( "reflect" "testing" "github.com/cgrates/cgrates/utils" ) func TestRadiusAgentCfgloadFromJsonCfg(t *testing.T) { var racfg, expected RadiusAgentCfg if err := racfg.loadFromJsonCfg(nil, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(racfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, racfg) } if err := racfg.loadFromJsonCfg(new(RadiusAgentJsonCfg), utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(racfg, expected) { t.Errorf("Expected: %+v ,recived: %+v", expected, racfg) } cfgJSONStr := `{ "radius_agent": { "enabled": false, // enables the radius agent: "listen_net": "udp", // network to listen on "listen_auth": "127.0.0.1:1812", // address where to listen for radius authentication requests "listen_acct": "127.0.0.1:1813", // address where to listen for radius accounting requests "client_secrets": { // hash containing secrets for clients connecting here <*default|$client_ip> "*default": "CGRateS.org" }, "client_dictionaries": { // per client path towards directory holding additional dictionaries to load (extra to RFC) "*default": "/usr/share/cgrates/radius/dict/", // key represents the client IP or catch-all <*default|$client_ip> }, "sessions_conns": ["*internal"], "request_processors": [], }, }` expected = RadiusAgentCfg{ ListenNet: "udp", ListenAuth: "127.0.0.1:1812", ListenAcct: "127.0.0.1:1813", ClientSecrets: map[string]string{utils.MetaDefault: "CGRateS.org"}, ClientDictionaries: map[string]string{utils.MetaDefault: "/usr/share/cgrates/radius/dict/"}, SessionSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaSessionS)}, } if jsnCfg, err := NewCgrJsonCfgFromBytes([]byte(cfgJSONStr)); err != nil { t.Error(err) } else if jsnRaCfg, err := jsnCfg.RadiusAgentJsonCfg(); err != nil { t.Error(err) } else if err = racfg.loadFromJsonCfg(jsnRaCfg, utils.INFIELD_SEP); err != nil { t.Error(err) } else if !reflect.DeepEqual(expected, racfg) { t.Errorf("Expected: %+v , recived: %+v", utils.ToJSON(expected), utils.ToJSON(racfg)) } } func TestRadiusAgentCfgAsMapInterface(t *testing.T) { cfgJSONStr := `{ "radius_agent": { "enabled": true, "listen_auth": "127.0.0.1:1816", "listen_acct": "127.0.0.1:1892", "client_dictionaries": { "*default": "/usr/share/cgrates/", }, "sessions_conns": ["*conn1","*conn2"], "request_processors": [ { "id": "OutboundAUTHDryRun", "filters": ["*string:~*req.request_type:OutboundAUTH","*string:~*req.Msisdn:497700056231"], "tenant": "cgrates.org", "flags": ["*dryrun"], "request_fields":[], "reply_fields":[ {"tag": "Allow", "path": "*rep.response.Allow", "type": "*constant", "value": "1", "mandatory": true}, ], },], }, }` eMap := map[string]interface{}{ utils.EnabledCfg: true, utils.ListenNetCfg: "udp", utils.ListenAuthCfg: "127.0.0.1:1816", utils.ListenAcctCfg: "127.0.0.1:1892", utils.ClientSecretsCfg: map[string]interface{}{ utils.MetaDefault: "CGRateS.org", }, utils.ClientDictionariesCfg: map[string]interface{}{ utils.MetaDefault: "/usr/share/cgrates/", }, utils.SessionSConnsCfg: []string{"*conn1", "*conn2"}, utils.RequestProcessorsCfg: []map[string]interface{}{ { utils.IdCfg: "OutboundAUTHDryRun", utils.FilterSCfg: []string{"*string:~*req.request_type:OutboundAUTH", "*string:~*req.Msisdn:497700056231"}, utils.TenantCfg: "cgrates.org", utils.FlagsCfg: []string{"*dryrun"}, utils.TimezoneCfg: "", utils.RequestFieldsCfg: []map[string]interface{}{}, utils.ReplyFieldsCfg: []map[string]interface{}{ {utils.TagCfg: "Allow", utils.PathCfg: "*rep.response.Allow", utils.TypeCfg: "*constant", utils.ValueCfg: "1", utils.MandatoryCfg: true}, }, }, }, } if cgrCfg, err := NewCGRConfigFromJsonStringWithDefaults(cfgJSONStr); err != nil { t.Error(err) } else if rcv := cgrCfg.radiusAgentCfg.AsMapInterface(cgrCfg.generalCfg.RSRSep); !reflect.DeepEqual(rcv, eMap) { t.Errorf("Expecetd %+v \n, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv)) } } func TestRadiusAgentCfgAsMapInterface1(t *testing.T) { cfgJSONStr := `{ "radius_agent": {}, }` eMap := map[string]interface{}{ utils.EnabledCfg: false, utils.ListenNetCfg: "udp", utils.ListenAuthCfg: "127.0.0.1:1812", utils.ListenAcctCfg: "127.0.0.1:1813", utils.ClientSecretsCfg: map[string]interface{}{ utils.MetaDefault: "CGRateS.org", }, utils.ClientDictionariesCfg: map[string]interface{}{ utils.MetaDefault: "/usr/share/cgrates/radius/dict/", }, utils.SessionSConnsCfg: []string{"*internal"}, utils.RequestProcessorsCfg: []map[string]interface{}{}, } if cgrCfg, err := NewCGRConfigFromJsonStringWithDefaults(cfgJSONStr); err != nil { t.Error(err) } else if rcv := cgrCfg.radiusAgentCfg.AsMapInterface(cgrCfg.generalCfg.RSRSep); !reflect.DeepEqual(rcv, eMap) { t.Errorf("Expecetd %+v \n, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv)) } }