-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain_test.go
240 lines (229 loc) · 5.22 KB
/
main_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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package main
import (
"errors"
"os"
"reflect"
"testing"
)
var testConfig = Config{
IsDebugMode: "true",
AuthToken: "abcd12345",
SentryURL: "https://sentry.io/",
OrgSlug: "my-org",
ProjectSlug: "my-project",
DsymPath: "path/to/dsym",
ProguardPath: "path/to/proguard",
}
/// TestCommandExecutor to mock command execution in tests
type TestCommandExecutor struct {
ret []byte
err error
}
func (c TestCommandExecutor) execute(command string, args ...string) ([]byte, error) {
os.Args = args
return c.ret, c.err
}
func TestDelegatePlatformUploads_Success(t *testing.T) {
var tests = []struct {
cmd CommandExecutor
cfg Config
expected []byte
}{
{
cmd: TestCommandExecutor{
ret: []byte("Success\n"),
err: nil,
},
cfg: Config{
SelectedPlatform: "both",
IsDebugMode: testConfig.IsDebugMode,
AuthToken: testConfig.AuthToken,
SentryURL: testConfig.SentryURL,
OrgSlug: testConfig.OrgSlug,
ProjectSlug: testConfig.ProguardPath,
DsymPath: testConfig.DsymPath,
ProguardPath: testConfig.ProguardPath,
},
expected: []byte("Uploads completed"),
},
{
cmd: TestCommandExecutor{
ret: []byte("Success\n"),
err: nil,
},
cfg: Config{
SelectedPlatform: "android",
IsDebugMode: testConfig.IsDebugMode,
AuthToken: testConfig.AuthToken,
SentryURL: testConfig.SentryURL,
OrgSlug: testConfig.OrgSlug,
ProjectSlug: testConfig.ProguardPath,
ProguardPath: testConfig.ProguardPath,
},
expected: []byte("Uploads completed"),
},
{
cmd: TestCommandExecutor{
ret: []byte("Success\n"),
err: nil,
},
cfg: Config{
SelectedPlatform: "ios",
IsDebugMode: testConfig.IsDebugMode,
AuthToken: testConfig.AuthToken,
SentryURL: testConfig.SentryURL,
OrgSlug: testConfig.OrgSlug,
ProjectSlug: testConfig.ProguardPath,
DsymPath: "mysd",
},
expected: []byte("Uploads completed"),
},
}
for _, test := range tests {
out, err := delegatePlatformUploads(test.cfg, test.cmd)
if err != nil {
t.Errorf("Test failed: %v", err)
}
if string(out) != string(test.expected) {
t.Errorf("Test failed: expected %v but got %v", test.expected, out)
}
// reset Args
os.Args = []string{}
}
}
func TestDelegatePlatformUploads_Fail(t *testing.T) {
var tests = []struct {
cmd CommandExecutor
cfg Config
expected []byte
}{
{
cmd: TestCommandExecutor{
ret: []byte("Error\n"),
err: errors.New("An error occurred"),
},
cfg: Config{
SelectedPlatform: "linux",
},
expected: []byte{},
},
{
cmd: TestCommandExecutor{
ret: []byte("Error\n"),
err: errors.New("An error occurred"),
},
cfg: Config{
SelectedPlatform: "both",
},
expected: []byte("Error\n"),
},
}
for _, test := range tests {
out, err := delegatePlatformUploads(test.cfg, test.cmd)
if err == nil {
t.Errorf("%v: %v", err, string(out))
}
if string(out) != string(test.expected) {
t.Errorf("Test failed: expected %v but got %v", test.expected, string(out))
}
// reset Args
os.Args = []string{}
}
}
func TestUploadSymbols_Success(t *testing.T) {
var tests = []struct {
cmd CommandExecutor
sentry SentryCommand
cfg Config
expected []string
}{
// proguard upload
{
cmd: TestCommandExecutor{
ret: []byte("Success\n"),
err: nil,
},
sentry: SentryCommand{
Command: uploadProguardCmd,
FilePath: testConfig.ProguardPath,
},
cfg: testConfig,
expected: []string{
"--auth-token",
testConfig.AuthToken,
uploadProguardCmd,
"--org",
testConfig.OrgSlug,
"--project",
testConfig.ProjectSlug,
testConfig.ProguardPath,
logDebugArg,
},
},
// dSYM upload
{
cmd: TestCommandExecutor{
ret: []byte("Success\n"),
err: nil,
},
sentry: SentryCommand{
Command: uploadDifCmd,
FilePath: testConfig.DsymPath,
},
cfg: testConfig,
expected: []string{
"--auth-token",
testConfig.AuthToken,
uploadDifCmd,
"--org",
testConfig.OrgSlug,
"--project",
testConfig.ProjectSlug,
testConfig.DsymPath,
logDebugArg,
},
},
}
for _, test := range tests {
_, err := uploadSymbols(test.cfg, test.sentry, test.cmd)
if !reflect.DeepEqual(os.Args, test.expected) {
t.Errorf("Test failed: Expected args %v, got %v", test.expected, os.Args)
}
if err != nil {
t.Errorf("Test failed with error %v", err)
}
// reset Args
os.Args = []string{}
}
}
func TestUploadSymbols_Failed(t *testing.T) {
// var cli =
var tests = []struct {
cmd CommandExecutor
sentry SentryCommand
cfg Config
expected error
}{
// proguard upload
{
cmd: TestCommandExecutor{
ret: nil,
err: errors.New("Upload failed"),
},
sentry: SentryCommand{
Command: uploadProguardCmd,
FilePath: testConfig.ProguardPath,
},
cfg: testConfig,
expected: errors.New("Upload failed"),
},
}
for _, test := range tests {
_, err := uploadSymbols(test.cfg, test.sentry, test.cmd)
if err == nil {
t.Errorf("Test failed: Expected args %v, got %v", test.expected, os.Args)
}
// reset Args
os.Args = []string{}
}
}