mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
Added Guardian tests for API
This commit is contained in:
committed by
Dan Christian Bogos
parent
a15a346148
commit
4fe5edae39
96
apier/v1/guardian_it_test.go
Normal file
96
apier/v1/guardian_it_test.go
Normal file
@@ -0,0 +1,96 @@
|
||||
// +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 (
|
||||
"net/rpc/jsonrpc"
|
||||
"path"
|
||||
"reflect"
|
||||
"sort"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/cgrates/cgrates/config"
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
"github.com/cgrates/cgrates/utils"
|
||||
)
|
||||
|
||||
//Test start here
|
||||
func TestGuardianSIT(t *testing.T) {
|
||||
var err error
|
||||
guardianCfgPath := path.Join(*dataDir, "conf", "samples", "tutmysql")
|
||||
guardianCfg, err := config.NewCGRConfigFromPath(guardianCfgPath)
|
||||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
guardianCfg.DataFolderPath = *dataDir
|
||||
config.SetCgrConfig(guardianCfg)
|
||||
|
||||
if err = engine.InitDataDb(guardianCfg); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if err = engine.InitStorDb(guardianCfg); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// start engine
|
||||
if _, err = engine.StopStartEngine(guardianCfgPath, *waitRater); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// start RPC
|
||||
guardianRPC, err := jsonrpc.Dial("tcp", guardianCfg.ListenCfg().RPCJSONListen) // We connect over JSON so we can also troubleshoot if needed
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// lock
|
||||
args := utils.AttrRemoteLock{
|
||||
ReferenceID: "",
|
||||
LockIDs: []string{"lock1"},
|
||||
Timeout: 500 * time.Millisecond,
|
||||
}
|
||||
var reply string
|
||||
if err = guardianRPC.Call(utils.GuardianSv1RemoteLock, args, &reply); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
var unlockReply []string
|
||||
if err = guardianRPC.Call(utils.GuardianSv1RemoteUnlock, reply, &unlockReply); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
sort.Strings(unlockReply)
|
||||
if !reflect.DeepEqual(args.LockIDs, unlockReply) {
|
||||
t.Errorf("Expected: %s , received: %s", utils.ToJSON(args.LockIDs), utils.ToJSON(unlockReply))
|
||||
}
|
||||
|
||||
// ping
|
||||
var resp string
|
||||
if err = guardianRPC.Call(utils.GuardianSv1Ping, new(utils.CGREvent), &resp); err != nil {
|
||||
t.Error(err)
|
||||
} else if resp != utils.Pong {
|
||||
t.Error("Unexpected reply returned", resp)
|
||||
}
|
||||
|
||||
// stop engine
|
||||
if err := engine.KillEngine(100); err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
}
|
||||
@@ -912,7 +912,7 @@ const (
|
||||
AttributesCsv = "Attributes.csv"
|
||||
ChargersCsv = "Chargers.csv"
|
||||
DispatchersCsv = "Dispatchers.csv"
|
||||
DispatcherHostsCsv = " DispatcherHosts.csv"
|
||||
DispatcherHostsCsv = "DispatcherHosts.csv"
|
||||
)
|
||||
|
||||
// Table Name
|
||||
|
||||
Reference in New Issue
Block a user