go-chart/value_test.go

70 lines
1.6 KiB
Go
Raw Permalink Normal View History

2016-07-28 19:36:30 -04:00
package chart
import (
"testing"
"github.com/wcharczuk/go-chart/v2/testutil"
2016-07-28 19:36:30 -04:00
)
func TestValuesValues(t *testing.T) {
// replaced new assertions helper
2016-07-28 19:36:30 -04:00
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).Values()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 10, values[0])
testutil.AssertEqual(t, 9, values[1])
testutil.AssertEqual(t, 8, values[2])
testutil.AssertEqual(t, 7, values[3])
testutil.AssertEqual(t, 6, values[4])
testutil.AssertEqual(t, 5, values[5])
testutil.AssertEqual(t, 2, values[6])
2016-07-28 19:36:30 -04:00
}
func TestValuesValuesNormalized(t *testing.T) {
// replaced new assertions helper
2016-07-28 19:36:30 -04:00
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).ValuesNormalized()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 0.2127, values[0])
testutil.AssertEqual(t, 0.0425, values[6])
2016-07-28 19:36:30 -04:00
}
func TestValuesNormalize(t *testing.T) {
// replaced new assertions helper
2016-07-28 19:36:30 -04:00
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).Normalize()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 0.2127, values[0].Value)
testutil.AssertEqual(t, 0.0425, values[6].Value)
2016-07-28 19:36:30 -04:00
}