Zero data range bar chart now returns custom error

Previously, in the case of no range between the data values,
`fmt.Errorf` was called (without format arguments), making the resulting
error difficult to compare by downstream users.  This has been replaced
with a custom error, and its test updated.

The `testutil` package does not appear to have a function allowing
assertion using `errors.Is` and therefore the `errors.Is` check is
performed in the test itself.
This commit is contained in:
Richard Pickering 2021-03-13 20:03:18 +00:00
parent c1468e8ae4
commit f131def079
2 changed files with 11 additions and 3 deletions

View file

@ -2,13 +2,16 @@ package chart
import ( import (
"errors" "errors"
"fmt"
"io" "io"
"math" "math"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
) )
var (
ErrZeroDataRange = errors.New("invalid data range; cannot be zero")
)
// BarChart is a chart that draws bars on a range. // BarChart is a chart that draws bars on a range.
type BarChart struct { type BarChart struct {
Title string Title string
@ -118,7 +121,7 @@ func (bc BarChart) Render(rp RendererProvider, w io.Writer) error {
canvasBox = bc.getDefaultCanvasBox() canvasBox = bc.getDefaultCanvasBox()
yr = bc.getRanges() yr = bc.getRanges()
if yr.GetMax()-yr.GetMin() == 0 { if yr.GetMax()-yr.GetMin() == 0 {
return fmt.Errorf("invalid data range; cannot be zero") return ErrZeroDataRange
} }
yr = bc.setRangeDomains(canvasBox, yr) yr = bc.setRangeDomains(canvasBox, yr)
yf = bc.getValueFormatters() yf = bc.getValueFormatters()

View file

@ -2,6 +2,7 @@ package chart
import ( import (
"bytes" "bytes"
"errors"
"math" "math"
"testing" "testing"
@ -43,7 +44,11 @@ func TestBarChartRenderZero(t *testing.T) {
buf := bytes.NewBuffer([]byte{}) buf := bytes.NewBuffer([]byte{})
err := bc.Render(PNG, buf) err := bc.Render(PNG, buf)
testutil.AssertNotNil(t, err) if err != nil {
if !errors.Is(err, ErrZeroDataRange) {
t.Errorf("assertion failed; expected %v to equal %v", err, ErrZeroDataRange)
}
}
} }
func TestBarChartProps(t *testing.T) { func TestBarChartProps(t *testing.T) {