1
0
Fork 0

Adding upstream version 2.1.2.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-18 07:17:02 +02:00
parent c8c64afc61
commit 41a2f19f12
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
220 changed files with 19814 additions and 0 deletions

64
value_formatter_test.go Normal file
View file

@ -0,0 +1,64 @@
package chart
import (
"testing"
"time"
"github.com/wcharczuk/go-chart/v2/testutil"
)
func TestTimeValueFormatterWithFormat(t *testing.T) {
// replaced new assertions helper
d := time.Now()
di := TimeToFloat64(d)
df := float64(di)
s := formatTime(d, DefaultDateFormat)
si := formatTime(di, DefaultDateFormat)
sf := formatTime(df, DefaultDateFormat)
testutil.AssertEqual(t, s, si)
testutil.AssertEqual(t, s, sf)
sd := TimeValueFormatter(d)
sdi := TimeValueFormatter(di)
sdf := TimeValueFormatter(df)
testutil.AssertEqual(t, s, sd)
testutil.AssertEqual(t, s, sdi)
testutil.AssertEqual(t, s, sdf)
}
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)))
}
func TestFloatValueFormatterWithFormat(t *testing.T) {
// replaced new assertions helper
v := 123.456
sv := FloatValueFormatterWithFormat(v, "%.3f")
testutil.AssertEqual(t, "123.456", sv)
testutil.AssertEqual(t, "123.000", FloatValueFormatterWithFormat(123, "%.3f"))
}
func TestExponentialValueFormatter(t *testing.T) {
testutil.AssertEqual(t, "1.23e+02", ExponentialValueFormatter(123.456))
testutil.AssertEqual(t, "1.24e+07", ExponentialValueFormatter(12421243.424))
testutil.AssertEqual(t, "4.50e-01", ExponentialValueFormatter(0.45))
}