22 lines
618 B
Go
22 lines
618 B
Go
package label_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/influxdata/influxdb/v2"
|
|
"github.com/influxdata/influxdb/v2/kit/prom"
|
|
"github.com/influxdata/influxdb/v2/label"
|
|
influxdbtesting "github.com/influxdata/influxdb/v2/testing"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func TestLabelMetricsService(t *testing.T) {
|
|
influxdbtesting.LabelService(initBoltLabelMetricsService, t)
|
|
}
|
|
|
|
func initBoltLabelMetricsService(f influxdbtesting.LabelFields, t *testing.T) (influxdb.LabelService, string, func()) {
|
|
svc, s, closer := initBoltLabelService(f, t)
|
|
reg := prom.NewRegistry(zap.NewNop())
|
|
return label.NewLabelMetrics(reg, svc), s, closer
|
|
}
|