-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchart_test.go
53 lines (38 loc) · 1.08 KB
/
chart_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
package main
import (
"os"
"reflect"
"testing"
)
func TestGetLatest(t *testing.T) {
var input string = "|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15"
expected := []string{"11", "12", "13", "14", "15"}
result := GetLatest(input, 5)
if !reflect.DeepEqual(result, expected) {
t.Errorf("got %q, wanted %q", result, expected)
}
}
func TestGetLatestShort(t *testing.T) {
var input string = "|1|2|3|4|5"
expected := []string{"", "1", "2", "3", "4", "5"}
result := GetLatest(input, 10)
if !reflect.DeepEqual(result, expected) {
t.Errorf("got %q, wanted %q", result, expected)
}
}
func TestUseFile(t *testing.T) {
var fileName string = "example.csv"
expected := []string{"11", "12", "13", "14", "15"}
result := GetChartData(fileName, "", 5)
if !reflect.DeepEqual(result, expected) {
t.Errorf("got %q, wanted %q", result, expected)
}
}
func TestUseEnvVar(t *testing.T) {
expected := []string{"5", "6", "7", "8"}
os.Setenv("chart", "1|2|3|4|5|6|7|8")
result := GetChartData("", "chart", 4)
if !reflect.DeepEqual(result, expected) {
t.Errorf("got %q, wanted %q", result, expected)
}
}