-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathsearch_shards_test.go
35 lines (30 loc) · 967 Bytes
/
search_shards_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
// 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 TestSearchShards(t *testing.T) {
client := setupTestClientAndCreateIndex(t) //, SetTraceLog(log.New(os.Stdout, "", log.LstdFlags)))
indexes := []string{testIndexName}
shardsInfo, err := client.SearchShards(indexes...).
Pretty(true).
Do(context.Background())
if err != nil {
t.Fatal(err)
}
if shardsInfo == nil {
t.Fatal("expected to return an shards information")
}
if len(shardsInfo.Shards) < 1 {
t.Fatal("expected to return minimun one shard information")
}
if shardsInfo.Shards[0][0].Index != testIndexName {
t.Fatal("expected to return shard info concerning requested index")
}
if shardsInfo.Shards[0][0].State != "STARTED" {
t.Fatal("expected to return STARTED status for running shards")
}
}