forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
field_caps_test.go
186 lines (171 loc) · 5.25 KB
/
field_caps_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
// 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"
"net/url"
"reflect"
"sort"
"testing"
)
func TestFieldCapsURLs(t *testing.T) {
tests := []struct {
Service *FieldCapsService
ExpectedPath string
ExpectedParams url.Values
}{
{
Service: &FieldCapsService{},
ExpectedPath: "/_field_caps",
ExpectedParams: url.Values{},
},
{
Service: &FieldCapsService{
index: []string{"index1", "index2"},
},
ExpectedPath: "/index1%2Cindex2/_field_caps",
ExpectedParams: url.Values{},
},
{
Service: &FieldCapsService{
index: []string{"index_*"},
pretty: boolPtr(true),
},
ExpectedPath: "/index_%2A/_field_caps",
ExpectedParams: url.Values{"pretty": []string{"true"}},
},
}
for _, test := range tests {
gotPath, gotParams, err := test.Service.buildURL()
if err != nil {
t.Fatalf("expected no error; got: %v", err)
}
if gotPath != test.ExpectedPath {
t.Errorf("expected URL path = %q; got: %q", test.ExpectedPath, gotPath)
}
if gotParams.Encode() != test.ExpectedParams.Encode() {
t.Errorf("expected URL params = %v; got: %v", test.ExpectedParams, gotParams)
}
}
}
func TestFieldCapsRequestSerialize(t *testing.T) {
req := &FieldCapsRequest{
Fields: []string{"creation_date", "answer_count"},
}
data, err := json.Marshal(req)
if err != nil {
t.Fatalf("marshaling to JSON failed: %v", err)
}
got := string(data)
expected := `{"fields":["creation_date","answer_count"]}`
if got != expected {
t.Fatalf("expected\n%s\n,got:\n%s", expected, got)
}
}
func TestFieldCapsRequestDeserialize(t *testing.T) {
body := `{
"fields" : ["creation_date", "answer_count"]
}`
var request FieldCapsRequest
if err := json.Unmarshal([]byte(body), &request); err != nil {
t.Fatalf("unexpected error during unmarshalling: %v", err)
}
sort.Sort(lexicographically{request.Fields})
expectedFields := []string{"answer_count", "creation_date"}
if !reflect.DeepEqual(request.Fields, expectedFields) {
t.Fatalf("expected fields to be %v, got %v", expectedFields, request.Fields)
}
}
func TestFieldCapsResponse(t *testing.T) {
body := `{
"_shards": {
"total": 1,
"successful": 1,
"failed": 0
},
"fields": {
"rating": {
"long": {
"searchable": true,
"aggregatable": false,
"indices": ["index1", "index2"],
"non_aggregatable_indices": ["index1"]
},
"keyword": {
"searchable": false,
"aggregatable": true,
"indices": ["index3", "index4"],
"non_searchable_indices": ["index4"]
}
},
"title": {
"text": {
"searchable": true,
"aggregatable": false
}
}
}
}`
var resp FieldCapsResponse
if err := json.Unmarshal([]byte(body), &resp); err != nil {
t.Errorf("unexpected error during unmarshalling: %v", err)
}
field, ok := resp.Fields["rating"]
if !ok {
t.Errorf("expected rating to be in the fields map, didn't find it")
}
{
caps, ok := field["long"]
if !ok {
t.Errorf("expected rating.long caps to be found")
}
if want, have := true, caps.Searchable; want != have {
t.Errorf("expected rating.long.searchable to be %v, got %v", want, have)
}
if want, have := false, caps.Aggregatable; want != have {
t.Errorf("expected rating.long.aggregatable to be %v, got %v", want, have)
}
if want, have := []string{"index1", "index2"}, caps.Indices; !reflect.DeepEqual(want, have) {
t.Errorf("expected rating.long.indices to be %v, got %v", want, have)
}
if want, have := []string{"index1"}, caps.NonAggregatableIndices; !reflect.DeepEqual(want, have) {
t.Errorf("expected rating.long.non_aggregatable_indices to be %v, got %v", want, have)
}
if want, have := 0, len(caps.NonSearchableIndices); want != have {
t.Errorf("expected rating.keyword.non_searchable_indices to be %v, got %v", want, have)
}
}
{
caps, ok := field["keyword"]
if !ok {
t.Errorf("expected rating.keyword caps to be found")
}
if want, have := false, caps.Searchable; want != have {
t.Errorf("expected rating.keyword.searchable to be %v, got %v", want, have)
}
if want, have := true, caps.Aggregatable; want != have {
t.Errorf("expected rating.keyword.aggregatable to be %v, got %v", want, have)
}
if want, have := []string{"index3", "index4"}, caps.Indices; !reflect.DeepEqual(want, have) {
t.Errorf("expected rating.keyword.indices to be %v, got %v", want, have)
}
if want, have := 0, len(caps.NonAggregatableIndices); want != have {
t.Errorf("expected rating.keyword.non_aggregatable_indices to be %v, got %v", want, have)
}
if want, have := []string{"index4"}, caps.NonSearchableIndices; !reflect.DeepEqual(want, have) {
t.Errorf("expected rating.keyword.non_searchable_indices to be %v, got %v", want, have)
}
}
}
func TestFieldCapsIntegrationTest(t *testing.T) {
client := setupTestClientAndCreateIndexAndAddDocs(t) //, SetTraceLog(log.New(os.Stdout, "", 0)))
res, err := client.FieldCaps("_all").Fields("user", "message", "retweets", "created").Pretty(true).Do(context.TODO())
if err != nil {
t.Fatalf("expected no error; got: %v", err)
}
if res == nil {
t.Fatalf("expected response; got: %v", res)
}
}