summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/config
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-16 05:37:14 -0700
committerJoram Wilander <jwawilander@gmail.com>2018-04-16 08:37:14 -0400
commit6e2cb00008cbf09e556b00f87603797fcaa47e09 (patch)
tree3c0eb55ff4226a3f024aad373140d1fb860a6404 /vendor/gopkg.in/olivere/elastic.v5/config
parentbf24f51c4e1cc6286885460672f7f449e8c6f5ef (diff)
downloadchat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.gz
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.tar.bz2
chat-6e2cb00008cbf09e556b00f87603797fcaa47e09.zip
Depenancy upgrades and movign to dep. (#8630)
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/config')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/config/config_test.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/config/config_test.go b/vendor/gopkg.in/olivere/elastic.v5/config/config_test.go
deleted file mode 100644
index caa3bbadb..000000000
--- a/vendor/gopkg.in/olivere/elastic.v5/config/config_test.go
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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 config
-
-import "testing"
-
-func TestParse(t *testing.T) {
- urls := "http://user:pwd@elastic:19220/store-blobs?shards=5&replicas=2&sniff=true&errorlog=elastic.error.log&infolog=elastic.info.log&tracelog=elastic.trace.log"
- cfg, err := Parse(urls)
- if err != nil {
- t.Fatal(err)
- }
- if want, got := "http://elastic:19220", cfg.URL; want != got {
- t.Fatalf("expected URL = %q, got %q", want, got)
- }
- if want, got := "store-blobs", cfg.Index; want != got {
- t.Fatalf("expected Index = %q, got %q", want, got)
- }
- if want, got := "user", cfg.Username; want != got {
- t.Fatalf("expected Username = %q, got %q", want, got)
- }
- if want, got := "pwd", cfg.Password; want != got {
- t.Fatalf("expected Password = %q, got %q", want, got)
- }
- if want, got := 5, cfg.Shards; want != got {
- t.Fatalf("expected Shards = %v, got %v", want, got)
- }
- if want, got := 2, cfg.Replicas; want != got {
- t.Fatalf("expected Replicas = %v, got %v", want, got)
- }
- if want, got := true, *cfg.Sniff; want != got {
- t.Fatalf("expected Sniff = %v, got %v", want, got)
- }
- if want, got := "elastic.error.log", cfg.Errorlog; want != got {
- t.Fatalf("expected Errorlog = %q, got %q", want, got)
- }
- if want, got := "elastic.info.log", cfg.Infolog; want != got {
- t.Fatalf("expected Infolog = %q, got %q", want, got)
- }
- if want, got := "elastic.trace.log", cfg.Tracelog; want != got {
- t.Fatalf("expected Tracelog = %q, got %q", want, got)
- }
-}