pkg/metrics/metricstest/metricstest.go

263 lines
9.2 KiB
Go

/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package metricstest
import (
"fmt"
"reflect"
"go.opencensus.io/metric/metricproducer"
"go.opencensus.io/stats/view"
)
type ti interface {
Helper()
Error(args ...interface{})
}
// CheckStatsReported checks that there is a view registered with the given name for each string in names,
// and that each view has at least one record.
func CheckStatsReported(t ti, names ...string) {
t.Helper()
for _, name := range names {
d, err := readRowsFromAllMeters(name)
if err != nil {
t.Error("For metric, Reporter.Report() error", "metric", name, "error", err)
}
if len(d) < 1 {
t.Error("For metric, no data reported when data was expected, view data is empty.", "metric", name)
}
}
}
// CheckStatsNotReported checks that there are no records for any views that a name matching a string in names.
// Names that do not match registered views are considered not reported.
func CheckStatsNotReported(t ti, names ...string) {
t.Helper()
for _, name := range names {
d, err := readRowsFromAllMeters(name)
// err == nil means a valid stat exists matching "name"
// len(d) > 0 means a component recorded metrics for that stat
if err == nil && len(d) > 0 {
t.Error("For metric, unexpected data reported when no data was expected.", "metric", name, "Reporter len(d)", len(d))
}
}
}
// CheckCountData checks the view with a name matching string name to verify that the CountData stats
// reported are tagged with the tags in wantTags and that wantValue matches reported count.
func CheckCountData(t ti, name string, wantTags map[string]string, wantValue int64) {
t.Helper()
row, err := checkExactlyOneRow(t, name)
if err != nil {
t.Error(err)
return
}
checkRowTags(t, row, name, wantTags)
if s, ok := row.Data.(*view.CountData); !ok {
t.Error("want CountData", "metric", name, "got", reflect.TypeOf(row.Data))
} else if s.Value != wantValue {
t.Error("Wrong value", "metric", name, "value", s.Value, "want", wantValue)
}
}
// CheckDistributionData checks the view with a name matching string name to verify that the DistributionData stats reported
// are tagged with the tags in wantTags and that expectedCount number of records were reported.
// It also checks that expectedMin and expectedMax match the minimum and maximum reported values, respectively.
func CheckDistributionData(t ti, name string, wantTags map[string]string, expectedCount int64, expectedMin float64, expectedMax float64) {
t.Helper()
row, err := checkExactlyOneRow(t, name)
if err != nil {
t.Error(err)
return
}
checkRowTags(t, row, name, wantTags)
if s, ok := row.Data.(*view.DistributionData); !ok {
t.Error("want DistributionData", "metric", name, "got", reflect.TypeOf(row.Data))
} else {
if s.Count != expectedCount {
t.Error("reporter count wrong", "metric", name, "got", s.Count, "want", expectedCount)
}
if s.Min != expectedMin {
t.Error("reporter min wrong", "metric", name, "got", s.Min, "want", expectedMin)
}
if s.Max != expectedMax {
t.Error("reporter max wrong", "metric", name, "got", s.Max, "want", expectedMax)
}
}
}
// CheckDistributionCount checks the view with a name matching string name to verify that the DistributionData stats reported
// are tagged with the tags in wantTags and that expectedCount number of records were reported.
func CheckDistributionCount(t ti, name string, wantTags map[string]string, expectedCount int64) {
t.Helper()
row, err := checkExactlyOneRow(t, name)
if err != nil {
t.Error(err)
return
}
checkRowTags(t, row, name, wantTags)
if s, ok := row.Data.(*view.DistributionData); !ok {
t.Error("want DistributionData", "metric", name, "got", reflect.TypeOf(row.Data))
} else if s.Count != expectedCount {
t.Error("reporter count wrong", "metric", name, "got", s.Count, "want", expectedCount)
}
}
// GetLastValueData returns the last value for the given metric, verifying tags.
func GetLastValueData(t ti, name string, tags map[string]string) float64 {
t.Helper()
return GetLastValueDataWithMeter(t, name, tags, nil)
}
// GetLastValueDataWithMeter returns the last value of the given metric using meter, verifying tags.
func GetLastValueDataWithMeter(t ti, name string, tags map[string]string, meter view.Meter) float64 {
t.Helper()
if row := lastRow(t, name, meter); row != nil {
checkRowTags(t, row, name, tags)
s, ok := row.Data.(*view.LastValueData)
if !ok {
t.Error("want LastValueData", "metric", name, "got", reflect.TypeOf(row.Data))
}
return s.Value
}
return 0
}
// CheckLastValueData checks the view with a name matching string name to verify that the LastValueData stats
// reported are tagged with the tags in wantTags and that wantValue matches reported last value.
func CheckLastValueData(t ti, name string, wantTags map[string]string, wantValue float64) {
t.Helper()
CheckLastValueDataWithMeter(t, name, wantTags, wantValue, nil)
}
// CheckLastValueDataWithMeter checks the view with a name matching the string name in the
// specified Meter (resource-specific view) to verify that the LastValueData stats are tagged with
// the tags in wantTags and that wantValue matches the last reported value.
func CheckLastValueDataWithMeter(t ti, name string, wantTags map[string]string, wantValue float64, meter view.Meter) {
t.Helper()
if v := GetLastValueDataWithMeter(t, name, wantTags, meter); v != wantValue {
t.Error("Reporter.Report() wrong value", "metric", name, "got", v, "want", wantValue)
}
}
// CheckSumData checks the view with a name matching string name to verify that the SumData stats
// reported are tagged with the tags in wantTags and that wantValue matches the reported sum.
func CheckSumData(t ti, name string, wantTags map[string]string, wantValue float64) {
t.Helper()
row, err := checkExactlyOneRow(t, name)
if err != nil {
t.Error(err)
return
}
checkRowTags(t, row, name, wantTags)
if s, ok := row.Data.(*view.SumData); !ok {
t.Error("Wrong type", "metric", name, "got", reflect.TypeOf(row.Data), "want", "SumData")
} else if s.Value != wantValue {
t.Error("Wrong sumdata", "metric", name, "got", s.Value, "want", wantValue)
}
}
// Unregister unregisters the metrics that were registered.
// This is useful for testing since golang execute test iterations within the same process and
// opencensus views maintain global state. At the beginning of each test, tests should
// unregister for all metrics and then re-register for the same metrics. This effectively clears
// out any existing data and avoids a panic due to re-registering a metric.
//
// In normal process shutdown, metrics do not need to be unregistered.
func Unregister(names ...string) {
for _, producer := range metricproducer.GlobalManager().GetAll() {
meter := producer.(view.Meter)
for _, n := range names {
if v := meter.Find(n); v != nil {
meter.Unregister(v)
}
}
}
}
func lastRow(t ti, name string, meter view.Meter) *view.Row {
t.Helper()
var d []*view.Row
var err error
if meter != nil {
d, err = meter.RetrieveData(name)
} else {
d, err = readRowsFromAllMeters(name)
}
if err != nil {
t.Error("Reporter.Report() error", "metric", name, "error", err)
return nil
}
if len(d) < 1 {
t.Error("Reporter.Report() wrong length", "metric", name, "got", len(d), "want at least", 1)
return nil
}
return d[len(d)-1]
}
func checkExactlyOneRow(t ti, name string) (*view.Row, error) {
rows, err := readRowsFromAllMeters(name)
if err != nil || len(rows) == 0 {
return nil, fmt.Errorf("could not find row for %q", name)
}
if len(rows) > 1 {
return nil, fmt.Errorf("expected 1 row for metric %q got %d", name, len(rows))
}
return rows[0], nil
}
func readRowsFromAllMeters(name string) ([]*view.Row, error) {
// view.Meter implements (and is exposed by) metricproducer.GetAll. Since
// this is a test, reach around and cast these to view.Meter.
var rows []*view.Row
for _, producer := range metricproducer.GlobalManager().GetAll() {
meter := producer.(view.Meter)
d, err := meter.RetrieveData(name)
if err != nil || len(d) == 0 {
continue
}
if rows != nil {
return nil, fmt.Errorf("got metrics for the same name from different meters: %+v, %+v", rows, d)
}
rows = d
}
return rows, nil
}
func checkRowTags(t ti, row *view.Row, name string, wantTags map[string]string) {
t.Helper()
if wantlen, gotlen := len(wantTags), len(row.Tags); gotlen != wantlen {
t.Error("Reporter got wrong number of tags", "metric", name, "got", gotlen, "want", wantlen)
}
for _, got := range row.Tags {
n := got.Key.Name()
if want, ok := wantTags[n]; !ok {
t.Error("Reporter got an extra tag", "metric", name, "gotName", n, "gotValue", got.Value)
} else if got.Value != want {
t.Error("Reporter expected a different tag value for key", "metric", name, "key", n, "got", got.Value, "want", want)
}
}
}