mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 21:54:10 -08:00
c2e28f21ba
Some checks failed
buf.build / lint and publish (push) Has been cancelled
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Build Prometheus for common architectures (0) (push) Has been cancelled
CI / Build Prometheus for common architectures (1) (push) Has been cancelled
CI / Build Prometheus for common architectures (2) (push) Has been cancelled
CI / Build Prometheus for all architectures (0) (push) Has been cancelled
CI / Build Prometheus for all architectures (1) (push) Has been cancelled
CI / Build Prometheus for all architectures (10) (push) Has been cancelled
CI / Build Prometheus for all architectures (11) (push) Has been cancelled
CI / Build Prometheus for all architectures (2) (push) Has been cancelled
CI / Build Prometheus for all architectures (3) (push) Has been cancelled
CI / Build Prometheus for all architectures (4) (push) Has been cancelled
CI / Build Prometheus for all architectures (5) (push) Has been cancelled
CI / Build Prometheus for all architectures (6) (push) Has been cancelled
CI / Build Prometheus for all architectures (7) (push) Has been cancelled
CI / Build Prometheus for all architectures (8) (push) Has been cancelled
CI / Build Prometheus for all architectures (9) (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
108 lines
2.7 KiB
Go
108 lines
2.7 KiB
Go
// Copyright 2013 The Prometheus 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 rules
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/prometheus/common/promslog"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNewGroup(t *testing.T) {
|
|
g := NewGroup(GroupOptions{
|
|
File: "test-file",
|
|
Name: "test-name",
|
|
})
|
|
require.Equal(t, promslog.NewNopLogger().With("file", "test-file", "group", "test-name"), g.logger)
|
|
}
|
|
|
|
func TestGroup_Equals(t *testing.T) {
|
|
tests := map[string]struct {
|
|
first *Group
|
|
second *Group
|
|
expected bool
|
|
}{
|
|
"no query offset set on both groups": {
|
|
first: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
},
|
|
second: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
},
|
|
expected: true,
|
|
},
|
|
"query offset set only on the first group": {
|
|
first: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
queryOffset: pointerOf[time.Duration](time.Minute),
|
|
},
|
|
second: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
},
|
|
expected: false,
|
|
},
|
|
"query offset set on both groups to the same value": {
|
|
first: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
queryOffset: pointerOf[time.Duration](time.Minute),
|
|
},
|
|
second: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
queryOffset: pointerOf[time.Duration](time.Minute),
|
|
},
|
|
expected: true,
|
|
},
|
|
"query offset set on both groups to different value": {
|
|
first: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
queryOffset: pointerOf[time.Duration](time.Minute),
|
|
},
|
|
second: &Group{
|
|
name: "group-1",
|
|
file: "file-1",
|
|
interval: time.Minute,
|
|
queryOffset: pointerOf[time.Duration](2 * time.Minute),
|
|
},
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for testName, testData := range tests {
|
|
t.Run(testName, func(t *testing.T) {
|
|
require.Equal(t, testData.expected, testData.first.Equals(testData.second))
|
|
require.Equal(t, testData.expected, testData.second.Equals(testData.first))
|
|
})
|
|
}
|
|
}
|
|
|
|
func pointerOf[T any](value T) *T {
|
|
return &value
|
|
}
|