mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
141 lines
3.2 KiB
Go
141 lines
3.2 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 utils
|
|
|
|
import (
|
|
"reflect"
|
|
"sort"
|
|
"testing"
|
|
)
|
|
|
|
func TestExporterMetricsString(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
},
|
|
}
|
|
expected := "{\"field1\":2}"
|
|
if reply := ms.String(); reply != expected {
|
|
t.Errorf("Expected %s \n but received \n %s", expected, reply)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsFieldAsInterface(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
},
|
|
}
|
|
|
|
input := []string{"field1"}
|
|
expected := 2
|
|
if reply, err := ms.FieldAsInterface(input); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, reply) {
|
|
t.Errorf("Expected %d \n but received \n %d", expected, reply)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsFieldAsString(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
},
|
|
}
|
|
|
|
input := []string{"field1"}
|
|
expected := "2"
|
|
if reply, err := ms.FieldAsString(input); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(expected, reply) {
|
|
t.Errorf("Expected %s \n but received \n %s", expected, reply)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsSet(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
},
|
|
}
|
|
|
|
expected := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
"field2": 3,
|
|
},
|
|
}
|
|
|
|
if err := ms.Set([]string{"field2"}, 3); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(ms, expected) {
|
|
t.Errorf("Expected %v \n but received \n %v", expected, ms)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsGetKeys(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
"field2": 3,
|
|
},
|
|
}
|
|
|
|
expected := []string{"*req.field1", "*req.field2"}
|
|
reply := ms.GetKeys(false, 0, MetaReq)
|
|
sort.Strings(reply)
|
|
if !reflect.DeepEqual(reply, expected) {
|
|
t.Errorf("Expected %v \n but received \n %v", expected, reply)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsRemove(t *testing.T) {
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
"field2": 3,
|
|
},
|
|
}
|
|
|
|
expected := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
},
|
|
}
|
|
|
|
if err := ms.Remove([]string{"field2"}); err != nil {
|
|
t.Error(err)
|
|
} else if !reflect.DeepEqual(ms, expected) {
|
|
t.Errorf("Expected %v \n but received \n %v", expected, ms)
|
|
}
|
|
}
|
|
|
|
func TestExporterMetricsClonedMapStorage(t *testing.T) {
|
|
|
|
ms := &ExporterMetrics{
|
|
MapStorage: MapStorage{
|
|
"field1": 2,
|
|
"field2": 3,
|
|
},
|
|
}
|
|
|
|
if reply := ms.ClonedMapStorage(); reflect.DeepEqual(ms, reply) {
|
|
t.Errorf("Expected %v \n but received \n %v", ms, reply)
|
|
}
|
|
}
|