-
Notifications
You must be signed in to change notification settings - Fork 55
/
integration_test.go
396 lines (300 loc) · 9.13 KB
/
integration_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
//go:build integration
// +build integration
package vulcanizer_test
import (
"testing"
"time"
"github.com/github/vulcanizer"
)
func TestNodes(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
nodes, err := c.GetNodes()
if err != nil {
t.Fatalf("Error getting nodes: %s", err)
}
if len(nodes) != 2 {
t.Fatalf("Expected two nodes, got: %v", len(nodes))
}
}
func TestIndices(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
indices, err := c.GetAllIndices()
if err != nil {
t.Fatalf("Error getting indices: %s", err)
}
if len(indices) != 1 {
t.Fatalf("Expected 1 index, got: %v", len(indices))
}
if indices[0].DocumentCount != 10 {
t.Fatalf("Expected 10 docs, got: %v", indices[0].DocumentCount)
}
if indices[0].ReplicaCount != 1 {
t.Fatalf("Expected replica count of 1, got: %v", indices[0].ReplicaCount)
}
_, _, err = c.SetIndexSetting(indices[0].Name, "number_of_replicas", "2")
if err != nil {
t.Fatalf("Error setting index number_of_replicas: %s", err)
}
indexSettings, err := c.GetIndexSettings(indices[0].Name)
if err != nil {
t.Fatalf("Error getting index settings: %s", err)
}
for i := range indexSettings {
setting := indexSettings[i]
if setting.Setting == "number_of_replicas" && setting.Value != "2" {
t.Fatalf("Expected replica count of 2, got: %v", setting)
}
}
indices, err = c.GetAllIndices()
if err != nil {
t.Fatalf("Error getting indices: %s", err)
}
if indices[0].ReplicaCount != 2 {
t.Fatalf("Expected replica count of 2, got: %v", indices[0].ReplicaCount)
}
}
func TestAliases(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
aliases, err := c.GetAllAliases()
if err != nil {
t.Fatalf("Error getting aliases: %s", err)
}
if len(aliases) != 1 {
t.Fatalf("Expected 1 index, got: %v", len(aliases))
}
if aliases[0].Name != "integration_test_alias" {
t.Fatalf("Expected aliases with name integration_test_alias, got: %v", aliases[0].Name)
}
if aliases[0].IndexName != "integration_test" {
t.Fatalf("Expected index name integration_test, got: %v", aliases[0].IndexName)
}
}
func TestAliasesAddDeleteUpdate(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
t.Run("update index alias", func(t *testing.T) {
actions := []vulcanizer.AliasAction{
{
ActionType: vulcanizer.AddAlias,
IndexName: "integration_test",
AliasName: "integration_test_new_alias",
},
{
ActionType: vulcanizer.RemoveAlias,
IndexName: "integration_test",
AliasName: "integration_test_alias",
},
}
err := c.ModifyAliases(actions)
if err != nil {
t.Fatalf("Error modifying aliases: %s", err)
}
aliases, err := c.GetAllAliases()
if err != nil {
t.Fatalf("Error getting aliases: %s", err)
}
if len(aliases) != 1 {
t.Fatalf("Expected 1 index, got: %v", len(aliases))
}
if aliases[0].Name != "integration_test_new_alias" {
t.Fatalf("Expected aliases with name integration_test_alias, got: %v", aliases[0].Name)
}
if aliases[0].IndexName != "integration_test" {
t.Fatalf("Expected indes name integration_test, got: %v", aliases[0].IndexName)
}
})
t.Run("delete index alias", func(t *testing.T) {
actions := []vulcanizer.AliasAction{
{
ActionType: vulcanizer.RemoveAlias,
IndexName: "integration_test",
AliasName: "integration_test_new_alias",
},
}
err := c.ModifyAliases(actions)
if err != nil {
t.Fatalf("Error modifying aliases: %s", err)
}
aliases, err := c.GetAllAliases()
if err != nil {
t.Fatalf("Error getting aliases: %s", err)
}
if len(aliases) != 0 {
t.Fatalf("Expected 0 index, got: %v", len(aliases))
}
})
t.Run("add new index alias", func(t *testing.T) {
actions := []vulcanizer.AliasAction{
{
ActionType: vulcanizer.AddAlias,
IndexName: "integration_test",
AliasName: "integration_test_new_alias_again",
},
}
err := c.ModifyAliases(actions)
if err != nil {
t.Fatalf("Error modifying aliases: %s", err)
}
aliases, err := c.GetAliases("integration_test*")
if err != nil {
t.Fatalf("Error getting aliases: %s", err)
}
if len(aliases) != 1 {
t.Fatalf("Expected 1 index, got: %v", len(aliases))
}
if aliases[0].Name != "integration_test_new_alias_again" {
t.Fatalf("Expected aliases with name integration_test_new_alias_again, got: %v", aliases[0].Name)
}
if aliases[0].IndexName != "integration_test" {
t.Fatalf("Expected indes name integration_test, got: %v", aliases[0].IndexName)
}
})
}
func TestVerifyRepository(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
verified, err := c.VerifyRepository("backup-repo")
if err != nil {
t.Fatalf("Error verifying repositories: %s", err)
}
if !verified {
t.Fatalf("Expected to backup-repo to be a verified repository")
}
}
func TestSnapshots(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
repos, err := c.GetRepositories()
if err != nil {
t.Fatalf("Error getting repositories: %s", err)
}
if len(repos) != 1 {
t.Fatalf("Expected 1 repository, got: %+v", repos)
}
if repos[0].Name != "backup-repo" || repos[0].Type != "fs" {
t.Fatalf("Unexpected repository values, got: %+v", repos[0])
}
snapshots, err := c.GetSnapshots("backup-repo")
if err != nil {
t.Fatalf("Error getting snapshots: %s", err)
}
if len(snapshots) != 1 || snapshots[0].Name != "snapshot_1" {
t.Fatalf("Did not retrieve expected snapshots: %+v", snapshots)
}
snapshot, err := c.GetSnapshotStatus("backup-repo", "snapshot_1")
if err != nil {
t.Fatalf("Error getting snapshot status: %s", err)
}
if snapshot.State != "SUCCESS" {
t.Fatalf("Expected snapshot to be a success: %+v", snapshot)
}
err = c.SnapshotAllIndices("backup-repo", "snapshot_2")
if err != nil {
t.Fatalf("Error taking second snapshot: %s", err)
}
// Allow snapshot operation to complete
time.Sleep(5 * time.Second)
err = c.DeleteSnapshot("backup-repo", "snapshot_1")
if err != nil {
t.Fatalf("Error deleting snapshot: %s", err)
}
snapshots, err = c.GetSnapshots("backup-repo")
if err != nil {
t.Fatalf("Error getting snapshots after delete: %s", err)
}
if len(snapshots) != 1 || snapshots[0].Name != "snapshot_2" {
t.Fatalf("Unexpected snapshots, got: %+v", snapshots)
}
err = c.RestoreSnapshotIndices("backup-repo", "snapshot_2", []string{"integration_test"}, "restored_", nil)
// Let the restore complete
time.Sleep(5 * time.Second)
indices, err := c.GetAllIndices()
if err != nil {
t.Fatalf("Error getting indices: %s", err)
}
if len(indices) != 2 {
t.Fatalf("Expected 2 indices: %+v", indices)
}
var foundOriginalIndex, foundRestoredIndex bool
for _, i := range indices {
if i.Name == "integration_test" {
foundOriginalIndex = true
} else if i.Name == "restored_integration_test" {
foundRestoredIndex = true
}
}
if !foundOriginalIndex || !foundRestoredIndex {
t.Fatalf("Couldn't find expected indices: %+v", indices)
}
err = c.DeleteIndex("restored_integration_test")
if err != nil {
t.Fatalf("Error deleting restored_integration_test index: %+v", indices)
}
indices, err = c.GetAllIndices()
if err != nil {
t.Fatalf("Error getting indices after index deletion: %s", err)
}
if len(indices) != 1 {
t.Fatalf("Expected 1 indices: %+v", indices)
}
}
func TestAllocations(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
val, err := c.SetAllocation("disable")
if err != nil {
t.Fatalf("Error disabling allocation: %s", err)
}
if val != "none" {
t.Fatalf("Expected allocation to be none, got %s", val)
}
val, err = c.SetAllocation("enable")
if err != nil {
t.Fatalf("Error enabling allocation: %s", err)
}
if val != "all" {
t.Fatalf("Expected allocation to be all, got %s", val)
}
}
func TestGetShards_AllNodes(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
val, err := c.GetShards(nil)
if err != nil {
t.Fatalf("Error fetching shards: %s", err)
}
if val == nil {
t.Fatal("Expected a slice of Shard, got nil instead")
}
// Account for the unassigned replicas
if len(val) != 6 {
t.Fatalf("Expected 6 shards, got %d instead", len(val))
}
}
func TestGetShards_Regexp(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
val, err := c.GetShards([]string{"vulcanizer-elasticsearch-v(\\d|\\d-\\d)"})
if err != nil {
t.Fatalf("Error fetching shards: %s", err)
}
if val == nil {
t.Fatal("Expected a slice of Shard, got nil instead")
}
if len(val) != 4 {
t.Fatalf("Expected 4 shards, got %d instead", len(val))
}
}
func TestGetShardOverlap(t *testing.T) {
c := vulcanizer.NewClient("localhost", 49200)
val, err := c.GetShardOverlap([]string{"vulcanizer-elasticsearch-v(\\d|\\d-\\d)"})
if err != nil {
t.Fatalf("Error fetching shard overlap data: %s", err)
}
if val == nil {
t.Fatal("Excepted a map, got nil instead")
}
if val["integration_test_0"].PrimaryFound != true {
t.Fatal("Expected PrimaryFound == false, got true instead")
}
if val["integration_test_0"].ReplicasFound != 1 {
t.Fatalf("Expected 1 ReplicasFound, got %d instead", val["integration_test0"].ReplicasFound)
}
if val["integration_test_0"].ReplicasTotal != 2 {
t.Fatalf("Expected 2 ReplicasTotal, got %d instead", val["integration_test0"].ReplicasTotal)
}
}