2019-07-31 08:12:43 -07:00
|
|
|
// Copyright 2019 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 promql
|
|
|
|
|
|
|
|
import (
|
2020-01-27 14:29:44 -08:00
|
|
|
"context"
|
2019-07-31 08:12:43 -07:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"regexp"
|
|
|
|
"testing"
|
2019-10-09 17:06:53 -07:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/util/testutil"
|
2019-07-31 08:12:43 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestQueryLogging(t *testing.T) {
|
|
|
|
fileAsBytes := make([]byte, 4096)
|
|
|
|
queryLogger := ActiveQueryTracker{
|
|
|
|
mmapedFile: fileAsBytes,
|
|
|
|
logger: nil,
|
|
|
|
getNextIndex: make(chan int, 4),
|
|
|
|
}
|
|
|
|
|
|
|
|
queryLogger.generateIndices(4)
|
|
|
|
veryLongString := "MassiveQueryThatNeverEndsAndExceedsTwoHundredBytesWhichIsTheSizeOfEntrySizeAndShouldThusBeTruncatedAndIamJustGoingToRepeatTheSameCharactersAgainProbablyBecauseWeAreStillOnlyHalfWayDoneOrMaybeNotOrMaybeMassiveQueryThatNeverEndsAndExceedsTwoHundredBytesWhichIsTheSizeOfEntrySizeAndShouldThusBeTruncatedAndIamJustGoingToRepeatTheSameCharactersAgainProbablyBecauseWeAreStillOnlyHalfWayDoneOrMaybeNotOrMaybeMassiveQueryThatNeverEndsAndExceedsTwoHundredBytesWhichIsTheSizeOfEntrySizeAndShouldThusBeTruncatedAndIamJustGoingToRepeatTheSameCharactersAgainProbablyBecauseWeAreStillOnlyHalfWayDoneOrMaybeNotOrMaybeMassiveQueryThatNeverEndsAndExceedsTwoHundredBytesWhichIsTheSizeOfEntrySizeAndShouldThusBeTruncatedAndIamJustGoingToRepeatTheSameCharactersAgainProbablyBecauseWeAreStillOnlyHalfWayDoneOrMaybeNotOrMaybeMassiveQueryThatNeverEndsAndExceedsTwoHundredBytesWhichIsTheSizeOfEntrySizeAndShouldThusBeTruncatedAndIamJustGoingToRepeatTheSameCharactersAgainProbablyBecauseWeAreStillOnlyHalfWayDoneOrMaybeNotOrMaybe"
|
|
|
|
queries := []string{
|
|
|
|
"TestQuery",
|
|
|
|
veryLongString,
|
|
|
|
"",
|
|
|
|
"SpecialCharQuery{host=\"2132132\", id=123123}",
|
|
|
|
}
|
|
|
|
|
|
|
|
want := []string{
|
|
|
|
`^{"query":"TestQuery","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
`^{"query":"` + trimStringByBytes(veryLongString, entrySize-40) + `","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
`^{"query":"","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
`^{"query":"SpecialCharQuery{host=\\"2132132\\", id=123123}","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for inserts of queries.
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
start := 1 + i*entrySize
|
|
|
|
end := start + entrySize
|
|
|
|
|
2020-01-27 14:29:44 -08:00
|
|
|
queryLogger.Insert(context.Background(), queries[i])
|
2019-07-31 08:12:43 -07:00
|
|
|
|
|
|
|
have := string(fileAsBytes[start:end])
|
|
|
|
if !regexp.MustCompile(want[i]).MatchString(have) {
|
|
|
|
t.Fatalf("Query not written correctly: %s.\nHave %s\nWant %s", queries[i], have, want[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if all queries have been deleted.
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
queryLogger.Delete(1 + i*entrySize)
|
|
|
|
}
|
|
|
|
if !regexp.MustCompile(`^\x00+$`).Match(fileAsBytes[1 : 1+entrySize*4]) {
|
|
|
|
t.Fatalf("All queries not deleted properly. Have %s\nWant only null bytes \\x00", string(fileAsBytes[1:1+entrySize*4]))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIndexReuse(t *testing.T) {
|
|
|
|
queryBytes := make([]byte, 1+3*entrySize)
|
|
|
|
queryLogger := ActiveQueryTracker{
|
|
|
|
mmapedFile: queryBytes,
|
|
|
|
logger: nil,
|
|
|
|
getNextIndex: make(chan int, 3),
|
|
|
|
}
|
|
|
|
|
|
|
|
queryLogger.generateIndices(3)
|
2020-01-27 14:29:44 -08:00
|
|
|
queryLogger.Insert(context.Background(), "TestQuery1")
|
|
|
|
queryLogger.Insert(context.Background(), "TestQuery2")
|
|
|
|
queryLogger.Insert(context.Background(), "TestQuery3")
|
2019-07-31 08:12:43 -07:00
|
|
|
|
|
|
|
queryLogger.Delete(1 + entrySize)
|
|
|
|
queryLogger.Delete(1)
|
|
|
|
newQuery2 := "ThisShouldBeInsertedAtIndex2"
|
|
|
|
newQuery1 := "ThisShouldBeInsertedAtIndex1"
|
2020-01-27 14:29:44 -08:00
|
|
|
queryLogger.Insert(context.Background(), newQuery2)
|
|
|
|
queryLogger.Insert(context.Background(), newQuery1)
|
2019-07-31 08:12:43 -07:00
|
|
|
|
|
|
|
want := []string{
|
|
|
|
`^{"query":"ThisShouldBeInsertedAtIndex1","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
`^{"query":"ThisShouldBeInsertedAtIndex2","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
`^{"query":"TestQuery3","timestamp_sec":\d+}\x00*,$`,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check all bytes and verify new query was inserted at index 2
|
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
start := 1 + i*entrySize
|
|
|
|
end := start + entrySize
|
|
|
|
|
|
|
|
have := queryBytes[start:end]
|
|
|
|
if !regexp.MustCompile(want[i]).Match(have) {
|
|
|
|
t.Fatalf("Index not reused properly:\nHave %s\nWant %s", string(queryBytes[start:end]), want[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMMapFile(t *testing.T) {
|
|
|
|
file, err := ioutil.TempFile("", "mmapedFile")
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Ok(t, err)
|
2019-07-31 08:12:43 -07:00
|
|
|
|
|
|
|
filename := file.Name()
|
|
|
|
defer os.Remove(filename)
|
|
|
|
|
2019-08-23 18:39:15 -07:00
|
|
|
fileAsBytes, err := getMMapedFile(filename, 2, nil)
|
2019-07-31 08:12:43 -07:00
|
|
|
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Ok(t, err)
|
2019-07-31 08:12:43 -07:00
|
|
|
copy(fileAsBytes, "ab")
|
|
|
|
|
|
|
|
f, err := os.Open(filename)
|
2019-10-09 17:06:53 -07:00
|
|
|
testutil.Ok(t, err)
|
2019-07-31 08:12:43 -07:00
|
|
|
|
|
|
|
bytes := make([]byte, 4)
|
|
|
|
n, err := f.Read(bytes)
|
|
|
|
|
|
|
|
if n != 2 || err != nil {
|
|
|
|
t.Fatalf("Error reading file")
|
|
|
|
}
|
|
|
|
|
|
|
|
if string(bytes[:2]) != string(fileAsBytes) {
|
|
|
|
t.Fatalf("Mmap failed")
|
|
|
|
}
|
|
|
|
}
|
2019-10-17 16:21:58 -07:00
|
|
|
|
2020-01-09 13:11:39 -08:00
|
|
|
func TestParseBrokenJSON(t *testing.T) {
|
2019-10-17 16:21:58 -07:00
|
|
|
for _, tc := range []struct {
|
|
|
|
b []byte
|
|
|
|
|
|
|
|
ok bool
|
|
|
|
out string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
b: []byte(""),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
b: []byte("\x00\x00"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
b: []byte("\x00[\x00"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
b: []byte("\x00[]\x00"),
|
|
|
|
ok: true,
|
|
|
|
out: "[]",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
b: []byte("[\"up == 0\",\"rate(http_requests[2w]\"]\x00\x00\x00"),
|
|
|
|
ok: true,
|
|
|
|
out: "[\"up == 0\",\"rate(http_requests[2w]\"]",
|
|
|
|
},
|
|
|
|
} {
|
|
|
|
t.Run("", func(t *testing.T) {
|
2020-01-09 13:11:39 -08:00
|
|
|
ok, out := parseBrokenJSON(tc.b)
|
2019-10-17 16:21:58 -07:00
|
|
|
if tc.ok != ok {
|
|
|
|
t.Fatalf("expected %t, got %t", tc.ok, ok)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ok && tc.out != out {
|
|
|
|
t.Fatalf("expected %s, got %s", tc.out, out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|