mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
libengine_it_test.go: - handle postgres dbtype as well - after rpcclient update, we receive context deadline exceeded instead of REPLY_TIMEOUT, so the expected value had to be updated. tut_smgeneric_it_test.go - an additional attribute profile has been added to oldtutorial tariffplans, which changed the amount of profiles and indexes existing in the storage when testing. Expected values have been updated.
136 lines
3.5 KiB
Go
136 lines
3.5 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 (
|
|
"errors"
|
|
"path"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cgrates/birpc/context"
|
|
"github.com/cgrates/cgrates/config"
|
|
"github.com/cgrates/cgrates/engine"
|
|
"github.com/cgrates/cgrates/utils"
|
|
"github.com/cgrates/ltcache"
|
|
)
|
|
|
|
var (
|
|
libengCfg *config.CGRConfig
|
|
libengCfgPath string
|
|
libengConfigDIR string
|
|
|
|
testLibEngineIT = []func(t *testing.T){
|
|
testLibengITInitCfg,
|
|
testLibengITInitDataDb,
|
|
testLibengITInitStorDb,
|
|
testLibengITStartEngine,
|
|
testLibengITRPCConnection,
|
|
testLibengITStopEngine,
|
|
}
|
|
)
|
|
|
|
func TestLibEngineIT(t *testing.T) {
|
|
switch *dbType {
|
|
case utils.MetaInternal:
|
|
libengConfigDIR = "tutinternal"
|
|
case utils.MetaMySQL:
|
|
libengConfigDIR = "tutmysql"
|
|
case utils.MetaMongo:
|
|
libengConfigDIR = "tutmongo"
|
|
case utils.MetaPostgres:
|
|
libengConfigDIR = "tutpostgres"
|
|
default:
|
|
t.Fatal("Unknown database type")
|
|
}
|
|
|
|
for _, test := range testLibEngineIT {
|
|
t.Run(libengConfigDIR, test)
|
|
}
|
|
}
|
|
|
|
func testLibengITInitCfg(t *testing.T) {
|
|
libengCfgPath = path.Join(*dataDir, "conf", "samples", libengConfigDIR)
|
|
var err error
|
|
libengCfg, err = config.NewCGRConfigFromPath(libengCfgPath)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func testLibengITInitDataDb(t *testing.T) {
|
|
if err := engine.InitDataDb(libengCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testLibengITInitStorDb(t *testing.T) {
|
|
if err := engine.InitStorDb(libengCfg); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testLibengITStartEngine(t *testing.T) {
|
|
if _, err := engine.StopStartEngine(libengCfgPath, *waitRater); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func testLibengITRPCConnection(t *testing.T) {
|
|
cgrCfg := &config.RemoteHost{
|
|
ID: "a4f3f",
|
|
Address: "localhost:2012",
|
|
Transport: "*json",
|
|
ConnectAttempts: 2,
|
|
Reconnects: 5,
|
|
ConnectTimeout: 1 * time.Second,
|
|
ReplyTimeout: 25 * time.Millisecond,
|
|
TLS: false,
|
|
}
|
|
args := &utils.DurationArgs{
|
|
Duration: 50 * time.Millisecond,
|
|
APIOpts: make(map[string]any),
|
|
Tenant: "cgrates.org",
|
|
}
|
|
var reply string
|
|
conn, err := engine.NewRPCConnection(context.Background(),
|
|
cgrCfg, "", "", "",
|
|
cgrCfg.ConnectAttempts, cgrCfg.Reconnects,
|
|
cgrCfg.MaxReconnectInterval, cgrCfg.ConnectTimeout,
|
|
cgrCfg.ReplyTimeout, nil, false, "*localhost",
|
|
"a4f3f", new(ltcache.Cache))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
//We check if we get a reply timeout error when calling a sleep bigger than the reply timeout from connection config.
|
|
if err := conn.Call(context.Background(), utils.CoreSv1Sleep, args,
|
|
&reply); !errors.Is(err, context.DeadlineExceeded) {
|
|
t.Errorf("expected: %v, received %v", context.DeadlineExceeded, err)
|
|
}
|
|
|
|
}
|
|
|
|
func testLibengITStopEngine(t *testing.T) {
|
|
if err := engine.KillEngine(*waitRater); err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|