2014-03-14 19:50:31 +04:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// 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 model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSamplesSort(t *testing.T) {
|
|
|
|
input := Samples{
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 5735370332639503759
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "A",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 5735370332639503759
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "A",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 13086089349438416271
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "C",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 13086089349438416271
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "C",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 187498541672539535
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "B",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 187498541672539535
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "B",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
expected := Samples{
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 187498541672539535
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "B",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 187498541672539535
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "B",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 5735370332639503759
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "A",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 5735370332639503759
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "A",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 13086089349438416271
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "C",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 1,
|
|
|
|
},
|
|
|
|
&Sample{
|
2014-03-19 17:10:58 +04:00
|
|
|
// Fingerprint: 13086089349438416271
|
2014-03-14 19:50:31 +04:00
|
|
|
Metric: Metric{
|
2014-03-19 17:10:58 +04:00
|
|
|
MetricNameLabel: "C",
|
2014-03-14 19:50:31 +04:00
|
|
|
},
|
|
|
|
Timestamp: 2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Sort(input)
|
|
|
|
|
|
|
|
for i, actual := range input {
|
|
|
|
actualFp := Fingerprint{}
|
|
|
|
actualFp.LoadFromMetric(actual.Metric)
|
|
|
|
|
|
|
|
expectedFp := Fingerprint{}
|
|
|
|
expectedFp.LoadFromMetric(expected[i].Metric)
|
|
|
|
|
|
|
|
if !actualFp.Equal(&expectedFp) {
|
2014-03-19 17:10:58 +04:00
|
|
|
t.Fatalf("%d. Incorrect fingerprint. Got %s; want %s", i, actualFp.String(), expectedFp.String())
|
2014-03-14 19:50:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if actual.Timestamp != expected[i].Timestamp {
|
|
|
|
t.Fatalf("%d. Incorrect timestamp. Got %s; want %s", i, actual.Timestamp, expected[i].Timestamp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|