-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: run unit tests for metrics rules
Added metrics unit tests file and a Makefile target to run the tests. Signed-off-by: Andrej Krejcir <[email protected]>
- Loading branch information
Showing
4 changed files
with
123 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/usr/bin/env bash | ||
|
||
source $(dirname "$0")/config.sh | ||
|
||
readonly PROM_IMAGE="quay.io/prometheus/prometheus:v2.44.0" | ||
|
||
function cleanup() { | ||
local cleanup_files=("${@:?}") | ||
|
||
for file in "${cleanup_files[@]}"; do | ||
rm -f "$file" | ||
done | ||
} | ||
|
||
function lint() { | ||
local target_file="${1:?}" | ||
|
||
${KUBEVIRT_CRI} run --rm --entrypoint=/bin/promtool \ | ||
-v "$target_file":/tmp/rules.verify:ro,Z "$PROM_IMAGE" \ | ||
check rules /tmp/rules.verify | ||
} | ||
|
||
function unit_test() { | ||
local target_file="${1:?}" | ||
local tests_file="${2:?}" | ||
|
||
${KUBEVIRT_CRI} run --rm --entrypoint=/bin/promtool \ | ||
-v "$tests_file":/tmp/rules.test:ro,Z \ | ||
-v "$target_file":/tmp/rules.verify:ro,Z \ | ||
"$PROM_IMAGE" \ | ||
test rules /tmp/rules.test | ||
} | ||
|
||
function main() { | ||
local prom_spec_dumper="${1:?}" | ||
local tests_file="${2:?}" | ||
local target_file | ||
|
||
target_file="$(mktemp --tmpdir -u tmp.prom_rules.XXXXX)" | ||
trap "cleanup $target_file" RETURN EXIT INT | ||
|
||
"$prom_spec_dumper" > "$target_file" | ||
|
||
echo "INFO: Rules file content:" | ||
cat "$target_file" | ||
echo | ||
|
||
lint "$target_file" | ||
unit_test "$target_file" "$tests_file" | ||
} | ||
|
||
main "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Unit tests for the prometheus rules | ||
rule_files: | ||
- /tmp/rules.verify | ||
|
||
tests: | ||
- interval: "1m" | ||
input_series: | ||
- series: 'up{pod="ssp-operator-12345"}' | ||
values: '0x5 1' | ||
|
||
alert_rule_test: | ||
- eval_time: "5m" | ||
alertname: "SSPDown" | ||
exp_alerts: | ||
- exp_annotations: | ||
summary: "All SSP operator pods are down." | ||
runbook_url: "test-runbook:SSPDown" | ||
exp_labels: | ||
severity: "critical" | ||
operator_health_impact: "critical" | ||
kubernetes_operator_part_of: "kubevirt" | ||
kubernetes_operator_component: "ssp-operator" | ||
|
||
- eval_time: "6m" | ||
alertname: "SSPDown" | ||
exp_alerts: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package main | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
|
||
promv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1" | ||
|
||
"kubevirt.io/ssp-operator/pkg/monitoring/rules" | ||
) | ||
|
||
func main() { | ||
// TODO -- use real template | ||
const runbookTemplate = "test-runbook:%s" | ||
|
||
allRules := append(rules.RecordRules(), rules.AlertRules(runbookTemplate)...) | ||
|
||
spec := promv1.PrometheusRuleSpec{ | ||
Groups: []promv1.RuleGroup{{ | ||
Name: "test.rules", | ||
Rules: allRules, | ||
}}, | ||
} | ||
|
||
encoder := json.NewEncoder(os.Stdout) | ||
encoder.SetIndent("", " ") | ||
err := encoder.Encode(spec) | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error encoding prometheus spec: %v", err) | ||
return | ||
} | ||
} |