Files
cgrates/config/resourcescfg_test.go
2025-10-29 19:42:40 +01:00

187 lines
6.6 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"
"time"
"github.com/cgrates/cgrates/utils"
)
func TestResourceSConfigloadFromJsonCfgCase1(t *testing.T) {
cfgJSON := &ResourceSJsonCfg{
Enabled: utils.BoolPointer(true),
Indexed_selects: utils.BoolPointer(true),
Thresholds_conns: &[]string{utils.MetaInternal, "*conn1"},
Store_interval: utils.StringPointer("2s"),
String_indexed_fields: &[]string{"*req.index1"},
Prefix_indexed_fields: &[]string{"*req.index1"},
Suffix_indexed_fields: &[]string{"*req.index1"},
ExistsIndexedFields: &[]string{"*req.index1"},
Nested_fields: utils.BoolPointer(true),
}
expected := &ResourceSConfig{
Enabled: true,
IndexedSelects: true,
StoreInterval: 2 * time.Second,
ThresholdSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaThresholds), "*conn1"},
StringIndexedFields: &[]string{"*req.index1"},
PrefixIndexedFields: &[]string{"*req.index1"},
SuffixIndexedFields: &[]string{"*req.index1"},
ExistsIndexedFields: &[]string{"*req.index1"},
NestedFields: true,
Opts: &ResourcesOpts{
Units: 1,
},
}
cfg := NewDefaultCGRConfig()
if err := cfg.resourceSCfg.loadFromJSONCfg(cfgJSON); err != nil {
t.Error(err)
} else if !reflect.DeepEqual(expected, cfg.resourceSCfg) {
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(expected), utils.ToJSON(cfg.resourceSCfg))
}
cfg.resourceSCfg.Opts.loadFromJSONCfg(nil)
if reflect.DeepEqual(nil, cfg.resourceSCfg.Opts) {
t.Error("expected nil")
}
cfgJson := &ResourcesOptsJson{
UsageTTL: utils.StringPointer("1000"),
}
if err := cfg.resourceSCfg.Opts.loadFromJSONCfg(cfgJson); err != nil {
t.Error(err)
}
cfgJsonFail := &ResourcesOptsJson{
UsageTTL: utils.StringPointer("test"),
}
if err := cfg.resourceSCfg.Opts.loadFromJSONCfg(cfgJsonFail); err == nil {
t.Error(err)
}
}
func TestResourceSConfigloadFromJsonCfgCase2(t *testing.T) {
cfgJSON := &ResourceSJsonCfg{
Store_interval: utils.StringPointer("2ss"),
}
expected := "time: unknown unit \"ss\" in duration \"2ss\""
jsonCfg := NewDefaultCGRConfig()
if err := jsonCfg.resourceSCfg.loadFromJSONCfg(cfgJSON); err == nil || err.Error() != expected {
t.Errorf("Expected %+v, received %+v", expected, err)
}
}
func TestResourceSConfigAsMapInterface(t *testing.T) {
cfgJSONStr := `{
"resources": {},
}`
eMap := map[string]any{
utils.EnabledCfg: false,
utils.StoreIntervalCfg: utils.EmptyString,
utils.ThresholdSConnsCfg: []string{},
utils.IndexedSelectsCfg: true,
utils.PrefixIndexedFieldsCfg: []string{},
utils.SuffixIndexedFieldsCfg: []string{},
utils.ExistsIndexedFieldsCfg: []string{},
utils.NestedFieldsCfg: false,
utils.OptsCfg: map[string]any{
utils.MetaUnitsCfg: 1.,
utils.MetaUsageIDCfg: "",
},
}
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
t.Error(err)
} else if rcv := cgrCfg.resourceSCfg.AsMapInterface(); !reflect.DeepEqual(rcv, eMap) {
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
}
}
func TestResourceSConfigAsMapInterface1(t *testing.T) {
cfgJSONStr := `{
"resources": {
"enabled": true,
"store_interval": "7m",
"thresholds_conns": ["*internal:*thresholds", "*conn1"],
"indexed_selects":true,
"string_indexed_fields": ["*req.index1"],
"prefix_indexed_fields": ["*req.prefix_indexed_fields1","*req.prefix_indexed_fields2"],
"suffix_indexed_fields": ["*req.prefix_indexed_fields1"],
"exists_indexed_fields": ["*req.exists_indexed_field"],
"nested_fields": true,
"opts":{
"*usageTTL":"1"
}
},
}`
eMap := map[string]any{
utils.EnabledCfg: true,
utils.StoreIntervalCfg: "7m0s",
utils.ThresholdSConnsCfg: []string{utils.MetaInternal, "*conn1"},
utils.IndexedSelectsCfg: true,
utils.StringIndexedFieldsCfg: []string{"*req.index1"},
utils.PrefixIndexedFieldsCfg: []string{"*req.prefix_indexed_fields1", "*req.prefix_indexed_fields2"},
utils.SuffixIndexedFieldsCfg: []string{"*req.prefix_indexed_fields1"},
utils.ExistsIndexedFieldsCfg: []string{"*req.exists_indexed_field"},
utils.NestedFieldsCfg: true,
utils.OptsCfg: map[string]any{
utils.MetaUnitsCfg: 1.,
utils.MetaUsageIDCfg: "",
utils.MetaUsageTTLCfg: 1 * time.Nanosecond,
},
}
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
t.Error(err)
} else if rcv := cgrCfg.resourceSCfg.AsMapInterface(); !reflect.DeepEqual(rcv, eMap) {
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
}
}
func TestResourceSConfigClone(t *testing.T) {
ban := &ResourceSConfig{
Enabled: true,
IndexedSelects: true,
StoreInterval: 2 * time.Second,
ThresholdSConns: []string{utils.ConcatenatedKey(utils.MetaInternal, utils.MetaThresholds), "*conn1"},
StringIndexedFields: &[]string{"*req.index1"},
PrefixIndexedFields: &[]string{"*req.index1"},
SuffixIndexedFields: &[]string{"*req.index1"},
NestedFields: true,
Opts: &ResourcesOpts{
UsageTTL: utils.DurationPointer(1 * time.Second),
},
}
rcv := ban.Clone()
if !reflect.DeepEqual(ban, rcv) {
t.Errorf("Expected: %+v\nReceived: %+v", utils.ToJSON(ban), utils.ToJSON(rcv))
}
if rcv.ThresholdSConns[1] = ""; ban.ThresholdSConns[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")
}
}