-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathtasks_list_test.go
65 lines (58 loc) · 1.35 KB
/
tasks_list_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
// 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))
}
}