-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathindices_clear_cache_test.go
55 lines (48 loc) · 1.13 KB
/
indices_clear_cache_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
// Copyright 2012-present Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
import (
"context"
"testing"
)
func TestIndicesClearCache(t *testing.T) {
client := setupTestClientAndCreateIndex(t)
res, err := client.ClearCache().Do(context.Background())
if err != nil {
t.Fatalf("expected ClearCache to succeed, got: %v", err)
}
if res == nil {
t.Fatalf("expected result to be != nil; got: %v", res)
}
}
func TestIndicesClearCacheBuildURL(t *testing.T) {
client := setupTestClient(t)
tests := []struct {
Indices []string
Expected string
}{
{
[]string{},
"/_cache/clear",
},
{
[]string{"index1"},
"/index1/_cache/clear",
},
{
[]string{"index1", "index2"},
"/index1%2Cindex2/_cache/clear",
},
}
for i, test := range tests {
path, _, err := client.ClearCache().Index(test.Indices...).buildURL()
if err != nil {
t.Errorf("case #%d: %v", i+1, err)
continue
}
if path != test.Expected {
t.Errorf("case #%d: expected %q; got: %q", i+1, test.Expected, path)
}
}
}