mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-14 20:59:53 +05:00
118 lines
2.8 KiB
Go
118 lines
2.8 KiB
Go
/*
|
|
Rating system designed to be used in VoIP Carriers World
|
|
Copyright (C) 2012 Radu Ioan Fericean
|
|
|
|
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 timespans
|
|
|
|
import (
|
|
"encoding/json"
|
|
"reflect"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestMonthYearStoreRestore(t *testing.T) {
|
|
y := Years{2010, 2011, 2012}
|
|
r := y.store()
|
|
if string(r) != "2010,2011,2012" {
|
|
t.Errorf("Error serializing years: %v", string(r))
|
|
}
|
|
o := Years{}
|
|
o.restore(r)
|
|
if !reflect.DeepEqual(o, y) {
|
|
t.Errorf("Expected %v was %v", y, o)
|
|
}
|
|
}
|
|
|
|
func TestMonthStoreRestore(t *testing.T) {
|
|
m := Months{5, 6, 7, 8}
|
|
r := m.store()
|
|
if string(r) != "5,6,7,8" {
|
|
t.Errorf("Error serializing months: %v", string(r))
|
|
}
|
|
o := Months{}
|
|
o.restore(r)
|
|
if !reflect.DeepEqual(o, m) {
|
|
t.Errorf("Expected %v was %v", m, o)
|
|
}
|
|
}
|
|
|
|
func TestMonthDayStoreRestore(t *testing.T) {
|
|
md := MonthDays{24, 25, 26}
|
|
r := md.store()
|
|
if string(r) != "24,25,26" {
|
|
t.Errorf("Error serializing month days: %v", string(r))
|
|
}
|
|
o := MonthDays{}
|
|
o.restore(r)
|
|
if !reflect.DeepEqual(o, md) {
|
|
t.Errorf("Expected %v was %v", md, o)
|
|
}
|
|
}
|
|
|
|
func TestWeekDayStoreRestore(t *testing.T) {
|
|
wd := WeekDays{time.Saturday, time.Sunday}
|
|
r := wd.store()
|
|
if string(r) != "6,0" {
|
|
t.Errorf("Error serializing week days: %v", string(r))
|
|
}
|
|
o := WeekDays{}
|
|
o.restore(r)
|
|
if !reflect.DeepEqual(o, wd) {
|
|
t.Errorf("Expected %v was %v", wd, o)
|
|
}
|
|
}
|
|
|
|
func TestMonthStoreRestoreJson(t *testing.T) {
|
|
m := Months{5, 6, 7, 8}
|
|
r, _ := json.Marshal(m)
|
|
if string(r) != "[5,6,7,8]" {
|
|
t.Errorf("Error serializing months: %v", string(r))
|
|
}
|
|
o := Months{}
|
|
json.Unmarshal(r, &o)
|
|
if !reflect.DeepEqual(o, m) {
|
|
t.Errorf("Expected %v was %v", m, o)
|
|
}
|
|
}
|
|
|
|
func TestMonthDayStoreRestoreJson(t *testing.T) {
|
|
md := MonthDays{24, 25, 26}
|
|
r, _ := json.Marshal(md)
|
|
if string(r) != "[24,25,26]" {
|
|
t.Errorf("Error serializing month days: %v", string(r))
|
|
}
|
|
o := MonthDays{}
|
|
json.Unmarshal(r, &o)
|
|
if !reflect.DeepEqual(o, md) {
|
|
t.Errorf("Expected %v was %v", md, o)
|
|
}
|
|
}
|
|
|
|
func TestWeekDayStoreRestoreJson(t *testing.T) {
|
|
wd := WeekDays{time.Saturday, time.Sunday}
|
|
r, _ := json.Marshal(wd)
|
|
if string(r) != "[6,0]" {
|
|
t.Errorf("Error serializing week days: %v", string(r))
|
|
}
|
|
o := WeekDays{}
|
|
json.Unmarshal(r, &o)
|
|
if !reflect.DeepEqual(o, wd) {
|
|
t.Errorf("Expected %v was %v", wd, o)
|
|
}
|
|
}
|