mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
219 lines
6.9 KiB
Go
219 lines
6.9 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 engine
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestConvertExternalToProfile(t *testing.T) {
|
|
external := &APIAttributeProfile{
|
|
Tenant: "cgrates.org",
|
|
ID: "ATTR_ID",
|
|
Contexts: []string{utils.MetaSessionS, utils.MetaCDRs},
|
|
FilterIDs: []string{"FLTR_ACNT_dan", "FLTR_DST_DE"},
|
|
ActivationInterval: &utils.ActivationInterval{
|
|
ActivationTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
ExpiryTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
},
|
|
Attributes: []*ExternalAttribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Account",
|
|
Value: "1001",
|
|
},
|
|
},
|
|
Weight: 20,
|
|
}
|
|
|
|
expAttr := &AttributeProfile{
|
|
Tenant: "cgrates.org",
|
|
ID: "ATTR_ID",
|
|
Contexts: []string{utils.MetaSessionS, utils.MetaCDRs},
|
|
FilterIDs: []string{"FLTR_ACNT_dan", "FLTR_DST_DE"},
|
|
ActivationInterval: &utils.ActivationInterval{
|
|
ActivationTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
ExpiryTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
},
|
|
Attributes: []*Attribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Account",
|
|
Value: config.NewRSRParsersMustCompile("1001", utils.InfieldSep),
|
|
},
|
|
},
|
|
Weight: 20,
|
|
}
|
|
|
|
rcv, err := external.AsAttributeProfile()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
rcv.Compile()
|
|
|
|
if !reflect.DeepEqual(expAttr, rcv) {
|
|
t.Errorf("Expecting : %+v, received: %+v", expAttr, rcv)
|
|
}
|
|
}
|
|
|
|
func TestConvertExternalToProfileMissing(t *testing.T) {
|
|
external := &APIAttributeProfile{
|
|
Tenant: "cgrates.org",
|
|
ID: "ATTR_ID",
|
|
Contexts: []string{utils.MetaSessionS, utils.MetaCDRs},
|
|
FilterIDs: []string{"FLTR_ACNT_dan", "FLTR_DST_DE"},
|
|
ActivationInterval: &utils.ActivationInterval{
|
|
ActivationTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
ExpiryTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
},
|
|
Attributes: []*ExternalAttribute{},
|
|
Weight: 20,
|
|
}
|
|
|
|
_, err := external.AsAttributeProfile()
|
|
if err == nil || err.Error() != "MANDATORY_IE_MISSING: [Attributes]" {
|
|
t.Error(err)
|
|
}
|
|
|
|
}
|
|
|
|
func TestConvertExternalToProfileMissing2(t *testing.T) {
|
|
external := &APIAttributeProfile{
|
|
Tenant: "cgrates.org",
|
|
ID: "ATTR_ID",
|
|
Contexts: []string{utils.MetaSessionS, utils.MetaCDRs},
|
|
FilterIDs: []string{"FLTR_ACNT_dan", "FLTR_DST_DE"},
|
|
ActivationInterval: &utils.ActivationInterval{
|
|
ActivationTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
ExpiryTime: time.Date(2014, 7, 14, 14, 35, 0, 0, time.UTC),
|
|
},
|
|
Attributes: []*ExternalAttribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Account",
|
|
},
|
|
},
|
|
Weight: 20,
|
|
}
|
|
|
|
_, err := external.AsAttributeProfile()
|
|
if err == nil || err.Error() != "MANDATORY_IE_MISSING: [Value]" {
|
|
t.Error(err)
|
|
}
|
|
|
|
}
|
|
|
|
func TestNewAttributeFromInline(t *testing.T) {
|
|
attrID := "*sum:*req.Field2:10&~*req.NumField&20;*sum:*req.Field3:10&~*req.NumField4&20"
|
|
expAttrPrf1 := &AttributeProfile{
|
|
Tenant: config.CgrConfig().GeneralCfg().DefaultTenant,
|
|
ID: attrID,
|
|
Contexts: []string{utils.MetaAny},
|
|
Attributes: []*Attribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Field2",
|
|
Type: utils.MetaSum,
|
|
Value: config.NewRSRParsersMustCompile("10;~*req.NumField;20", utils.InfieldSep),
|
|
},
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Field3",
|
|
Type: utils.MetaSum,
|
|
Value: config.NewRSRParsersMustCompile("10;~*req.NumField4;20", utils.InfieldSep),
|
|
},
|
|
},
|
|
}
|
|
attr, err := NewAttributeFromInline(config.CgrConfig().GeneralCfg().DefaultTenant, attrID)
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expAttrPrf1, attr) {
|
|
t.Errorf("Expecting %+v, received: %+v", utils.ToJSON(expAttrPrf1), utils.ToJSON(attr))
|
|
}
|
|
}
|
|
|
|
func TestNewAttributeFromInlineWithMultipleRuns(t *testing.T) {
|
|
attrID := "*constant:*req.RequestType:*rated;*constant:*req.Category:call"
|
|
expAttrPrf1 := &AttributeProfile{
|
|
Tenant: config.CgrConfig().GeneralCfg().DefaultTenant,
|
|
ID: attrID,
|
|
Contexts: []string{utils.MetaAny},
|
|
Attributes: []*Attribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "RequestType",
|
|
Type: utils.MetaConstant,
|
|
Value: config.NewRSRParsersMustCompile("*rated", utils.InfieldSep),
|
|
},
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Category",
|
|
Type: utils.MetaConstant,
|
|
Value: config.NewRSRParsersMustCompile("call", utils.InfieldSep),
|
|
},
|
|
},
|
|
}
|
|
attr, err := NewAttributeFromInline(config.CgrConfig().GeneralCfg().DefaultTenant, attrID)
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expAttrPrf1, attr) {
|
|
t.Errorf("Expecting %+v, received: %+v", utils.ToJSON(expAttrPrf1), utils.ToJSON(attr))
|
|
}
|
|
}
|
|
func TestNewAttributeFromInlineWithMultipleRuns2(t *testing.T) {
|
|
attrID := "*constant:*req.RequestType*rated;*constant:*req.Category:call"
|
|
|
|
expErr := fmt.Sprintf("inline parse error for string: <%s>", "*constant:*req.RequestType*rated")
|
|
if _, err := NewAttributeFromInline(config.CgrConfig().GeneralCfg().DefaultTenant, attrID); err == nil || err.Error() != expErr {
|
|
t.Errorf("Expected error: %s received %v", expErr, err)
|
|
}
|
|
|
|
attrID = "*constant:*req.RequestType:`*rated;*constant:*req.Category:call"
|
|
|
|
if _, err := NewAttributeFromInline(config.CgrConfig().GeneralCfg().DefaultTenant, attrID); err == nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func TestNewAttributeFromInlineWithMultipleVaslues(t *testing.T) {
|
|
attrID := "*variable:*req.Category:call_&*req.OriginID;*constant:*req.RequestType:*rated"
|
|
expAttrPrf1 := &AttributeProfile{
|
|
Tenant: config.CgrConfig().GeneralCfg().DefaultTenant,
|
|
ID: attrID,
|
|
Contexts: []string{utils.MetaAny},
|
|
Attributes: []*Attribute{
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "Category",
|
|
Type: utils.MetaVariable,
|
|
Value: config.NewRSRParsersMustCompile("call_;*req.OriginID", utils.InfieldSep),
|
|
},
|
|
{
|
|
Path: utils.MetaReq + utils.NestingSep + "RequestType",
|
|
Type: utils.MetaConstant,
|
|
Value: config.NewRSRParsersMustCompile("*rated", utils.InfieldSep),
|
|
},
|
|
},
|
|
}
|
|
attr, err := NewAttributeFromInline(config.CgrConfig().GeneralCfg().DefaultTenant, attrID)
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expAttrPrf1, attr) {
|
|
t.Errorf("Expecting %+v, received: %+v", utils.ToJSON(expAttrPrf1), utils.ToJSON(attr))
|
|
}
|
|
}
|