From 961c04cae992eadb42d286d2f85f8a675bdc68c8 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 29 Jan 2018 14:17:40 -0800 Subject: Upgrading server dependancies (#8154) --- .../github.com/olivere/elastic/tasks_list_test.go | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 vendor/github.com/olivere/elastic/tasks_list_test.go (limited to 'vendor/github.com/olivere/elastic/tasks_list_test.go') 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)) + } +} -- cgit v1.2.3-1-g7c22