mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
209 lines
8.0 KiB
Go
209 lines
8.0 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 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 config
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestRouteSCfgloadFromJsonCfg(t *testing.T) {
|
|
cfgJSON := &RouteSJsonCfg{
|
|
Enabled: utils.BoolPointer(true),
|
|
Indexed_selects: utils.BoolPointer(true),
|
|
String_indexed_fields: &[]string{"*req.index1"},
|
|
Prefix_indexed_fields: &[]string{"*req.index1", "*req.index2"},
|
|
Suffix_indexed_fields: &[]string{"*req.index1", "*req.index2"},
|
|
ExistsIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
Attributes_conns: &[]string{utils.MetaInternal, "conn1"},
|
|
Resources_conns: &[]string{utils.MetaInternal, "conn1"},
|
|
Stats_conns: &[]string{utils.MetaInternal, "conn1"},
|
|
Rals_conns: &[]string{utils.MetaInternal, "conn1"},
|
|
Default_ratio: utils.IntPointer(10),
|
|
Nested_fields: utils.BoolPointer(true),
|
|
Opts: &RoutesOptsJson{
|
|
MaxCost: utils.IntPointer(3),
|
|
Limit: utils.IntPointer(3),
|
|
Offset: utils.IntPointer(3),
|
|
ProfileCount: utils.IntPointer(3),
|
|
},
|
|
}
|
|
expected := &RouteSCfg{
|
|
Enabled: true,
|
|
IndexedSelects: true,
|
|
StringIndexedFields: &[]string{"*req.index1"},
|
|
PrefixIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
SuffixIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
ExistsIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
AttributeSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaAttributes), "conn1"},
|
|
ResourceSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaResources), "conn1"},
|
|
StatSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaStats), "conn1"},
|
|
RALsConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaResponder), "conn1"},
|
|
DefaultRatio: 10,
|
|
NestedFields: true,
|
|
Opts: &RoutesOpts{
|
|
Context: utils.MetaRoutes,
|
|
IgnoreErrors: false,
|
|
|
|
MaxCost: utils.IntPointer(3),
|
|
Limit: utils.IntPointer(3),
|
|
Offset: utils.IntPointer(3),
|
|
ProfileCount: utils.IntPointer(3),
|
|
},
|
|
}
|
|
jsonCfg := NewDefaultCGRConfig()
|
|
if err := jsonCfg.routeSCfg.loadFromJSONCfg(cfgJSON); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, jsonCfg.routeSCfg) {
|
|
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(expected), utils.ToJSON(jsonCfg.routeSCfg))
|
|
}
|
|
jsonCfg.routeSCfg.Opts.loadFromJSONCfg(nil)
|
|
if jsonCfg.routeSCfg.Opts == nil {
|
|
t.Error("expecting jsonCfg.routeSCfg.Opts to be different from nil")
|
|
}
|
|
}
|
|
|
|
func TestRouteSCfgAsMapInterface(t *testing.T) {
|
|
cfgJSONStr := `{
|
|
"routes": {
|
|
|
|
"opts":{
|
|
"*limit":3,
|
|
"*offset":3,
|
|
"*profileCount":3
|
|
},
|
|
},
|
|
}`
|
|
|
|
/* ,*/
|
|
|
|
eMap := map[string]any{
|
|
utils.EnabledCfg: false,
|
|
utils.IndexedSelectsCfg: true,
|
|
utils.PrefixIndexedFieldsCfg: []string{},
|
|
utils.SuffixIndexedFieldsCfg: []string{},
|
|
utils.NestedFieldsCfg: false,
|
|
utils.AttributeSConnsCfg: []string{},
|
|
utils.ResourceSConnsCfg: []string{},
|
|
utils.StatSConnsCfg: []string{},
|
|
utils.RALsConnsCfg: []string{},
|
|
utils.DefaultRatioCfg: 1,
|
|
utils.OptsCfg: map[string]any{
|
|
utils.OptsContext: utils.MetaRoutes,
|
|
utils.MetaIgnoreErrorsCfg: false,
|
|
utils.MetaMaxCostCfg: utils.EmptyString,
|
|
},
|
|
}
|
|
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
|
|
t.Error(err)
|
|
} else if rcv := cgrCfg.routeSCfg.AsMapInterface(); reflect.DeepEqual(eMap, rcv) {
|
|
t.Errorf("Expected %+v, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
|
|
}
|
|
}
|
|
|
|
func TestRouteSCfgAsMapInterface1(t *testing.T) {
|
|
cfgJSONStr := `{
|
|
"routes": {
|
|
"enabled": true,
|
|
"indexed_selects":false,
|
|
"string_indexed_fields": ["*req.string"],
|
|
"prefix_indexed_fields": ["*req.prefix","*req.indexed","*req.fields"],
|
|
"suffix_indexed_fields": ["*req.prefix","*req.indexed"],
|
|
"exists_indexed_fields": ["*req.exists","*req.indexed"],
|
|
"nested_fields": true,
|
|
"attributes_conns": ["*internal:*attributes", "conn1"],
|
|
"resources_conns": ["*internal:*resources", "conn1"],
|
|
"stats_conns": ["*internal:*stats", "conn1"],
|
|
"rals_conns": ["*internal:*responder", "conn1"],
|
|
"default_ratio":2,
|
|
},
|
|
}`
|
|
eMap := map[string]any{
|
|
utils.EnabledCfg: true,
|
|
utils.IndexedSelectsCfg: false,
|
|
utils.StringIndexedFieldsCfg: []string{"*req.string"},
|
|
utils.PrefixIndexedFieldsCfg: []string{"*req.prefix", "*req.indexed", "*req.fields"},
|
|
utils.SuffixIndexedFieldsCfg: []string{"*req.prefix", "*req.indexed"},
|
|
utils.ExistsIndexedFieldsCfg: []string{"*req.exists", "*req.indexed"},
|
|
utils.NestedFieldsCfg: true,
|
|
utils.AttributeSConnsCfg: []string{utils.MetaInternal, "conn1"},
|
|
utils.ResourceSConnsCfg: []string{utils.MetaInternal, "conn1"},
|
|
utils.StatSConnsCfg: []string{utils.MetaInternal, "conn1"},
|
|
utils.RALsConnsCfg: []string{utils.MetaInternal, "conn1"},
|
|
utils.DefaultRatioCfg: 2,
|
|
utils.OptsCfg: map[string]any{
|
|
utils.OptsContext: utils.MetaRoutes,
|
|
utils.MetaIgnoreErrorsCfg: false,
|
|
utils.MetaMaxCostCfg: utils.EmptyString,
|
|
},
|
|
}
|
|
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
|
|
t.Error(err)
|
|
} else if rcv := cgrCfg.routeSCfg.AsMapInterface(); !reflect.DeepEqual(eMap, rcv) {
|
|
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
|
|
}
|
|
}
|
|
|
|
func TestRouteSCfgClone(t *testing.T) {
|
|
ban := &RouteSCfg{
|
|
Enabled: true,
|
|
IndexedSelects: true,
|
|
StringIndexedFields: &[]string{"*req.index1"},
|
|
PrefixIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
SuffixIndexedFields: &[]string{"*req.index1", "*req.index2"},
|
|
AttributeSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaAttributes), "conn1"},
|
|
ResourceSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaResources), "conn1"},
|
|
StatSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaStats), "conn1"},
|
|
RALsConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaResponder), "conn1"},
|
|
DefaultRatio: 10,
|
|
NestedFields: true,
|
|
Opts: &RoutesOpts{
|
|
ProfileCount: utils.IntPointer(0),
|
|
Limit: utils.IntPointer(0),
|
|
Offset: utils.IntPointer(0),
|
|
},
|
|
}
|
|
rcv := ban.Clone()
|
|
if !reflect.DeepEqual(ban, rcv) {
|
|
t.Errorf("Expected: %+v\nReceived: %+v", utils.ToJSON(ban), utils.ToJSON(rcv))
|
|
}
|
|
if rcv.AttributeSConns[1] = ""; ban.AttributeSConns[1] != "conn1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if rcv.ResourceSConns[1] = ""; ban.ResourceSConns[1] != "conn1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if rcv.StatSConns[1] = ""; ban.StatSConns[1] != "conn1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if rcv.RALsConns[1] = ""; ban.RALsConns[1] != "conn1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if (*rcv.StringIndexedFields)[0] = ""; (*ban.StringIndexedFields)[0] != "*req.index1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if (*rcv.PrefixIndexedFields)[0] = ""; (*ban.PrefixIndexedFields)[0] != "*req.index1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
if (*rcv.SuffixIndexedFields)[0] = ""; (*ban.SuffixIndexedFields)[0] != "*req.index1" {
|
|
t.Errorf("Expected clone to not modify the cloned")
|
|
}
|
|
}
|