Files
cgrates/engine/suretax_test.go
2024-07-01 20:37:09 +02:00

201 lines
6.5 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 (
"encoding/json"
"reflect"
"testing"
"time"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/utils"
)
func TestNewSureTaxRequest(t *testing.T) {
CGRID := utils.Sha1("dsafdsaf", time.Date(2013, 11, 7, 8, 42, 20, 0, time.UTC).String())
cdr := &CDR{CGRID: CGRID, OrderID: 123, ToR: utils.MetaVoice,
OriginID: "dsafdsaf", OriginHost: "192.168.1.1",
Source: utils.UnitTest, RequestType: utils.MetaRated,
Tenant: "cgrates.org", Category: "call", Account: "1001",
Subject: "1001", Destination: "1002",
SetupTime: time.Date(2013, 11, 7, 8, 42, 20, 0, time.UTC),
AnswerTime: time.Date(2013, 11, 7, 8, 42, 26, 0, time.UTC),
RunID: utils.MetaDefault,
Usage: 12 * time.Second,
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
Cost: 1.01, PreRated: true,
}
cfg := config.NewDefaultCGRConfig()
stCfg := cfg.SureTaxCfg()
stCfg.ClientNumber = "000000000"
stCfg.ValidationKey = "19491161-F004-4F44-BDB3-E976D6739A64"
stCfg.Timezone = time.UTC
eSTRequest := &STRequest{
ClientNumber: "000000000",
ValidationKey: "19491161-F004-4F44-BDB3-E976D6739A64",
DataYear: "2013",
DataMonth: "11",
TotalRevenue: 1.01,
ReturnFileCode: "0",
ClientTracking: CGRID,
ResponseGroup: "03",
ResponseType: "D4",
ItemList: []*STRequestItem{
{
CustomerNumber: "1001",
OrigNumber: "1001",
TermNumber: "1002",
BillToNumber: "",
TransDate: "2013-11-07T08:42:26",
Revenue: 1.01,
Units: 1,
UnitType: "00",
Seconds: 12,
TaxIncludedCode: "0",
TaxSitusRule: "04",
TransTypeCode: "010101",
SalesTypeCode: "R",
RegulatoryCode: "03",
TaxExemptionCodeList: []string{},
},
},
}
jsnReq, _ := json.Marshal(eSTRequest)
eSureTaxRequest := &SureTaxRequest{Request: string(jsnReq)}
if stReq, err := NewSureTaxRequest(cdr, stCfg); err != nil {
t.Error(err)
} else if !reflect.DeepEqual(eSureTaxRequest, stReq) {
t.Errorf("Expecting:\n%s\nReceived:\n%s", string(eSureTaxRequest.Request), string(stReq.Request))
}
}
func TestSuretaxNewSureTaxRequestNilCfg(t *testing.T) {
CGRID := utils.Sha1("testOriginID", time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC).String())
cdr := &CDR{CGRID: CGRID,
OrderID: 123,
ToR: utils.MetaVoice,
OriginID: "testOriginID",
OriginHost: "192.168.1.1",
Source: utils.UnitTest,
RequestType: utils.MetaRated,
Tenant: "cgrates.org",
Category: "call",
Account: "1001",
Subject: "1001",
Destination: "1002",
SetupTime: time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC),
AnswerTime: time.Date(2021, 1, 1, 8, 42, 26, 0, time.UTC),
RunID: utils.MetaDefault,
Usage: 12 * time.Second,
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
Cost: 1.01, PreRated: true,
}
var stCfg *config.SureTaxCfg
experr := "invalid SureTax config"
stReq, err := NewSureTaxRequest(cdr, stCfg)
if err == nil || err.Error() != experr {
t.Fatalf("\nExpected: %q, \nReceived: %q", experr, err)
}
if stReq != nil {
t.Errorf("\nExpected: <%+v>, \nReceived: <%+v>",
nil, stReq)
}
}
func TestSuretaxNewSureTaxRequestInvalidUnits(t *testing.T) {
CGRID := utils.Sha1("testOriginID", time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC).String())
cdr := &CDR{CGRID: CGRID, OrderID: 123, ToR: utils.MetaVoice,
OriginID: "testOriginID", OriginHost: "192.168.1.1",
Source: utils.UnitTest, RequestType: utils.MetaRated,
Tenant: "cgrates.org", Category: "call", Account: "1001",
Subject: "1001", Destination: "1002",
SetupTime: time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC),
AnswerTime: time.Date(2021, 1, 1, 8, 42, 26, 0, time.UTC),
RunID: utils.MetaDefault,
Usage: 12 * time.Second,
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
Cost: 1.01, PreRated: true,
}
cfg := config.NewDefaultCGRConfig()
stCfg := cfg.SureTaxCfg()
stCfg.Units = nil
stCfg.ClientNumber = "000000000"
stCfg.ValidationKey = "19491161-F004-4F44-BDB3-E976D6739A64"
stCfg.Timezone = time.UTC
experr := "strconv.ParseInt: parsing \"\": invalid syntax"
stReq, err := NewSureTaxRequest(cdr, stCfg)
if err == nil || err.Error() != experr {
t.Fatalf("\nExpected: %q, \nReceived: %q", experr, err)
}
if stReq != nil {
t.Errorf("\nExpected: <%+v>, \nReceived: <%+v>",
nil, stReq)
}
}
func TestSuretaxSureTaxProcessCdrPostErr(t *testing.T) {
CGRID := utils.Sha1("testOriginID", time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC).String())
cdr := &CDR{
CGRID: CGRID,
OrderID: 123,
ToR: utils.MetaVoice,
OriginID: "testOriginID",
OriginHost: "192.168.1.1",
Source: utils.UnitTest,
RequestType: utils.MetaRated,
Tenant: "cgrates.org",
Category: "call",
Account: "1001",
Subject: "1001",
Destination: "1002",
SetupTime: time.Date(2021, 1, 1, 8, 42, 20, 0, time.UTC),
AnswerTime: time.Date(2021, 1, 1, 8, 42, 26, 0, time.UTC),
RunID: utils.MetaDefault,
Usage: 12 * time.Second,
ExtraFields: map[string]string{"field_extr1": "val_extr1", "fieldextr2": "valextr2"},
Cost: 1.01, PreRated: true,
}
experr := `Post "": unsupported protocol scheme ""`
err := SureTaxProcessCdr(cdr)
if err == nil || err.Error() != experr {
t.Errorf("\nExpected: %q, \nReceived: %q", experr, err)
}
}
func TestFieldAsInterfaceEmptyPath(t *testing.T) {
tDP := &dynamicDP{}
val, err := tDP.FieldAsInterface([]string{})
if err != utils.ErrNotFound {
t.Errorf("Expected error utils.ErrNotFound, but got: %v", err)
}
if val != nil {
t.Errorf("Expected nil value, but got: %v", val)
}
}