mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
128 lines
3.8 KiB
Go
128 lines
3.8 KiB
Go
/*
|
|
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 config
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestSentryPeerCfgloadFromJsonCfg(t *testing.T) {
|
|
var sp, expected SentryPeerCfg
|
|
|
|
if err := sp.loadFromJSONCfg(nil); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(sp, expected) {
|
|
t.Errorf("Expected %+v,Received %+v", expected, sp)
|
|
}
|
|
|
|
cfgJsonStr := `
|
|
{
|
|
"sentrypeer":{
|
|
"client_id":"sd5h7rhyrtudjj",
|
|
"client_secret":"w9buwnbw9ewbegsaovnmn9wr",
|
|
"token_url":"https://authz.sentrypeer.com/oauth/token",
|
|
"ips_url":"https://sentrypeer.com/api/ip-addresses",
|
|
"numbers_url":"https://sentrypeer.com/api/phone-numbers",
|
|
"audience":"https://sentrypeer.com/api",
|
|
"grant_type":"client_credentials",
|
|
}
|
|
}
|
|
`
|
|
expected = SentryPeerCfg{
|
|
ClientID: "sd5h7rhyrtudjj",
|
|
ClientSecret: "w9buwnbw9ewbegsaovnmn9wr",
|
|
TokenUrl: "https://authz.sentrypeer.com/oauth/token",
|
|
IpsUrl: "https://sentrypeer.com/api/ip-addresses",
|
|
NumbersUrl: "https://sentrypeer.com/api/phone-numbers",
|
|
Audience: "https://sentrypeer.com/api",
|
|
GrantType: "client_credentials",
|
|
}
|
|
cfgJson, err := NewCgrJsonCfgFromBytes([]byte(cfgJsonStr))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
sentryPeerJson, err := cfgJson.SentryPeerJson()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if err := sp.loadFromJSONCfg(sentryPeerJson); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(sp, expected) {
|
|
t.Errorf("Expected %+v,Received %+v", expected, sp)
|
|
}
|
|
}
|
|
|
|
func TestSentryPeerAsMapInterface(t *testing.T) {
|
|
var sp SentryPeerCfg
|
|
cfgJsonStr := `
|
|
{
|
|
"sentrypeer":{
|
|
"client_id": "sd5h7rhyrtudjj",
|
|
"client_secret": "w9buwnbw9ewbegsaovnmn9wr",
|
|
"token_url": "https://authz.sentrypeer.com/oauth/token",
|
|
"ips_url": "https://sentrypeer.com/api/ip-addresses",
|
|
"numbers_url": "https://sentrypeer.com/api/phone-numbers",
|
|
"audience": "https://sentrypeer.com/api",
|
|
"grant_type": "client_credentials",
|
|
}
|
|
}
|
|
`
|
|
expected := map[string]any{"ClientID": "sd5h7rhyrtudjj",
|
|
"ClientSecret": "w9buwnbw9ewbegsaovnmn9wr",
|
|
"TokenURL": "https://authz.sentrypeer.com/oauth/token",
|
|
"IpUrl": "https://sentrypeer.com/api/ip-addresses",
|
|
"NumberUrl": "https://sentrypeer.com/api/phone-numbers",
|
|
"Audience": "https://sentrypeer.com/api",
|
|
"GrantType": "client_credentials",
|
|
}
|
|
|
|
cfgJson, err := NewCgrJsonCfgFromBytes([]byte(cfgJsonStr))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
sentryPeerJson, err := cfgJson.SentryPeerJson()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if err := sp.loadFromJSONCfg(sentryPeerJson); err != nil {
|
|
t.Error(err)
|
|
} else if rcv := sp.AsMapInterface(); !reflect.DeepEqual(expected, rcv) {
|
|
t.Errorf("Expected %+v,Received %+v", utils.ToJSON(expected), utils.ToJSON(rcv))
|
|
}
|
|
}
|
|
|
|
func TestSentryPeerCfgClone(t *testing.T) {
|
|
|
|
sp := &SentryPeerCfg{
|
|
Audience: "https://sentrypeer.com/api",
|
|
GrantType: "client_credentials",
|
|
}
|
|
rcv := sp.Clone()
|
|
if !reflect.DeepEqual(rcv, sp) {
|
|
t.Errorf("Expected %+v,Received %+v", rcv, sp)
|
|
}
|
|
if rcv.GrantType = ""; sp.GrantType != "client_credentials" {
|
|
t.Error("Expected clone to not modify the cloned")
|
|
}
|
|
}
|