From 961c04cae992eadb42d286d2f85f8a675bdc68c8 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 29 Jan 2018 14:17:40 -0800 Subject: Upgrading server dependancies (#8154) --- .../olivere/elastic/snapshot_create_test.go | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 vendor/github.com/olivere/elastic/snapshot_create_test.go (limited to 'vendor/github.com/olivere/elastic/snapshot_create_test.go') diff --git a/vendor/github.com/olivere/elastic/snapshot_create_test.go b/vendor/github.com/olivere/elastic/snapshot_create_test.go new file mode 100644 index 000000000..74b009cfe --- /dev/null +++ b/vendor/github.com/olivere/elastic/snapshot_create_test.go @@ -0,0 +1,63 @@ +package elastic + +import ( + "net/url" + "reflect" + "testing" +) + +func TestSnapshotValidate(t *testing.T) { + var client *Client + + err := NewSnapshotCreateService(client).Validate() + got := err.Error() + expected := "missing required fields: [Repository Snapshot]" + if got != expected { + t.Errorf("expected %q; got: %q", expected, got) + } +} + +func TestSnapshotPutURL(t *testing.T) { + client := setupTestClient(t) + + tests := []struct { + Repository string + Snapshot string + Pretty bool + MasterTimeout string + WaitForCompletion bool + ExpectedPath string + ExpectedParams url.Values + }{ + { + Repository: "repo", + Snapshot: "snapshot_of_sunday", + Pretty: true, + MasterTimeout: "60s", + WaitForCompletion: true, + ExpectedPath: "/_snapshot/repo/snapshot_of_sunday", + ExpectedParams: url.Values{ + "pretty": []string{"true"}, + "master_timeout": []string{"60s"}, + "wait_for_completion": []string{"true"}, + }, + }, + } + + for _, test := range tests { + path, params, err := client.SnapshotCreate(test.Repository, test.Snapshot). + Pretty(test.Pretty). + MasterTimeout(test.MasterTimeout). + WaitForCompletion(test.WaitForCompletion). + buildURL() + if err != nil { + t.Fatal(err) + } + if path != test.ExpectedPath { + t.Errorf("expected %q; got: %q", test.ExpectedPath, path) + } + if !reflect.DeepEqual(params, test.ExpectedParams) { + t.Errorf("expected %q; got: %q", test.ExpectedParams, params) + } + } +} -- cgit v1.2.3-1-g7c22