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:
parent
c1468e8ae4
commit
f131def079
2 changed files with 11 additions and 3 deletions
|
@ -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()
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue