2016-07-11 02:06:14 -04:00
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2018-04-05 03:42:38 -04:00
|
|
|
"github.com/blend/go-sdk/assert"
|
2016-07-11 02:06:14 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestTimeValueFormatterWithFormat(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
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)
|
2016-07-11 02:06:14 -04:00
|
|
|
assert.Equal(s, si)
|
|
|
|
assert.Equal(s, sf)
|
|
|
|
|
|
|
|
sd := TimeValueFormatter(d)
|
|
|
|
sdi := TimeValueFormatter(di)
|
|
|
|
sdf := TimeValueFormatter(df)
|
|
|
|
assert.Equal(s, sd)
|
|
|
|
assert.Equal(s, sdi)
|
|
|
|
assert.Equal(s, sdf)
|
|
|
|
}
|
|
|
|
|
2016-08-05 23:44:40 -04:00
|
|
|
func TestFloatValueFormatter(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
assert.Equal("1234.00", FloatValueFormatter(1234.00))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFloatValueFormatterWithFloat32Input(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
assert.Equal("1234.00", FloatValueFormatter(float32(1234.00)))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFloatValueFormatterWithIntegerInput(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
assert.Equal("1234.00", FloatValueFormatter(1234))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFloatValueFormatterWithInt64Input(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
assert.Equal("1234.00", FloatValueFormatter(int64(1234)))
|
|
|
|
}
|
|
|
|
|
2016-07-11 02:06:14 -04:00
|
|
|
func TestFloatValueFormatterWithFormat(t *testing.T) {
|
|
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
v := 123.456
|
|
|
|
sv := FloatValueFormatterWithFormat(v, "%.3f")
|
|
|
|
assert.Equal("123.456", sv)
|
2016-08-05 23:44:40 -04:00
|
|
|
assert.Equal("123.000", FloatValueFormatterWithFormat(123, "%.3f"))
|
2016-07-11 02:06:14 -04:00
|
|
|
}
|