forked from olivere/elastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docvalue_field_test.go
58 lines (53 loc) · 1.3 KB
/
docvalue_field_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
// 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 (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestDocvalueField(t *testing.T) {
tests := []struct {
Doc DocvalueField
Want interface{}
}{
{
Doc: DocvalueField{},
Want: "",
},
{
Doc: DocvalueField{Field: "name"},
Want: "name",
},
{
Doc: DocvalueField{Field: "name", Format: "epoch_millis"},
Want: map[string]interface{}{"field": "name", "format": "epoch_millis"},
},
}
for _, tt := range tests {
have, err := tt.Doc.Source()
if err != nil {
t.Fatalf("Source(%#v): err=%v", tt.Doc, err)
}
if want := tt.Want; !cmp.Equal(want, have) {
t.Fatalf("Source(%#v): want %v, have %v", tt.Doc, want, have)
}
}
}
func TestDocvalueFields(t *testing.T) {
doc := DocvalueFields{
DocvalueField{Field: "retweets"},
DocvalueField{Field: "name", Format: "epoch_millis"},
}
have, err := doc.Source()
if err != nil {
t.Fatalf("Source(%#v): err=%v", doc, err)
}
want := []interface{}{
"retweets",
map[string]interface{}{"field": "name", "format": "epoch_millis"},
}
if !cmp.Equal(want, have) {
t.Fatalf("Source(%#v): want %v, have %v", doc, want, have)
}
}