go-chart/value_formatter_test.go

67 lines
1.8 KiB
Go
Raw Normal View History

2016-07-11 02:06:14 -04:00
package chart
import (
"testing"
"time"
2023-09-11 12:21:40 -04:00
"github.com/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/v2/testutil"
2016-07-11 02:06:14 -04:00
)
func TestTimeValueFormatterWithFormat(t *testing.T) {
// replaced new assertions helper
2016-07-11 02:06:14 -04:00
d := time.Now()
2019-02-13 19:09:26 -05:00
di := TimeToFloat64(d)
2016-07-11 02:06:14 -04:00
df := float64(di)
2017-04-25 23:03:30 -04:00
s := formatTime(d, DefaultDateFormat)
si := formatTime(di, DefaultDateFormat)
sf := formatTime(df, DefaultDateFormat)
testutil.AssertEqual(t, s, si)
testutil.AssertEqual(t, s, sf)
2016-07-11 02:06:14 -04:00
sd := TimeValueFormatter(d)
sdi := TimeValueFormatter(di)
sdf := TimeValueFormatter(df)
testutil.AssertEqual(t, s, sd)
testutil.AssertEqual(t, s, sdi)
testutil.AssertEqual(t, s, sdf)
2016-07-11 02:06:14 -04:00
}
func TestFloatValueFormatter(t *testing.T) {
// replaced new assertions helper
testutil.AssertEqual(t, "1234.00", FloatValueFormatter(1234.00))
}
func TestFloatValueFormatterWithFloat32Input(t *testing.T) {
// replaced new assertions helper
testutil.AssertEqual(t, "1234.00", FloatValueFormatter(float32(1234.00)))
}
func TestFloatValueFormatterWithIntegerInput(t *testing.T) {
// replaced new assertions helper
testutil.AssertEqual(t, "1234.00", FloatValueFormatter(1234))
}
func TestFloatValueFormatterWithInt64Input(t *testing.T) {
// replaced new assertions helper
testutil.AssertEqual(t, "1234.00", FloatValueFormatter(int64(1234)))
}
2016-07-11 02:06:14 -04:00
func TestFloatValueFormatterWithFormat(t *testing.T) {
// replaced new assertions helper
2016-07-11 02:06:14 -04:00
v := 123.456
sv := FloatValueFormatterWithFormat(v, "%.3f")
testutil.AssertEqual(t, "123.456", sv)
testutil.AssertEqual(t, "123.000", FloatValueFormatterWithFormat(123, "%.3f"))
2016-07-11 02:06:14 -04:00
}
func TestExponentialValueFormatter(t *testing.T) {
assert := assert.New(t)
assert.Equal("1.23e+02", ExponentialValueFormatter(123.456))
assert.Equal("1.24e+07", ExponentialValueFormatter(12421243.424))
assert.Equal("4.50e-01", ExponentialValueFormatter(0.45))
}