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)
indexes := []string{testIndexName}
shardsInfo, err := client.SearchShards(indexes...).Do(context.TODO())
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")
}
}
|