60 lines
1.7 KiB
Go
60 lines
1.7 KiB
Go
|
// Copyright 2020 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 exporter
|
||
|
|
||
|
import (
|
||
|
"math"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestSanitizeValue(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
Input string
|
||
|
ExpectedOutput float64
|
||
|
ShouldSucceed bool
|
||
|
}{
|
||
|
{"1234", 1234.0, true},
|
||
|
{"1234.5", 1234.5, true},
|
||
|
{"true", 1.0, true},
|
||
|
{"TRUE", 1.0, true},
|
||
|
{"False", 0.0, true},
|
||
|
{"FALSE", 0.0, true},
|
||
|
{"abcd", 0, false},
|
||
|
{"{}", 0, false},
|
||
|
{"[]", 0, false},
|
||
|
{"", 0, false},
|
||
|
{"''", 0, false},
|
||
|
}
|
||
|
|
||
|
for i, test := range tests {
|
||
|
actualOutput, err := SanitizeValue(test.Input)
|
||
|
if err != nil && test.ShouldSucceed {
|
||
|
t.Fatalf("Value snitization test %d failed with an unexpected error.\nINPUT:\n%q\nERR:\n%s", i, test.Input, err)
|
||
|
}
|
||
|
if test.ShouldSucceed && actualOutput != test.ExpectedOutput {
|
||
|
t.Fatalf("Value sanitization test %d fails unexpectedly.\nGOT:\n%f\nEXPECTED:\n%f", i, actualOutput, test.ExpectedOutput)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestSanitizeValueNaN(t *testing.T) {
|
||
|
actualOutput, err := SanitizeValue("<nil>")
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if !math.IsNaN(actualOutput) {
|
||
|
t.Fatalf("Value sanitization test for %f fails unexpectedly.", math.NaN())
|
||
|
}
|
||
|
}
|