mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-16 21:59:53 +05:00
87 lines
2.8 KiB
Go
87 lines
2.8 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 TestCdreCfgClone(t *testing.T) {
|
|
cgrIdRsrs, _ := utils.ParseRSRFields("cgrid", utils.INFIELD_SEP)
|
|
runIdRsrs, _ := utils.ParseRSRFields("mediation_runid", utils.INFIELD_SEP)
|
|
emptyFields := []*CfgCdrField{}
|
|
initContentFlds := []*CfgCdrField{
|
|
&CfgCdrField{Tag: "CgrId",
|
|
Type: "*composed",
|
|
FieldId: "cgrid",
|
|
Value: cgrIdRsrs},
|
|
&CfgCdrField{Tag: "RunId",
|
|
Type: "*composed",
|
|
FieldId: "mediation_runid",
|
|
Value: runIdRsrs},
|
|
}
|
|
initCdreCfg := &CdreConfig{
|
|
CdrFormat: "csv",
|
|
FieldSeparator: rune(','),
|
|
DataUsageMultiplyFactor: 1.0,
|
|
CostMultiplyFactor: 1.0,
|
|
ExportDirectory: "/var/spool/cgrates/cdre",
|
|
ContentFields: initContentFlds,
|
|
}
|
|
eClnContentFlds := []*CfgCdrField{
|
|
&CfgCdrField{Tag: "CgrId",
|
|
Type: "*composed",
|
|
FieldId: "cgrid",
|
|
Value: cgrIdRsrs},
|
|
&CfgCdrField{Tag: "RunId",
|
|
Type: "*composed",
|
|
FieldId: "mediation_runid",
|
|
Value: runIdRsrs},
|
|
}
|
|
eClnCdreCfg := &CdreConfig{
|
|
CdrFormat: "csv",
|
|
FieldSeparator: rune(','),
|
|
DataUsageMultiplyFactor: 1.0,
|
|
CostMultiplyFactor: 1.0,
|
|
ExportDirectory: "/var/spool/cgrates/cdre",
|
|
HeaderFields: emptyFields,
|
|
ContentFields: eClnContentFlds,
|
|
TrailerFields: emptyFields,
|
|
}
|
|
clnCdreCfg := initCdreCfg.Clone()
|
|
if !reflect.DeepEqual(eClnCdreCfg, clnCdreCfg) {
|
|
t.Errorf("Cloned result: %+v", clnCdreCfg)
|
|
}
|
|
initCdreCfg.DataUsageMultiplyFactor = 1024.0
|
|
if !reflect.DeepEqual(eClnCdreCfg, clnCdreCfg) { // MOdifying a field after clone should not affect cloned instance
|
|
t.Errorf("Cloned result: %+v", clnCdreCfg)
|
|
}
|
|
initContentFlds[0].Tag = "Destination"
|
|
if !reflect.DeepEqual(eClnCdreCfg, clnCdreCfg) { // MOdifying a field after clone should not affect cloned instance
|
|
t.Errorf("Cloned result: %+v", clnCdreCfg)
|
|
}
|
|
clnCdreCfg.ContentFields[0].FieldId = "destination"
|
|
if initCdreCfg.ContentFields[0].FieldId != "cgrid" {
|
|
t.Error("Unexpected change of FieldId: ", initCdreCfg.ContentFields[0].FieldId)
|
|
}
|
|
|
|
}
|