From 6e2cb00008cbf09e556b00f87603797fcaa47e09 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Mon, 16 Apr 2018 05:37:14 -0700 Subject: Depenancy upgrades and movign to dep. (#8630) --- vendor/github.com/armon/go-metrics/start_test.go | 202 ----------------------- 1 file changed, 202 deletions(-) delete mode 100644 vendor/github.com/armon/go-metrics/start_test.go (limited to 'vendor/github.com/armon/go-metrics/start_test.go') diff --git a/vendor/github.com/armon/go-metrics/start_test.go b/vendor/github.com/armon/go-metrics/start_test.go deleted file mode 100644 index f85a5bec3..000000000 --- a/vendor/github.com/armon/go-metrics/start_test.go +++ /dev/null @@ -1,202 +0,0 @@ -package metrics - -import ( - "io/ioutil" - "log" - "reflect" - "sync/atomic" - "testing" - "time" -) - -func TestDefaultConfig(t *testing.T) { - conf := DefaultConfig("service") - if conf.ServiceName != "service" { - t.Fatalf("Bad name") - } - if conf.HostName == "" { - t.Fatalf("missing hostname") - } - if !conf.EnableHostname || !conf.EnableRuntimeMetrics { - t.Fatalf("expect true") - } - if conf.EnableTypePrefix { - t.Fatalf("expect false") - } - if conf.TimerGranularity != time.Millisecond { - t.Fatalf("bad granularity") - } - if conf.ProfileInterval != time.Second { - t.Fatalf("bad interval") - } -} - -func Test_GlobalMetrics(t *testing.T) { - var tests = []struct { - desc string - key []string - val float32 - fn func([]string, float32) - }{ - {"SetGauge", []string{"test"}, 42, SetGauge}, - {"EmitKey", []string{"test"}, 42, EmitKey}, - {"IncrCounter", []string{"test"}, 42, IncrCounter}, - {"AddSample", []string{"test"}, 42, AddSample}, - } - - for _, tt := range tests { - t.Run(tt.desc, func(t *testing.T) { - s := &MockSink{} - globalMetrics.Store(&Metrics{Config: Config{FilterDefault: true}, sink: s}) - tt.fn(tt.key, tt.val) - if got, want := s.keys[0], tt.key; !reflect.DeepEqual(got, want) { - t.Fatalf("got key %s want %s", got, want) - } - if got, want := s.vals[0], tt.val; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } - }) - } -} - -func Test_GlobalMetrics_Labels(t *testing.T) { - labels := []Label{{"a", "b"}} - var tests = []struct { - desc string - key []string - val float32 - fn func([]string, float32, []Label) - labels []Label - }{ - {"SetGaugeWithLabels", []string{"test"}, 42, SetGaugeWithLabels, labels}, - {"IncrCounterWithLabels", []string{"test"}, 42, IncrCounterWithLabels, labels}, - {"AddSampleWithLabels", []string{"test"}, 42, AddSampleWithLabels, labels}, - } - - for _, tt := range tests { - t.Run(tt.desc, func(t *testing.T) { - s := &MockSink{} - globalMetrics.Store(&Metrics{Config: Config{FilterDefault: true}, sink: s}) - tt.fn(tt.key, tt.val, tt.labels) - if got, want := s.keys[0], tt.key; !reflect.DeepEqual(got, want) { - t.Fatalf("got key %s want %s", got, want) - } - if got, want := s.vals[0], tt.val; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } - if got, want := s.labels[0], tt.labels; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } - }) - } -} - -func Test_GlobalMetrics_DefaultLabels(t *testing.T) { - config := Config{ - HostName: "host1", - ServiceName: "redis", - EnableHostnameLabel: true, - EnableServiceLabel: true, - FilterDefault: true, - } - labels := []Label{ - {"host", config.HostName}, - {"service", config.ServiceName}, - } - var tests = []struct { - desc string - key []string - val float32 - fn func([]string, float32, []Label) - labels []Label - }{ - {"SetGaugeWithLabels", []string{"test"}, 42, SetGaugeWithLabels, labels}, - {"IncrCounterWithLabels", []string{"test"}, 42, IncrCounterWithLabels, labels}, - {"AddSampleWithLabels", []string{"test"}, 42, AddSampleWithLabels, labels}, - } - - for _, tt := range tests { - t.Run(tt.desc, func(t *testing.T) { - s := &MockSink{} - globalMetrics.Store(&Metrics{Config: config, sink: s}) - tt.fn(tt.key, tt.val, nil) - if got, want := s.keys[0], tt.key; !reflect.DeepEqual(got, want) { - t.Fatalf("got key %s want %s", got, want) - } - if got, want := s.vals[0], tt.val; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } - if got, want := s.labels[0], tt.labels; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } - }) - } -} - -func Test_GlobalMetrics_MeasureSince(t *testing.T) { - s := &MockSink{} - m := &Metrics{sink: s, Config: Config{TimerGranularity: time.Millisecond, FilterDefault: true}} - globalMetrics.Store(m) - - k := []string{"test"} - now := time.Now() - MeasureSince(k, now) - - if !reflect.DeepEqual(s.keys[0], k) { - t.Fatalf("key not equal") - } - if s.vals[0] > 0.1 { - t.Fatalf("val too large %v", s.vals[0]) - } - - labels := []Label{{"a", "b"}} - MeasureSinceWithLabels(k, now, labels) - if got, want := s.keys[1], k; !reflect.DeepEqual(got, want) { - t.Fatalf("got key %s want %s", got, want) - } - if s.vals[1] > 0.1 { - t.Fatalf("val too large %v", s.vals[0]) - } - if got, want := s.labels[1], labels; !reflect.DeepEqual(got, want) { - t.Fatalf("got val %s want %s", got, want) - } -} - -func Test_GlobalMetrics_UpdateFilter(t *testing.T) { - globalMetrics.Store(&Metrics{Config: Config{ - AllowedPrefixes: []string{"a"}, - BlockedPrefixes: []string{"b"}, - }}) - UpdateFilter([]string{"c"}, []string{"d"}) - - m := globalMetrics.Load().(*Metrics) - if m.AllowedPrefixes[0] != "c" { - t.Fatalf("bad: %v", m.AllowedPrefixes) - } - if m.BlockedPrefixes[0] != "d" { - t.Fatalf("bad: %v", m.BlockedPrefixes) - } -} - -// Benchmark_GlobalMetrics_Direct/direct-8 5000000 278 ns/op -// Benchmark_GlobalMetrics_Direct/atomic.Value-8 5000000 235 ns/op -func Benchmark_GlobalMetrics_Direct(b *testing.B) { - log.SetOutput(ioutil.Discard) - s := &MockSink{} - m := &Metrics{sink: s} - var v atomic.Value - v.Store(m) - k := []string{"test"} - b.Run("direct", func(b *testing.B) { - for i := 0; i < b.N; i++ { - m.IncrCounter(k, 1) - } - }) - b.Run("atomic.Value", func(b *testing.B) { - for i := 0; i < b.N; i++ { - v.Load().(*Metrics).IncrCounter(k, 1) - } - }) - // do something with m so that the compiler does not optimize this away - b.Logf("%d", m.lastNumGC) -} -- cgit v1.2.3-1-g7c22