Files
cgrates/engine/sharedgroup_test.go
Radu Ioan Fericean eb60e6caf5 fix for the lock issue
2015-04-03 22:33:16 +03:00

96 lines
3.0 KiB
Go

/*
Rating system designed to be used in VoIP Carriers World
Copyright (C) 2012-2015 ITsysCOM
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 "testing"
func TestSharedPopBalanceByStrategyLow(t *testing.T) {
bc := BalanceChain{
&Balance{Value: 2.0},
&Balance{Uuid: "uuuu", Value: 1.0, account: &Account{Id: "test"}},
&Balance{Value: 3.0},
}
sg := &SharedGroup{AccountParameters: map[string]*SharingParameters{
"test": &SharingParameters{Strategy: STRATEGY_LOWEST}},
}
sbc := sg.SortBalancesByStrategy(bc[1], bc)
if len(sbc) != 3 ||
sbc[0].Value != 1.0 ||
sbc[1].Value != 2.0 {
t.Error("Error sorting balance chain: ", sbc[0].Value)
}
}
func TestSharedPopBalanceByStrategyHigh(t *testing.T) {
bc := BalanceChain{
&Balance{Uuid: "uuuu", Value: 2.0, account: &Account{Id: "test"}},
&Balance{Value: 1.0},
&Balance{Value: 3.0},
}
sg := &SharedGroup{AccountParameters: map[string]*SharingParameters{
"test": &SharingParameters{Strategy: STRATEGY_HIGHEST}},
}
sbc := sg.SortBalancesByStrategy(bc[0], bc)
if len(sbc) != 3 ||
sbc[0].Value != 3.0 ||
sbc[1].Value != 2.0 {
t.Error("Error sorting balance chain: ", sbc)
}
}
func TestSharedPopBalanceByStrategyMineHigh(t *testing.T) {
bc := BalanceChain{
&Balance{Uuid: "uuuu", Value: 2.0, account: &Account{Id: "test"}},
&Balance{Value: 1.0},
&Balance{Value: 3.0},
}
sg := &SharedGroup{AccountParameters: map[string]*SharingParameters{
"test": &SharingParameters{Strategy: STRATEGY_MINE_HIGHEST}},
}
sbc := sg.SortBalancesByStrategy(bc[0], bc)
if len(sbc) != 3 ||
sbc[0].Value != 2.0 ||
sbc[1].Value != 3.0 {
t.Error("Error sorting balance chain: ", sbc)
}
}
/*func TestSharedPopBalanceByStrategyRandomHigh(t *testing.T) {
bc := BalanceChain{
&Balance{Uuid: "uuuu", Value: 2.0, account: &Account{Id: "test"}},
&Balance{Value: 1.0},
&Balance{Value: 3.0},
}
sg := &SharedGroup{AccountParameters: map[string]*SharingParameters{
"test": &SharingParameters{Strategy: STRATEGY_RANDOM}},
}
x := bc[0]
sbc := sg.SortBalancesByStrategy(bc[0], bc)
firstTest := (sbc[0].Uuid == x.Uuid)
sbc = sg.SortBalancesByStrategy(bc[0], bc)
secondTest := (sbc[0].Uuid == x.Uuid)
sbc = sg.SortBalancesByStrategy(bc[0], bc)
thirdTest := (sbc[0].Uuid == x.Uuid)
sbc = sg.SortBalancesByStrategy(bc[0], bc)
fourthTest := (sbc[0].Uuid == x.Uuid)
if firstTest && secondTest && thirdTest && fourthTest {
t.Error("Something is wrong with balance randomizer")
}
}*/