Files
cgrates/general_tests/tutorial_it_test.go
2025-10-29 19:42:24 +01:00

152 lines
3.9 KiB
Go

//go:build flaky
/*
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 Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>
*/
package general_tests
import (
"flag"
"net/rpc"
"path"
"testing"
"time"
v1 "github.com/cgrates/cgrates/apier/v1"
"github.com/cgrates/cgrates/config"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/utils"
)
var (
itTestMongoAtalas = flag.Bool("mongo_atlas", false, "Run the test with mongo atalas connection")
tutorialCfgPath string
tutorialCfg *config.CGRConfig
tutorialRpc *rpc.Client
tutorialConfDIR string //run tests for specific configuration
tutorialDelay int
sTestsTutorials = []func(t *testing.T){
testTutorialLoadConfig,
testTutorialResetDB,
testTutorialStartEngine,
testTutorialRpcConn,
testTutorialFromFolder,
testTutorialGetCost,
testTutorialStopEngine,
}
)
// Test start here
func TestTutorialMongoAtlas(t *testing.T) {
if !*itTestMongoAtalas {
return
}
tutorialConfDIR = "mongoatlas"
for _, stest := range sTestsTutorials {
t.Run(tutorialConfDIR, stest)
}
}
func TestTutorial(t *testing.T) {
switch *utils.DBType {
case utils.MetaInternal:
tutorialConfDIR = "tutinternal"
case utils.MetaMySQL:
tutorialConfDIR = "tutmysql"
case utils.MetaMongo:
tutorialConfDIR = "tutmongo"
case utils.MetaPostgres:
t.SkipNow()
default:
t.Fatal("Unknown Database type")
}
for _, stest := range sTestsTutorials {
t.Run(tutorialConfDIR, stest)
}
}
func testTutorialLoadConfig(t *testing.T) {
var err error
tutorialCfgPath = path.Join(*utils.DataDir, "conf", "samples", tutorialConfDIR)
if tutorialCfg, err = config.NewCGRConfigFromPath(tutorialCfgPath); err != nil {
t.Error(err)
}
switch tutorialConfDIR {
case "mongoatlas": // Mongo needs more time to reset db
tutorialDelay = 4000
default:
tutorialDelay = 2000
}
}
func testTutorialResetDB(t *testing.T) {
if err := engine.InitDataDb(tutorialCfg); err != nil {
t.Fatal(err)
}
if err := engine.InitStorDb(tutorialCfg); err != nil {
t.Fatal(err)
}
}
func testTutorialStartEngine(t *testing.T) {
if _, err := engine.StopStartEngine(tutorialCfgPath, tutorialDelay); err != nil {
t.Fatal(err)
}
}
func testTutorialRpcConn(t *testing.T) {
var err error
tutorialRpc, err = newRPCClient(tutorialCfg.ListenCfg()) // We connect over JSON so we can also troubleshoot if needed
if err != nil {
t.Fatal("Could not connect to rater: ", err.Error())
}
}
func testTutorialFromFolder(t *testing.T) {
var reply string
attrs := &utils.AttrLoadTpFromFolder{FolderPath: path.Join(*utils.DataDir, "tariffplans", "tutorial")}
if err := tutorialRpc.Call(utils.APIerSv1LoadTariffPlanFromFolder, attrs, &reply); err != nil {
t.Error(err)
}
time.Sleep(500 * time.Millisecond)
}
func testTutorialGetCost(t *testing.T) {
attrs := v1.AttrGetCost{
Tenant: "cgrates.org",
Category: "call",
Subject: "1001",
Destination: "1002",
AnswerTime: "*now",
Usage: "2m10s",
}
var rply *engine.EventCost
if err := tutorialRpc.Call(utils.APIerSv1GetCost, attrs, &rply); err != nil {
t.Error("Unexpected nil error received: ", err.Error())
} else if *rply.Cost != 0.716900 {
t.Errorf("Unexpected cost received: %f", *rply.Cost)
}
}
func testTutorialStopEngine(t *testing.T) {
if err := engine.KillEngine(tutorialDelay); err != nil {
t.Error(err)
}
}