-
Notifications
You must be signed in to change notification settings - Fork 9
/
exporter_test.go
408 lines (347 loc) · 12.3 KB
/
exporter_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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
Copyright © 2021, 2022, 2023 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main_test
// Unit test definitions for functions and methods defined in source file
// exporter.go
// Generated documentation is available at:
// https://pkg.go.dev/github.com/RedHatInsights/insights-results-aggregator-exporter
//
// Documentation in literate-programming-style is available at:
// https://redhatinsights.github.io/insights-results-aggregator-exporter/packages/exporter_test.html
import (
"os"
"testing"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/stretchr/testify/assert"
"github.com/tisnik/go-capture"
main "github.com/RedHatInsights/insights-results-aggregator-exporter"
)
const (
expectedVersionMessage = "Insights Results Aggregator Exporter version 1.0"
expectedAuthorsMessage = "Pavel Tisnovsky"
expectedCopyrightMessage = "Red Hat Inc."
expectedConfigurationMessage1 = "Driver"
expectedConfigurationMessage2 = "Username"
expectedConfigurationMessage3 = "Host"
)
func init() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
}
// TestShowVersion checks the function showVersion
func TestShowVersion(t *testing.T) {
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
main.ShowVersion()
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedVersionMessage)
}
// TestShowAuthors checks the function showAuthors
func TestShowAuthors(t *testing.T) {
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
main.ShowAuthors()
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedAuthorsMessage)
assert.Contains(t, output, expectedCopyrightMessage)
}
// TestShowConfiguration checks the function ShowConfiguration
func TestShowConfiguration(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
// try to call the tested function and capture its output
output, err := capture.ErrorOutput(func() {
log.Logger = log.Output(zerolog.New(os.Stderr))
main.ShowConfiguration(&configuration)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedConfigurationMessage1)
assert.Contains(t, output, expectedConfigurationMessage2)
assert.Contains(t, output, expectedConfigurationMessage3)
}
func checkCapture(t *testing.T, err error) {
if err != nil {
t.Fatal("Unable to capture standard output", err)
}
}
// TestDoSelectedOperationShowVersion checks the function showVersion called
// via doSelectedOperation function
func TestDoSelectedOperationShowVersion(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: true,
ShowAuthors: false,
ShowConfiguration: false,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
code, err := main.DoSelectedOperation(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedVersionMessage)
}
// TestDoSelectedOperationShowAuthors checks the function showAuthors called
// via doSelectedOperation function
func TestDoSelectedOperationShowAuthors(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: true,
ShowConfiguration: false,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
code, err := main.DoSelectedOperation(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedAuthorsMessage)
assert.Contains(t, output, expectedCopyrightMessage)
}
// TestDoSelectedOperationShowConfiguration checks the function
// showConfiguration called via doSelectedOperation function
func TestDoSelectedOperationShowConfiguration(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: true,
}
// try to call the tested function and capture its output
output, err := capture.ErrorOutput(func() {
log.Logger = log.Output(zerolog.New(os.Stderr))
code, err := main.DoSelectedOperation(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expectedConfigurationMessage1)
assert.Contains(t, output, expectedConfigurationMessage2)
assert.Contains(t, output, expectedConfigurationMessage3)
}
// TestDoSelectedOperationCheckS3Connection checks the function
// checkS3Connection called via doSelectedOperation function
func TestDoSelectedOperationCheckS3Connection(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: true,
}
code, err := main.DoSelectedOperation(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusS3Error)
assert.Error(t, err)
}
// TestPrintTables checks the function printTables
func TestPrintTables(t *testing.T) {
tables := []main.TableName{
main.TableName("first"),
main.TableName("second"),
main.TableName("third"),
}
output, err := capture.ErrorOutput(func() {
log.Logger = log.Output(zerolog.New(os.Stderr))
main.PrintTables(tables)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, "\\\"table\\\":\\\"first\\\"")
assert.Contains(t, output, "\\\"table\\\":\\\"second\\\"")
assert.Contains(t, output, "\\\"table\\\":\\\"third\\\"")
}
// TestParseFlags is dummy test for parseFlags function
func TestParseFlags(t *testing.T) {
flags := main.ParseFlags()
assert.NotNil(t, flags)
}
// TestPerformDataExportViaDoSelectedOperation checks the function
// performDataExport.
func TestPerformDataExportViaDoSelectedOperation(t *testing.T) {
// fill in configuration structure w/o specifying S3 connection or DB
// connection
configuration := main.ConfigStruct{}
// default operation is export data
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: false,
}
// the call should fail
code, err := main.DoSelectedOperation(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusStorageError)
assert.Error(t, err)
}
// TestCheckS3Connection checks the function CheckS3Connection
func TestCheckS3Connection(t *testing.T) {
// fill in configuration structure
// w/o specifying S3 connection
configuration := main.ConfigStruct{}
// the call should fail
code, err := main.CheckS3Connection(&configuration)
assert.Equal(t, code, main.ExitStatusS3Error)
assert.Error(t, err)
}
// TestPerformDataExport checks the function performDataExport.
func TestPerformDataExportNoStorage(t *testing.T) {
// fill in configuration structure w/o specifying S3 connection or DB
// connection
configuration := main.ConfigStruct{}
// default operation is export data
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: false,
}
// the call should fail
code, err := main.PerformDataExport(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusStorageError)
assert.Error(t, err)
}
// TestPerformDataExport checks the function performDataExport.
func TestPerformDataExportConfigError(t *testing.T) {
// fill in configuration structure w/o specifying S3 connection
// but DB connection is specified
configuration := main.ConfigStruct{
main.StorageConfiguration{
Driver: "postgres",
PGUsername: "user",
PGPassword: "password",
PGHost: "nowhere",
PGPort: 1234,
PGDBName: "test",
PGParams: "",
LogSQLQueries: true,
},
main.S3Configuration{},
main.LoggingConfiguration{},
main.SentryConfiguration{},
}
// default operation is export data
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: false,
}
// the call should fail, but now because of improper configuration
code, err := main.PerformDataExport(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusConfigurationError)
assert.Error(t, err)
}
// TestPerformDataExport checks the function performDataExport.
func TestPerformDataExportToS3(t *testing.T) {
// fill in configuration structure w/o specifying S3 connection
// but DB connection is specified
configuration := main.ConfigStruct{
main.StorageConfiguration{
Driver: "postgres",
PGUsername: "user",
PGPassword: "password",
PGHost: "nowhere",
PGPort: 1234,
PGDBName: "test",
PGParams: "",
LogSQLQueries: true,
},
main.S3Configuration{},
main.LoggingConfiguration{},
main.SentryConfiguration{},
}
// default operation is export data
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: false,
Output: "S3",
}
// the call should fail due to inaccessible S3/Minio
code, err := main.PerformDataExport(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusS3Error)
assert.Error(t, err)
}
// TestPerformDataExport checks the function performDataExport.
func TestPerformDataExportToFile(t *testing.T) {
// fill in configuration structure w/o specifying S3 connection
// but DB connection is specified
configuration := main.ConfigStruct{
main.StorageConfiguration{
Driver: "postgres",
PGUsername: "user",
PGPassword: "password",
PGHost: "nowhere",
PGPort: 1234,
PGDBName: "test",
PGParams: "",
LogSQLQueries: true,
},
main.S3Configuration{},
main.LoggingConfiguration{},
main.SentryConfiguration{},
}
// default operation is export data
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
CheckS3Connection: false,
Output: "file",
}
// the call should fail due to inaccessible storage (DB)
code, err := main.PerformDataExport(&configuration, cliFlags, &log.Logger)
assert.Equal(t, code, main.ExitStatusStorageError)
assert.Error(t, err)
}
// TestConstructIgnoreTableMapEmptyInput checks the function
// constructIgnoredTablesMap for empty input.
func TestConstructIgnoreTableMapEmptyInput(t *testing.T) {
m := main.ConstructIgnoredTablesMap("")
assert.Len(t, m, 0, "Empty map should be returned")
}
// TestConstructIgnoreTableMapOneTable checks the function
// constructIgnoredTablesMap for input with one table only.
func TestConstructIgnoreTableMapOneTable(t *testing.T) {
m := main.ConstructIgnoredTablesMap("table_name")
assert.Len(t, m, 1, "Map with one item should be returned")
assert.Contains(t, m, "table_name", "Table name should be added into a map")
}
// TestConstructIgnoreTableMapTwoTables checks the function
// constructIgnoredTablesMap for input with two tables
func TestConstructIgnoreTableMapTwoTables(t *testing.T) {
m := main.ConstructIgnoredTablesMap("table1,table2")
assert.Len(t, m, 2, "Map with two items should be returned")
assert.Contains(t, m, "table1")
assert.Contains(t, m, "table2")
}
func TestSetObjectPrefix(t *testing.T) {
assert.Equal(t, "test/bucket", main.SetObjectPrefix("test", "bucket"))
assert.Equal(t, "bucket", main.SetObjectPrefix("", "bucket"))
}