2015-05-12 11:41:57 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
2015-03-30 17:13:36 +00:00
|
|
|
// 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 (
|
2015-05-12 11:41:57 +00:00
|
|
|
"path/filepath"
|
2015-03-30 17:13:36 +00:00
|
|
|
"testing"
|
2019-10-10 00:06:53 +00:00
|
|
|
|
2020-10-29 09:43:23 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2015-03-30 17:13:36 +00:00
|
|
|
)
|
|
|
|
|
2015-05-12 11:41:57 +00:00
|
|
|
func TestEvaluations(t *testing.T) {
|
|
|
|
files, err := filepath.Glob("testdata/*.test")
|
2020-10-29 09:43:23 +00:00
|
|
|
require.NoError(t, err)
|
2019-10-10 00:06:53 +00:00
|
|
|
|
2015-05-12 11:41:57 +00:00
|
|
|
for _, fn := range files {
|
2020-07-31 15:03:02 +00:00
|
|
|
t.Run(fn, func(t *testing.T) {
|
|
|
|
test, err := newTestFromFile(t, fn)
|
2020-10-29 09:43:23 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NoError(t, test.Run())
|
2019-10-10 00:06:53 +00:00
|
|
|
|
2020-07-31 15:03:02 +00:00
|
|
|
test.Close()
|
|
|
|
})
|
2015-03-30 17:13:36 +00:00
|
|
|
}
|
|
|
|
}
|