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
|
// 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"
"encoding/json"
"testing"
)
func TestUpdateByQueryBuildURL(t *testing.T) {
client := setupTestClient(t)
tests := []struct {
Indices []string
Types []string
Expected string
ExpectErr bool
}{
{
[]string{},
[]string{},
"",
true,
},
{
[]string{"index1"},
[]string{},
"/index1/_update_by_query",
false,
},
{
[]string{"index1", "index2"},
[]string{},
"/index1%2Cindex2/_update_by_query",
false,
},
{
[]string{},
[]string{"type1"},
"",
true,
},
{
[]string{"index1"},
[]string{"type1"},
"/index1/type1/_update_by_query",
false,
},
{
[]string{"index1", "index2"},
[]string{"type1", "type2"},
"/index1%2Cindex2/type1%2Ctype2/_update_by_query",
false,
},
}
for i, test := range tests {
builder := client.UpdateByQuery().Index(test.Indices...).Type(test.Types...)
err := builder.Validate()
if err != nil {
if !test.ExpectErr {
t.Errorf("case #%d: %v", i+1, err)
continue
}
} else {
// err == nil
if test.ExpectErr {
t.Errorf("case #%d: expected error", i+1)
continue
}
path, _, _ := builder.buildURL()
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")).getBody()
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++")).
getBody()
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":{"source":"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(context.TODO())
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(context.TODO())
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)
}
}
|