2019-02-19 13:52:03 -05:00
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"testing"
|
|
|
|
|
2024-10-27 22:52:38 -04:00
|
|
|
"git.smarteching.com/zeni/go-chart/v2/testutil"
|
2019-02-19 13:52:03 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDonutChart(t *testing.T) {
|
2020-11-22 19:45:10 -05:00
|
|
|
// replaced new assertions helper
|
2019-02-19 13:52:03 -05:00
|
|
|
|
|
|
|
pie := DonutChart{
|
|
|
|
Canvas: Style{
|
|
|
|
FillColor: ColorLightGray,
|
|
|
|
},
|
|
|
|
Values: []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: "!!"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
b := bytes.NewBuffer([]byte{})
|
|
|
|
pie.Render(PNG, b)
|
2020-11-22 19:45:10 -05:00
|
|
|
testutil.AssertNotZero(t, b.Len())
|
2019-02-19 13:52:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDonutChartDropsZeroValues(t *testing.T) {
|
2020-11-22 19:45:10 -05:00
|
|
|
// replaced new assertions helper
|
2019-02-19 13:52:03 -05:00
|
|
|
|
|
|
|
pie := DonutChart{
|
|
|
|
Canvas: Style{
|
|
|
|
FillColor: ColorLightGray,
|
|
|
|
},
|
|
|
|
Values: []Value{
|
|
|
|
{Value: 5, Label: "Blue"},
|
|
|
|
{Value: 5, Label: "Green"},
|
|
|
|
{Value: 0, Label: "Gray"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
b := bytes.NewBuffer([]byte{})
|
|
|
|
err := pie.Render(PNG, b)
|
2020-11-22 19:45:10 -05:00
|
|
|
testutil.AssertNil(t, err)
|
2019-02-19 13:52:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDonutChartAllZeroValues(t *testing.T) {
|
2020-11-22 19:45:10 -05:00
|
|
|
// replaced new assertions helper
|
2019-02-19 13:52:03 -05:00
|
|
|
|
|
|
|
pie := DonutChart{
|
|
|
|
Canvas: Style{
|
|
|
|
FillColor: ColorLightGray,
|
|
|
|
},
|
|
|
|
Values: []Value{
|
|
|
|
{Value: 0, Label: "Blue"},
|
|
|
|
{Value: 0, Label: "Green"},
|
|
|
|
{Value: 0, Label: "Gray"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
b := bytes.NewBuffer([]byte{})
|
|
|
|
err := pie.Render(PNG, b)
|
2020-11-22 19:45:10 -05:00
|
|
|
testutil.AssertNotNil(t, err)
|
2019-02-19 13:52:03 -05:00
|
|
|
}
|