mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
- Pass the testing.T variable to all the helpers. - Fail directly using t.Fatal instead of returning errors and checking them in the parent function. - Use t.Cleanup to ensure engine is closed after the test instead of returning a shutdown function and using it with defer. - Use t.TempDir to create temporary directories for configuration and tariffplans - Add t.Helper() method call to all helper functions.
108 lines
3.1 KiB
Go
108 lines
3.1 KiB
Go
//go:build integration
|
|
// +build integration
|
|
|
|
/*
|
|
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 general_tests
|
|
|
|
import (
|
|
"path"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/sessions"
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestSSv1AuthorizeEventSMS(t *testing.T) {
|
|
var cfgDir string
|
|
switch *utils.DBType {
|
|
case utils.MetaInternal:
|
|
cfgDir = "sessions_internal"
|
|
case utils.MetaMySQL:
|
|
cfgDir = "sessions_mysql"
|
|
case utils.MetaMongo:
|
|
cfgDir = "sessions_mongo"
|
|
case utils.MetaPostgres:
|
|
t.SkipNow()
|
|
default:
|
|
t.Fatal("Unknown Database type")
|
|
}
|
|
testEnv := TestEnvironment{
|
|
Name: "TestSSv1AuthorizeEventSMS",
|
|
ConfigPath: path.Join(*utils.DataDir, "conf", "samples", cfgDir),
|
|
TpPath: path.Join(*utils.DataDir, "tariffplans", "testit"),
|
|
}
|
|
client, _ := testEnv.Setup(t, *utils.WaitRater)
|
|
|
|
t.Run("AuthorizeEventSMS", func(t *testing.T) {
|
|
args := &sessions.V1AuthorizeArgs{
|
|
GetMaxUsage: true,
|
|
GetAttributes: true,
|
|
CGREvent: &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "TestSSv1ItAuthSMS",
|
|
Event: map[string]any{
|
|
utils.Tenant: "cgrates.org",
|
|
utils.ToR: utils.MetaSMS,
|
|
utils.OriginID: "TestSSv1It1SMS",
|
|
utils.AccountField: "1001",
|
|
utils.Destination: "1002",
|
|
utils.SetupTime: time.Date(2023, time.November, 16, 16, 60, 0, 0, time.UTC),
|
|
utils.Usage: 20,
|
|
},
|
|
},
|
|
}
|
|
var rply sessions.V1AuthorizeReply
|
|
if err := client.Call(context.Background(), utils.SessionSv1AuthorizeEvent, args, &rply); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if rply.MaxUsage == nil || *rply.MaxUsage != 20 {
|
|
t.Errorf("Unexpected MaxUsage: %v", rply.MaxUsage)
|
|
}
|
|
})
|
|
|
|
t.Run("AuthorizeEventData", func(t *testing.T) {
|
|
args := &sessions.V1AuthorizeArgs{
|
|
GetMaxUsage: true,
|
|
CGREvent: &utils.CGREvent{
|
|
Tenant: "cgrates.org",
|
|
ID: "TestSSv1ItAuthData",
|
|
Event: map[string]any{
|
|
utils.Tenant: "cgrates.org",
|
|
utils.ToR: utils.MetaData,
|
|
utils.OriginID: "TestSSv1It1Data",
|
|
utils.AccountField: "1002",
|
|
utils.Destination: "1001",
|
|
utils.SetupTime: time.Date(2023, time.November, 16, 16, 60, 0, 0, time.UTC),
|
|
utils.Usage: 1024,
|
|
},
|
|
},
|
|
}
|
|
var rply sessions.V1AuthorizeReply
|
|
if err := client.Call(context.Background(), utils.SessionSv1AuthorizeEvent, args, &rply); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if rply.MaxUsage == nil || *rply.MaxUsage != 1024 {
|
|
t.Errorf("Unexpected MaxUsage: %v", rply.MaxUsage)
|
|
}
|
|
})
|
|
|
|
}
|