summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go b/vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go
index 75abac835..2c8da9b7f 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/indices_get_aliases_test.go
@@ -18,15 +18,15 @@ func TestAliasesBuildURL(t *testing.T) {
}{
{
[]string{},
- "/_aliases",
+ "/_alias",
},
{
[]string{"index1"},
- "/index1/_aliases",
+ "/index1/_alias",
},
{
[]string{"index1", "index2"},
- "/index1%2Cindex2/_aliases",
+ "/index1%2Cindex2/_alias",
},
}
@@ -45,6 +45,7 @@ func TestAliasesBuildURL(t *testing.T) {
func TestAliases(t *testing.T) {
var err error
+ //client := setupTestClientAndCreateIndex(t, SetTraceLog(log.New(os.Stdout, "", 0)))
client := setupTestClientAndCreateIndex(t)
// Some tweets
@@ -53,16 +54,16 @@ func TestAliases(t *testing.T) {
tweet3 := tweet{User: "olivere", Message: "Another unrelated topic."}
// Add tweets to first index
- _, err = client.Index().Index(testIndexName).Type("tweet").Id("1").BodyJson(&tweet1).Do(context.TODO())
+ _, err = client.Index().Index(testIndexName).Type("doc").Id("1").BodyJson(&tweet1).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
- _, err = client.Index().Index(testIndexName).Type("tweet").Id("2").BodyJson(&tweet2).Do(context.TODO())
+ _, err = client.Index().Index(testIndexName).Type("doc").Id("2").BodyJson(&tweet2).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
// Add tweets to second index
- _, err = client.Index().Index(testIndexName2).Type("tweet").Id("3").BodyJson(&tweet3).Do(context.TODO())
+ _, err = client.Index().Index(testIndexName2).Type("doc").Id("3").BodyJson(&tweet3).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
@@ -80,7 +81,7 @@ func TestAliases(t *testing.T) {
// Alias should not yet exist
aliasesResult1, err := client.Aliases().
Index(testIndexName, testIndexName2).
- //Pretty(true).
+ Pretty(true).
Do(context.TODO())
if err != nil {
t.Fatal(err)