-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathupdate_by_query_test.go
129 lines (119 loc) · 2.88 KB
/
update_by_query_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
// 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 (
"encoding/json"
"testing"
)
func TestUpdateByQueryBuildURL(t *testing.T) {
client := setupTestClient(t)
tests := []struct {
Indices []string
Types []string
Expected string
}{
{
[]string{},
[]string{},
"/_all/_update_by_query",
},
{
[]string{"index1"},
[]string{},
"/index1/_update_by_query",
},
{
[]string{"index1", "index2"},
[]string{},
"/index1%2Cindex2/_update_by_query",
},
{
[]string{},
[]string{"type1"},
"/_all/type1/_update_by_query",
},
{
[]string{"index1"},
[]string{"type1"},
"/index1/type1/_update_by_query",
},
{
[]string{"index1", "index2"},
[]string{"type1", "type2"},
"/index1%2Cindex2/type1%2Ctype2/_update_by_query",
},
}
for i, test := range tests {
path, _, err := client.UpdateByQuery().Index(test.Indices...).Type(test.Types...).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)
}
}
}
func TestUpdateByQueryBodyWithQuery(t *testing.T) {
client := setupTestClient(t)
out, err := client.UpdateByQuery().Query(NewTermQuery("user", "olivere")).body()
if err != nil {
t.Fatal(err)
}
b, err := json.Marshal(out)
if err != nil {
t.Fatal(err)
}
got := string(b)
want := `{"query":{"term":{"user":"olivere"}}}`
if got != want {
t.Fatalf("\ngot %s\nwant %s", got, want)
}
}
func TestUpdateByQueryBodyWithQueryAndScript(t *testing.T) {
client := setupTestClient(t)
out, err := client.UpdateByQuery().
Query(NewTermQuery("user", "olivere")).
Script(NewScriptInline("ctx._source.likes++")).
body()
if err != nil {
t.Fatal(err)
}
b, err := json.Marshal(out)
if err != nil {
t.Fatal(err)
}
got := string(b)
want := `{"query":{"term":{"user":"olivere"}},"script":{"inline":"ctx._source.likes++"}}`
if got != want {
t.Fatalf("\ngot %s\nwant %s", got, want)
}
}
func TestUpdateByQuery(t *testing.T) {
client := setupTestClientAndCreateIndexAndAddDocs(t) //, SetTraceLog(log.New(os.Stdout, "", 0)))
esversion, err := client.ElasticsearchVersion(DefaultURL)
if err != nil {
t.Fatal(err)
}
if esversion < "2.3.0" {
t.Skipf("Elasticsearch %v does not support update-by-query yet", esversion)
}
sourceCount, err := client.Count(testIndexName).Do()
if err != nil {
t.Fatal(err)
}
if sourceCount <= 0 {
t.Fatalf("expected more than %d documents; got: %d", 0, sourceCount)
}
res, err := client.UpdateByQuery(testIndexName).ProceedOnVersionConflict().Do()
if err != nil {
t.Fatal(err)
}
if res == nil {
t.Fatal("response is nil")
}
if res.Updated != sourceCount {
t.Fatalf("expected %d; got: %d", sourceCount, res.Updated)
}
}