summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/tasks_list_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/olivere/elastic/tasks_list_test.go')
-rw-r--r--vendor/github.com/olivere/elastic/tasks_list_test.go65
1 files changed, 65 insertions, 0 deletions
diff --git a/vendor/github.com/olivere/elastic/tasks_list_test.go b/vendor/github.com/olivere/elastic/tasks_list_test.go
new file mode 100644
index 000000000..9ecabcd68
--- /dev/null
+++ b/vendor/github.com/olivere/elastic/tasks_list_test.go
@@ -0,0 +1,65 @@
+// 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"
+ "testing"
+)
+
+func TestTasksListBuildURL(t *testing.T) {
+ client := setupTestClient(t)
+
+ tests := []struct {
+ TaskId []string
+ Expected string
+ }{
+ {
+ []string{},
+ "/_tasks",
+ },
+ {
+ []string{"42"},
+ "/_tasks/42",
+ },
+ {
+ []string{"42", "37"},
+ "/_tasks/42%2C37",
+ },
+ }
+
+ for i, test := range tests {
+ path, _, err := client.TasksList().TaskId(test.TaskId...).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 TestTasksList(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 Tasks Management API yet", esversion)
+ }
+
+ res, err := client.TasksList().Pretty(true).Do(context.TODO())
+ if err != nil {
+ t.Fatal(err)
+ }
+ if res == nil {
+ t.Fatal("response is nil")
+ }
+ if len(res.Nodes) == 0 {
+ t.Fatalf("expected at least 1 node; got: %d", len(res.Nodes))
+ }
+}