-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrate_test.go
56 lines (49 loc) · 900 Bytes
/
rate_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetDailyRates(t *testing.T) {
}
func TestFindRateOn15th(t *testing.T) {
rates, _ := GetDailyRates(30) // TODO do some error assertions
_, _ = FindRateOn15th(rates)
}
func TestDecideDay(t *testing.T) {
tests := []struct {
name string
input map[int]string
want string
}{
{
name: "map with 15th",
input: map[int]string{
14: "5.0",
15: "10.0",
16: "20.0",
},
want: "10.0",
},
{
name: "map without 15th, with 14 (preferred) and 16",
input: map[int]string{
14: "5.0",
16: "20.0",
},
want: "5.0",
},
{
name: "map without 15th, with 16",
input: map[int]string{
16: "20.0",
},
want: "20.0",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := DecideDay(tt.input)
assert.Equal(t, got, tt.want)
})
}
}