Files
cgrates/apier/v1/core_it_test.go
2022-05-28 09:50:01 +02:00

351 lines
9.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 v1
import (
"fmt"
"net/rpc"
"net/rpc/jsonrpc"
"os"
"os/exec"
"path"
"testing"
"time"
"github.com/cgrates/cgrates/engine"
"github.com/cgrates/cgrates/utils"
"github.com/cgrates/cgrates/config"
)
var (
coreV1CfgPath string
coreV1Cfg *config.CGRConfig
coreV1Rpc *rpc.Client
coreV1ConfDIR string //run tests for specific configuration
argPath string
sTestCoreSv1 = []func(t *testing.T){
testCoreSv1LoadCofig,
testCoreSv1InitDataDB,
testCoreSv1InitStorDB,
//engine separate with cpu
testCoreSv1StartEngineByExecWithCPUProfiling,
testCoreSv1RPCConn,
testCoreSv1StartCPUProfilingErrorAlreadyStarted,
testCoreSv1Sleep,
testCoreSv1StopCPUProfiling,
testCoreSv1KillEngine,
//engine separate with memory
testCoreSv1StartEngineByExecWIthMemProfiling,
testCoreSv1RPCConn,
testCoreSv1StartMemProfilingErrorAlreadyStarted,
testCoreSv1Sleep,
testCoreSv1StopMemoryProfiling,
testCoreSv1KillEngine,
testCoreSv1CheckFinalMemProfiling,
// test CPU and Memory just by APIs
testCoreSv1StartEngine,
testCoreSv1RPCConn,
//CPUProfiles apis
testCoreSv1StopCPUProfilingBeforeStart,
testCoreSv1StartCPUProfiling,
testCoreSv1Sleep,
testCoreSv1StopCPUProfiling,
//MemoryProfiles apis
testCoreSv1StopMemProfilingBeforeStart,
testCoreSv1StartMemoryProfiling,
testCoreSv1Sleep,
testCoreSv1StopMemoryProfiling,
testCoreSv1KillEngine,
testCoreSv1CheckFinalMemProfiling,
}
)
func TestITCoreSv1(t *testing.T) {
argPath = "/tmp"
switch *dbType {
case utils.MetaInternal:
coreV1ConfDIR = "tutinternal"
case utils.MetaMySQL:
coreV1ConfDIR = "tutmysql"
case utils.MetaMongo:
coreV1ConfDIR = "tutmongo"
case utils.MetaPostgres:
t.SkipNow()
}
for _, test := range sTestCoreSv1 {
t.Run("CoreSv1 integration tests", test)
}
}
func testCoreSv1LoadCofig(t *testing.T) {
coreV1CfgPath = path.Join(*dataDir, "conf", "samples", coreV1ConfDIR)
var err error
if coreV1Cfg, err = config.NewCGRConfigFromPath(coreV1CfgPath); err != nil {
t.Error(err)
}
}
func testCoreSv1InitDataDB(t *testing.T) {
if err := engine.InitDataDb(coreV1Cfg); err != nil {
t.Error(err)
}
}
func testCoreSv1InitStorDB(t *testing.T) {
if err := engine.InitStorDb(coreV1Cfg); err != nil {
t.Error(err)
}
}
func testCoreSv1StartEngineByExecWithCPUProfiling(t *testing.T) {
engine := exec.Command("cgr-engine", "-config_path", coreV1CfgPath, "-cpuprof_dir", argPath)
if err := engine.Start(); err != nil {
t.Error(err)
}
fib := utils.FibDuration(time.Millisecond, 0)
var connected bool
for i := 0; i < 200; i++ {
time.Sleep(fib())
if _, err := jsonrpc.Dial(utils.TCP, coreV1Cfg.ListenCfg().RPCJSONListen); err != nil {
t.Log(err)
} else {
connected = true
break
}
}
if !connected {
t.Errorf("engine did not open port <%s>", coreV1Cfg.ListenCfg().RPCJSONListen)
}
}
func testCoreSv1RPCConn(t *testing.T) {
var err error
if coreV1Rpc, err = newRPCClient(coreV1Cfg.ListenCfg()); err != nil {
t.Error(err)
}
}
func testCoreSv1StartCPUProfilingErrorAlreadyStarted(t *testing.T) {
var reply string
dirPath := &utils.DirectoryArgs{
DirPath: argPath,
}
expectedErr := "CPU profiling already started"
if err := coreV1Rpc.Call(utils.CoreSv1StartCPUProfiling,
dirPath, &reply); err == nil || err.Error() != expectedErr {
t.Errorf("Expected %+v, received %+v", expectedErr, err)
}
}
func testCoreSv1StartEngine(t *testing.T) {
if _, err := engine.StartEngine(coreV1CfgPath, *waitRater); err != nil {
t.Error(err)
}
}
func testCoreSv1StopMemProfilingBeforeStart(t *testing.T) {
var reply string
expectedErr := " Memory Profiling is not started"
if err := coreV1Rpc.Call(utils.CoreSv1StopMemoryProfiling,
new(utils.TenantWithAPIOpts), &reply); err == nil || err.Error() != expectedErr {
t.Errorf("Expected %+q, received %+q", expectedErr, err)
}
}
func testCoreSv1StartEngineByExecWIthMemProfiling(t *testing.T) {
engine := exec.Command("cgr-engine", "-config_path", coreV1CfgPath,
"-memprof_dir", argPath, "-memprof_interval", "100ms", "-memprof_nrfiles", "2")
if err := engine.Start(); err != nil {
t.Error(err)
}
fib := utils.FibDuration(time.Millisecond, 0)
var connected bool
for i := 0; i < 200; i++ {
time.Sleep(fib())
if _, err := jsonrpc.Dial(utils.TCP, coreV1Cfg.ListenCfg().RPCJSONListen); err != nil {
t.Log(err)
} else {
connected = true
break
}
}
if !connected {
t.Errorf("engine did not open port <%s>", coreV1Cfg.ListenCfg().RPCJSONListen)
}
}
func testCoreSv1StopMemoryProfiling(t *testing.T) {
var reply string
if err := coreV1Rpc.Call(utils.CoreSv1StopMemoryProfiling,
new(utils.TenantWithAPIOpts), &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Unexpected reply returned")
}
//mem_prof1, mem_prof2
for i := 1; i <= 2; i++ {
file, err := os.Open(path.Join(argPath, fmt.Sprintf("mem%v.prof", i)))
if err != nil {
t.Error(err)
}
defer file.Close()
//compare the size
size, err := file.Stat()
if err != nil {
t.Error(err)
} else if size.Size() < int64(415) {
t.Errorf("Size of MemoryProfile %v is lower that expected", size.Size())
}
//after we checked that CPUProfile was made successfully, can delete it
if err := os.Remove(path.Join(argPath, fmt.Sprintf("mem%v.prof", i))); err != nil {
t.Error(err)
}
}
}
func testCoreSv1CheckFinalMemProfiling(t *testing.T) {
// as the engine was killed, mem_final.prof was created and we must check it
file, err := os.Open(path.Join(argPath, fmt.Sprintf(utils.MemProfFileCgr)))
if err != nil {
t.Error(err)
}
defer file.Close()
//compare the size
size, err := file.Stat()
if err != nil {
t.Error(err)
} else if size.Size() < int64(415) {
t.Errorf("Size of MemoryProfile %v is lower that expected", size.Size())
}
//after we checked that CPUProfile was made successfully, can delete it
if err := os.Remove(path.Join(argPath, fmt.Sprintf(utils.MemProfFileCgr))); err != nil {
t.Error(err)
}
}
func testCoreSv1StartMemProfilingErrorAlreadyStarted(t *testing.T) {
var reply string
args := &utils.MemoryPrf{
DirPath: argPath,
Interval: 100 * time.Millisecond,
NrFiles: 2,
}
expErr := "Memory Profiling already started"
if err := coreV1Rpc.Call(utils.CoreSv1StartMemoryProfiling,
args, &reply); err == nil || err.Error() != expErr {
t.Errorf("Expected %+v, received %+v", expErr, err)
}
}
func testCoreSv1StopCPUProfilingBeforeStart(t *testing.T) {
var reply string
expectedErr := " cannot stop because CPUProfiling is not active"
if err := coreV1Rpc.Call(utils.CoreSv1StopCPUProfiling,
new(utils.TenantWithAPIOpts), &reply); err == nil || err.Error() != expectedErr {
t.Errorf("Expected %+q, received %+q", expectedErr, err)
}
}
func testCoreSv1StartCPUProfiling(t *testing.T) {
var reply string
dirPath := &utils.DirectoryArgs{
DirPath: argPath,
}
if err := coreV1Rpc.Call(utils.CoreSv1StartCPUProfiling,
dirPath, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Unexpected reply returned")
}
}
func testCoreSv1Sleep(t *testing.T) {
args := &utils.DurationArgs{
Duration: 600 * time.Millisecond,
}
var reply string
if err := coreV1Rpc.Call(utils.CoreSv1Sleep,
args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Unexpected reply returned")
}
}
func testCoreSv1StopCPUProfiling(t *testing.T) {
var reply string
if err := coreV1Rpc.Call(utils.CoreSv1StopCPUProfiling,
new(utils.TenantWithAPIOpts), &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Unexpected reply returned")
}
file, err := os.Open(path.Join(argPath, utils.CpuPathCgr))
if err != nil {
t.Error(err)
}
defer file.Close()
//compare the size
size, err := file.Stat()
if err != nil {
t.Error(err)
} else if size.Size() < int64(415) {
t.Errorf("Size of CPUProfile %v is lower that expected", size.Size())
}
//after we checked that CPUProfile was made successfully, can delete it
if err := os.Remove(path.Join(argPath, utils.CpuPathCgr)); err != nil {
t.Error(err)
}
}
func testCoreSv1StartMemoryProfiling(t *testing.T) {
var reply string
args := &utils.MemoryPrf{
DirPath: argPath,
Interval: 100 * time.Millisecond,
NrFiles: 2,
}
if err := coreV1Rpc.Call(utils.CoreSv1StartMemoryProfiling,
args, &reply); err != nil {
t.Error(err)
} else if reply != utils.OK {
t.Errorf("Unexpected reply returned")
}
}
func testCoreSv1KillEngine(t *testing.T) {
if err := engine.KillEngine(*waitRater); err != nil {
t.Error(err)
}
}