mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
160 lines
5.6 KiB
Go
160 lines
5.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 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 TestThresholdSCfgloadFromJsonCfgCase1(t *testing.T) {
|
|
cfgJSON := &ThresholdSJsonCfg{
|
|
Enabled: utils.BoolPointer(true),
|
|
Indexed_selects: utils.BoolPointer(true),
|
|
Store_interval: utils.StringPointer("2"),
|
|
String_indexed_fields: &[]string{"*req.prefix"},
|
|
Prefix_indexed_fields: &[]string{"*req.index1"},
|
|
Suffix_indexed_fields: &[]string{"*req.index1"},
|
|
Nested_fields: utils.BoolPointer(true),
|
|
Opts: &ThresholdsOptsJson{
|
|
ProfileIDs: &[]string{},
|
|
ProfileIgnoreFilters: utils.BoolPointer(false),
|
|
},
|
|
}
|
|
expected := &ThresholdSCfg{
|
|
Enabled: true,
|
|
IndexedSelects: true,
|
|
StoreInterval: 2,
|
|
StringIndexedFields: &[]string{"*req.prefix"},
|
|
PrefixIndexedFields: &[]string{"*req.index1"},
|
|
SuffixIndexedFields: &[]string{"*req.index1"},
|
|
NestedFields: true,
|
|
Opts: &ThresholdsOpts{
|
|
ProfileIDs: []string{},
|
|
ProfileIgnoreFilters: false,
|
|
},
|
|
}
|
|
jsonCfg := NewDefaultCGRConfig()
|
|
if err = jsonCfg.thresholdSCfg.loadFromJSONCfg(cfgJSON); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, jsonCfg.thresholdSCfg) {
|
|
t.Errorf("Expected %+v \n, received %+v", utils.ToJSON(expected), utils.ToJSON(jsonCfg.thresholdSCfg))
|
|
}
|
|
var optsCfg *ThresholdsOpts
|
|
var jsonOpt *ThresholdsOptsJson
|
|
optsCfg.loadFromJSONCfg(jsonOpt)
|
|
if reflect.DeepEqual(nil, optsCfg) {
|
|
t.Error("expected nil")
|
|
}
|
|
}
|
|
|
|
func TestThresholdSCfgloadFromJsonCfgCase2(t *testing.T) {
|
|
cfgJSON := &ThresholdSJsonCfg{
|
|
Store_interval: utils.StringPointer("1ss"),
|
|
}
|
|
expected := "time: unknown unit \"ss\" in duration \"1ss\""
|
|
jsonCfg := NewDefaultCGRConfig()
|
|
if err = jsonCfg.thresholdSCfg.loadFromJSONCfg(cfgJSON); err == nil || err.Error() != expected {
|
|
t.Errorf("Expected %+v, received %+v", expected, err)
|
|
}
|
|
}
|
|
|
|
func TestThresholdSCfgAsMapInterfaceCase1(t *testing.T) {
|
|
cfgJSONStr := `{
|
|
"thresholds": {},
|
|
}`
|
|
eMap := map[string]interface{}{
|
|
utils.EnabledCfg: false,
|
|
utils.StoreIntervalCfg: "",
|
|
utils.IndexedSelectsCfg: true,
|
|
utils.PrefixIndexedFieldsCfg: []string{},
|
|
utils.SuffixIndexedFieldsCfg: []string{},
|
|
utils.NestedFieldsCfg: false,
|
|
utils.OptsCfg: map[string]interface{}{
|
|
utils.MetaProfileIDs: []string{},
|
|
utils.MetaProfileIgnoreFiltersCfg: false,
|
|
},
|
|
}
|
|
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
|
|
t.Error(err)
|
|
} else if rcv := cgrCfg.thresholdSCfg.AsMapInterface(); !reflect.DeepEqual(rcv, eMap) {
|
|
t.Errorf("Expextec %+v \n, recevied %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
|
|
}
|
|
}
|
|
|
|
func TestThresholdSCfgAsMapInterfaceCase2(t *testing.T) {
|
|
cfgJSONStr := `{
|
|
"thresholds": {
|
|
"enabled": true,
|
|
"store_interval": "96h",
|
|
"indexed_selects": false,
|
|
"string_indexed_fields": ["*req.string"],
|
|
"prefix_indexed_fields": ["*req.prefix","*req.indexed","*req.fields"],
|
|
"suffix_indexed_fields": ["*req.suffix_indexed_fields1", "*req.suffix_indexed_fields2"],
|
|
"nested_fields": true,
|
|
},
|
|
}`
|
|
eMap := map[string]interface{}{
|
|
utils.EnabledCfg: true,
|
|
utils.StoreIntervalCfg: "96h0m0s",
|
|
utils.IndexedSelectsCfg: false,
|
|
utils.StringIndexedFieldsCfg: []string{"*req.string"},
|
|
utils.PrefixIndexedFieldsCfg: []string{"*req.prefix", "*req.indexed", "*req.fields"},
|
|
utils.SuffixIndexedFieldsCfg: []string{"*req.suffix_indexed_fields1", "*req.suffix_indexed_fields2"},
|
|
utils.NestedFieldsCfg: true,
|
|
utils.OptsCfg: map[string]interface{}{
|
|
utils.MetaProfileIDs: []string{},
|
|
utils.MetaProfileIgnoreFiltersCfg: false,
|
|
},
|
|
}
|
|
if cgrCfg, err := NewCGRConfigFromJSONStringWithDefaults(cfgJSONStr); err != nil {
|
|
t.Error(err)
|
|
} else if rcv := cgrCfg.thresholdSCfg.AsMapInterface(); !reflect.DeepEqual(rcv, eMap) {
|
|
t.Errorf("Expextec %+v \n, recevied %+v", utils.ToJSON(eMap), utils.ToJSON(rcv))
|
|
}
|
|
}
|
|
func TestThresholdSCfgClone(t *testing.T) {
|
|
ban := &ThresholdSCfg{
|
|
Enabled: true,
|
|
IndexedSelects: true,
|
|
StoreInterval: 2,
|
|
StringIndexedFields: &[]string{"*req.index1"},
|
|
PrefixIndexedFields: &[]string{"*req.index1"},
|
|
SuffixIndexedFields: &[]string{"*req.index1"},
|
|
NestedFields: true,
|
|
Opts: &ThresholdsOpts{
|
|
ProfileIDs: []string{},
|
|
},
|
|
}
|
|
rcv := ban.Clone()
|
|
if !reflect.DeepEqual(ban, rcv) {
|
|
t.Errorf("Expected: %+v\nReceived: %+v", utils.ToJSON(ban), utils.ToJSON(rcv))
|
|
}
|
|
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")
|
|
}
|
|
}
|