mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
75 lines
2.4 KiB
Go
75 lines
2.4 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 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 engine
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/cgrates/cgrates/utils"
|
|
)
|
|
|
|
func TestVersionCompare(t *testing.T) {
|
|
x := Versions{utils.Accounts: 2, utils.Actions: 2,
|
|
utils.Attributes: 2, utils.Chargers: 2,
|
|
utils.CostDetails: 2}
|
|
y := Versions{utils.Accounts: 1, utils.Actions: 2,
|
|
utils.Attributes: 2, utils.Chargers: 2,
|
|
utils.CostDetails: 2}
|
|
|
|
message1 := y.Compare(x, utils.MetaMongo, true)
|
|
if message1 != "cgr-migrator -exec=*accounts" {
|
|
t.Errorf("Error failed to compare to curent version expected: %s received: %s", "cgr-migrator -exec=*accounts", message1)
|
|
}
|
|
message7 := y.Compare(x, utils.MetaRedis, true)
|
|
if message7 != "cgr-migrator -exec=*accounts" {
|
|
t.Errorf("Error failed to compare to curent version expected: %s received: %s", "cgr-migrator -exec=*accounts", message7)
|
|
}
|
|
|
|
y[utils.Accounts] = 2
|
|
message8 := y.Compare(x, utils.MetaRedis, true)
|
|
if message8 != utils.EmptyString {
|
|
t.Errorf("Expected %+v, received %+v", utils.EmptyString, message8)
|
|
}
|
|
}
|
|
|
|
func TestCurrentDBVersions(t *testing.T) {
|
|
expVersDataDB := Versions{
|
|
utils.Stats: 4, utils.Accounts: 3, utils.Actions: 2,
|
|
utils.Thresholds: 4, utils.Routes: 2, utils.Attributes: 7,
|
|
utils.RQF: 5, utils.Resource: 1,
|
|
utils.Subscribers: 1,
|
|
utils.Chargers: 2,
|
|
utils.Dispatchers: 2, utils.LoadIDsVrs: 1, utils.RateProfiles: 1,
|
|
utils.ActionProfiles: 1,
|
|
}
|
|
|
|
if vrs := CurrentDBVersions(utils.MetaMongo, true); !reflect.DeepEqual(expVersDataDB, vrs) {
|
|
t.Errorf("Expectred %+v, received %+v", expVersDataDB, vrs)
|
|
}
|
|
|
|
if vrs := CurrentDBVersions(utils.MetaRedis, true); !reflect.DeepEqual(expVersDataDB, vrs) {
|
|
t.Errorf("Expectred %+v, received %+v", expVersDataDB, vrs)
|
|
}
|
|
|
|
if vrs := CurrentDBVersions("NOT_A_DB", true); vrs != nil {
|
|
t.Error(vrs)
|
|
}
|
|
|
|
}
|