Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
removing go-sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
wcharczuk committed Sep 11, 2023
1 parent 2ff5404 commit 2c2fb06
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 17 deletions.
31 changes: 14 additions & 17 deletions logarithmic_range_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,44 +3,41 @@ package chart
import (
"testing"

"github.com/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/v2/testutil"
)

func TestLogRangeTranslate(t *testing.T) {
assert := assert.New(t)
values := []float64{1, 10, 100, 1000, 10000, 100000, 1000000}
r := LogarithmicRange{Domain: 1000}
r.Min, r.Max = MinMax(values...)

assert.Equal(0, r.Translate(0)) // goes to bottom
assert.Equal(0, r.Translate(1)) // goes to bottom
assert.Equal(160, r.Translate(10)) // roughly 1/6th of max
assert.Equal(500, r.Translate(1000)) // roughly 1/2 of max (1.0e6 / 1.0e3)
assert.Equal(1000, r.Translate(1000000)) // max value
testutil.AssertEqual(t, 0, r.Translate(0)) // goes to bottom
testutil.AssertEqual(t, 0, r.Translate(1)) // goes to bottom
testutil.AssertEqual(t, 160, r.Translate(10)) // roughly 1/6th of max
testutil.AssertEqual(t, 500, r.Translate(1000)) // roughly 1/2 of max (1.0e6 / 1.0e3)
testutil.AssertEqual(t, 1000, r.Translate(1000000)) // max value
}

func TestGetTicks(t *testing.T) {
assert := assert.New(t)
values := []float64{35, 512, 1525122}
r := LogarithmicRange{Domain: 1000}
r.Min, r.Max = MinMax(values...)

ticks := r.GetTicks(nil, Style{}, FloatValueFormatter)
assert.Equal(7, len(ticks))
assert.Equal(10, ticks[0].Value)
assert.Equal(100, ticks[1].Value)
assert.Equal(10000000, ticks[6].Value)
testutil.AssertEqual(t, 7, len(ticks))
testutil.AssertEqual(t, 10, ticks[0].Value)
testutil.AssertEqual(t, 100, ticks[1].Value)
testutil.AssertEqual(t, 10000000, ticks[6].Value)
}

func TestGetTicksFromHigh(t *testing.T) {
assert := assert.New(t)
values := []float64{1412, 352144, 1525122} // min tick should be 1000
r := LogarithmicRange{}
r.Min, r.Max = MinMax(values...)

ticks := r.GetTicks(nil, Style{}, FloatValueFormatter)
assert.Equal(5, len(ticks))
assert.Equal(float64(1000), ticks[0].Value)
assert.Equal(float64(10000), ticks[1].Value)
assert.Equal(float64(10000000), ticks[4].Value)
testutil.AssertEqual(t, 5, len(ticks))
testutil.AssertEqual(t, float64(1000), ticks[0].Value)
testutil.AssertEqual(t, float64(10000), ticks[1].Value)
testutil.AssertEqual(t, float64(10000000), ticks[4].Value)
}
1 change: 1 addition & 0 deletions value_formatter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"testing"
"time"

"github.com/blend/go-sdk/assert"
"github.com/wcharczuk/go-chart/v2/testutil"
)

Expand Down

0 comments on commit 2c2fb06

Please sign in to comment.