117 lines
2.7 KiB
Go
117 lines
2.7 KiB
Go
/*
|
|
Copyright 2022 The Karmada 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 metrics
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/testutil"
|
|
)
|
|
|
|
func TestRecordPoolGet(t *testing.T) {
|
|
type args struct {
|
|
name string
|
|
created bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want string
|
|
}{
|
|
{
|
|
name: "get from pool",
|
|
args: args{
|
|
name: "foo",
|
|
created: false,
|
|
},
|
|
want: `
|
|
# HELP pool_get_operation_total Total times of getting from pool
|
|
# TYPE pool_get_operation_total counter
|
|
pool_get_operation_total{from="pool",name="foo"} 1
|
|
`,
|
|
},
|
|
{
|
|
name: "get from new",
|
|
args: args{
|
|
name: "foo",
|
|
created: true,
|
|
},
|
|
want: `
|
|
# HELP pool_get_operation_total Total times of getting from pool
|
|
# TYPE pool_get_operation_total counter
|
|
pool_get_operation_total{from="new",name="foo"} 1
|
|
`,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
poolGetCounter.Reset()
|
|
RecordPoolGet(tt.args.name, tt.args.created)
|
|
if err := testutil.CollectAndCompare(poolGetCounter, strings.NewReader(tt.want), poolGetCounterMetricsName); err != nil {
|
|
t.Errorf("unexpected collecting result:\n%s", err)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestRecordPoolPut(t *testing.T) {
|
|
type args struct {
|
|
name string
|
|
destroyed bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want string
|
|
}{
|
|
{
|
|
name: "put to pool",
|
|
args: args{
|
|
name: "foo",
|
|
destroyed: false,
|
|
},
|
|
want: `
|
|
# HELP pool_put_operation_total Total times of putting from pool
|
|
# TYPE pool_put_operation_total counter
|
|
pool_put_operation_total{name="foo",to="pool"} 1
|
|
`,
|
|
},
|
|
{
|
|
name: "put to destroyed",
|
|
args: args{
|
|
name: "foo",
|
|
destroyed: true,
|
|
},
|
|
want: `
|
|
# HELP pool_put_operation_total Total times of putting from pool
|
|
# TYPE pool_put_operation_total counter
|
|
pool_put_operation_total{name="foo",to="destroyed"} 1
|
|
`,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
poolPutCounter.Reset()
|
|
RecordPoolPut(tt.args.name, tt.args.destroyed)
|
|
if err := testutil.CollectAndCompare(poolPutCounter, strings.NewReader(tt.want), poolPutCounterMetricsName); err != nil {
|
|
t.Errorf("unexpected collecting result:\n%s", err)
|
|
}
|
|
})
|
|
}
|
|
}
|