-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensors_test.go
53 lines (50 loc) · 940 Bytes
/
sensors_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 sensors
import (
"io/ioutil"
"testing"
"github.com/sirupsen/logrus"
)
func TestProcessData(t *testing.T) {
logrus.SetOutput(ioutil.Discard)
type args struct {
inputFile string
outputFile string
}
tests := []struct {
name string
args args
wantErr bool
}{
{
"read input.json file and dump response to output_test.json",
args{
inputFile: "input.json",
outputFile: "output_test.json",
},
false,
},
{
"error on empty input file",
args{
inputFile: "",
outputFile: "output_test.json",
},
true,
},
{
"error on empty output file",
args{
inputFile: "input.json",
outputFile: "",
},
true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := ProcessData(tt.args.inputFile, tt.args.outputFile); (err != nil) != tt.wantErr {
t.Errorf("ProcessData() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}