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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
// 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 TestIndicesExistsTypeBuildURL(t *testing.T) {
client := setupTestClientAndCreateIndex(t)
tests := []struct {
Indices []string
Types []string
Expected string
ExpectValidateFailure bool
}{
{
[]string{},
[]string{},
"",
true,
},
{
[]string{"index1"},
[]string{},
"",
true,
},
{
[]string{},
[]string{"type1"},
"",
true,
},
{
[]string{"index1"},
[]string{"type1"},
"/index1/_mapping/type1",
false,
},
{
[]string{"index1", "index2"},
[]string{"type1"},
"/index1%2Cindex2/_mapping/type1",
false,
},
{
[]string{"index1", "index2"},
[]string{"type1", "type2"},
"/index1%2Cindex2/_mapping/type1%2Ctype2",
false,
},
}
for i, test := range tests {
err := client.TypeExists().Index(test.Indices...).Type(test.Types...).Validate()
if err == nil && test.ExpectValidateFailure {
t.Errorf("#%d: expected validate to fail", i+1)
continue
}
if err != nil && !test.ExpectValidateFailure {
t.Errorf("#%d: expected validate to succeed", i+1)
continue
}
if !test.ExpectValidateFailure {
path, _, err := client.TypeExists().Index(test.Indices...).Type(test.Types...).buildURL()
if err != nil {
t.Fatalf("#%d: %v", i+1, err)
}
if path != test.Expected {
t.Errorf("#%d: expected %q; got: %q", i+1, test.Expected, path)
}
}
}
}
func TestIndicesExistsType(t *testing.T) {
client := setupTestClient(t)
// Create index with tweet type
createIndex, err := client.CreateIndex(testIndexName).Body(testMapping).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if createIndex == nil {
t.Errorf("expected result to be != nil; got: %v", createIndex)
}
if !createIndex.Acknowledged {
t.Errorf("expected CreateIndexResult.Acknowledged %v; got %v", true, createIndex.Acknowledged)
}
// Check if type exists
exists, err := client.TypeExists().Index(testIndexName).Type("tweet").Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if !exists {
t.Fatalf("type %s should exist in index %s, but doesn't\n", "tweet", testIndexName)
}
// Delete index
deleteIndex, err := client.DeleteIndex(testIndexName).Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if !deleteIndex.Acknowledged {
t.Errorf("expected DeleteIndexResult.Acknowledged %v; got %v", true, deleteIndex.Acknowledged)
}
// Check if type exists
exists, err = client.TypeExists().Index(testIndexName).Type("tweet").Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if exists {
t.Fatalf("type %s should not exist in index %s, but it does\n", "tweet", testIndexName)
}
}
func TestIndicesExistsTypeValidate(t *testing.T) {
client := setupTestClient(t)
// No index name -> fail with error
res, err := NewIndicesExistsTypeService(client).Do(context.TODO())
if err == nil {
t.Fatalf("expected IndicesExistsType to fail without index name")
}
if res != false {
t.Fatalf("expected result to be false; got: %v", res)
}
}
|