summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/search_collapse_builder_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/olivere/elastic/search_collapse_builder_test.go')
-rw-r--r--vendor/github.com/olivere/elastic/search_collapse_builder_test.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendor/github.com/olivere/elastic/search_collapse_builder_test.go b/vendor/github.com/olivere/elastic/search_collapse_builder_test.go
new file mode 100644
index 000000000..0b74fadab
--- /dev/null
+++ b/vendor/github.com/olivere/elastic/search_collapse_builder_test.go
@@ -0,0 +1,29 @@
+// 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 TestCollapseBuilderSource(t *testing.T) {
+ b := NewCollapseBuilder("user").
+ InnerHit(NewInnerHit().Name("last_tweets").Size(5).Sort("date", true)).
+ MaxConcurrentGroupRequests(4)
+ src, err := b.Source()
+ if err != nil {
+ t.Fatal(err)
+ }
+ data, err := json.Marshal(src)
+ if err != nil {
+ t.Fatalf("marshaling to JSON failed: %v", err)
+ }
+ got := string(data)
+ expected := `{"field":"user","inner_hits":{"name":"last_tweets","size":5,"sort":[{"date":{"order":"asc"}}]},"max_concurrent_group_searches":4}`
+ if got != expected {
+ t.Errorf("expected\n%s\n,got:\n%s", expected, got)
+ }
+}