Explicitly prevent empty ranges

This commit is contained in:
Alexey Kirpichnikov 2019-05-23 15:59:57 +05:00
parent b719c1c512
commit 231ff42904
No known key found for this signature in database
GPG key ID: AB57039A418CA645
2 changed files with 35 additions and 0 deletions

View file

@ -133,6 +133,10 @@ func GeneratePrettyContinuousTicks(r Renderer, ra Range, isVertical bool, style
rangeMin, rangeMax := ra.GetMin(), ra.GetMax()
if rangeMin >= rangeMax || ra.GetDomain() == 0 {
return []Tick{}
}
renderedLabelExample := vf(rangeMin)
style.GetTextOptions().WriteToRenderer(r)
renderedLabelSizePx := r.MeasureText(renderedLabelExample)

View file

@ -95,6 +95,37 @@ func TestGenerateContinuousPrettyTicks(t *testing.T) {
{Label: "60.00", Value: 60}})
}
func TestGenerateContinuousPrettyTicksForEmptyRange(t *testing.T) {
assert := assert.New(t)
f, err := GetDefaultFont()
assert.Nil(err)
r, err := PNG(1024, 1024)
assert.Nil(err)
r.SetFont(f)
ra := &ContinuousRange{
Min: 1.0,
Max: 1.0,
Domain: 256,
}
vf := FloatValueFormatter
ticks := GeneratePrettyContinuousTicks(r, ra, false, Style{}, vf)
assert.Empty(ticks)
ra = &ContinuousRange{
Min: 1.0,
Max: 2.0,
Domain: 0,
}
ticks = GeneratePrettyContinuousTicks(r, ra, false, Style{}, vf)
assert.Empty(ticks)
}
func TestGeneratePrettyTicksForVerySmallRange(t *testing.T) {
assert := assert.New(t)