summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olivere/elastic/indices_put_settings_test.go
blob: 0ceea3ef8a41d06a9cec84fae5a8894a2ad6eabf (plain)
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
// 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 TestIndicesPutSettingsBuildURL(t *testing.T) {
	client := setupTestClientAndCreateIndex(t)

	tests := []struct {
		Indices  []string
		Expected string
	}{
		{
			[]string{},
			"/_settings",
		},
		{
			[]string{"*"},
			"/%2A/_settings",
		},
		{
			[]string{"store-1", "store-2"},
			"/store-1%2Cstore-2/_settings",
		},
	}

	for _, test := range tests {
		path, _, err := client.IndexPutSettings().Index(test.Indices...).buildURL()
		if err != nil {
			t.Fatal(err)
		}
		if path != test.Expected {
			t.Errorf("expected %q; got: %q", test.Expected, path)
		}
	}
}

func TestIndicesSettingsLifecycle(t *testing.T) {
	client := setupTestClientAndCreateIndex(t)

	body := `{
		"index":{
			"refresh_interval":"-1"
		}
	}`

	// Put settings
	putres, err := client.IndexPutSettings().Index(testIndexName).BodyString(body).Do(context.TODO())
	if err != nil {
		t.Fatalf("expected put settings to succeed; got: %v", err)
	}
	if putres == nil {
		t.Fatalf("expected put settings response; got: %v", putres)
	}
	if !putres.Acknowledged {
		t.Fatalf("expected put settings ack; got: %v", putres.Acknowledged)
	}

	// Read settings
	getres, err := client.IndexGetSettings().Index(testIndexName).Do(context.TODO())
	if err != nil {
		t.Fatalf("expected get mapping to succeed; got: %v", err)
	}
	if getres == nil {
		t.Fatalf("expected get mapping response; got: %v", getres)
	}

	// Check settings
	index, found := getres[testIndexName]
	if !found {
		t.Fatalf("expected to return settings for index %q; got: %#v", testIndexName, getres)
	}
	// Retrieve "index" section of the settings for index testIndexName
	sectionIntf, ok := index.Settings["index"]
	if !ok {
		t.Fatalf("expected settings to have %q field; got: %#v", "index", getres)
	}
	section, ok := sectionIntf.(map[string]interface{})
	if !ok {
		t.Fatalf("expected settings to be of type map[string]interface{}; got: %#v", getres)
	}
	refintv, ok := section["refresh_interval"]
	if !ok {
		t.Fatalf(`expected JSON to include "refresh_interval" field; got: %#v`, getres)
	}
	if got, want := refintv, "-1"; got != want {
		t.Fatalf("expected refresh_interval = %v; got: %v", want, got)
	}
}