mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
902fafb8e7
Fixing the config/config_test, the discovery/file/file_test and the promql/promql_test tests for Windows. For most of the tests, the fix involved correct handling of path separators. In the case of the promql tests, the issue was related to the removal of the temporal directories used by the storage. The issue is that the RemoveAll() call returns an error when it tries to remove a directory which is not empty, which seems to be true due to some kind of process that is still running after closing the storage. To fix it I added some retries to the remove of the temporal directories. Adding tags file from Universal Ctags to .gitignore
130 lines
3 KiB
Go
130 lines
3 KiB
Go
// Copyright 2013 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 testutil
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
)
|
|
|
|
const (
|
|
// The base directory used for test emissions, which instructs the operating
|
|
// system to use the default temporary directory as the base or TMPDIR
|
|
// environment variable.
|
|
defaultDirectory = ""
|
|
|
|
// NilCloser is a no-op Closer.
|
|
NilCloser = nilCloser(true)
|
|
|
|
// The number of times that a TemporaryDirectory will retry its removal
|
|
temporaryDirectoryRemoveRetries = 2
|
|
)
|
|
|
|
type (
|
|
// Closer is the interface that wraps the Close method.
|
|
Closer interface {
|
|
// Close reaps the underlying directory and its children. The directory
|
|
// could be deleted by its users already.
|
|
Close()
|
|
}
|
|
|
|
nilCloser bool
|
|
|
|
// TemporaryDirectory models a closeable path for transient POSIX disk
|
|
// activities.
|
|
TemporaryDirectory interface {
|
|
Closer
|
|
|
|
// Path returns the underlying path for access.
|
|
Path() string
|
|
}
|
|
|
|
// temporaryDirectory is kept as a private type due to private fields and
|
|
// their interactions.
|
|
temporaryDirectory struct {
|
|
path string
|
|
tester T
|
|
}
|
|
|
|
callbackCloser struct {
|
|
fn func()
|
|
}
|
|
|
|
// T implements the needed methods of testing.TB so that we do not need
|
|
// to actually import testing (which has the side effect of adding all
|
|
// the test flags, which we do not want in non-test binaries even if
|
|
// they make use of these utilities for some reason).
|
|
T interface {
|
|
Fatal(args ...interface{})
|
|
Fatalf(format string, args ...interface{})
|
|
}
|
|
)
|
|
|
|
func (c nilCloser) Close() {
|
|
}
|
|
|
|
func (c callbackCloser) Close() {
|
|
c.fn()
|
|
}
|
|
|
|
// NewCallbackCloser returns a Closer that calls the provided function upon
|
|
// closing.
|
|
func NewCallbackCloser(fn func()) Closer {
|
|
return &callbackCloser{
|
|
fn: fn,
|
|
}
|
|
}
|
|
|
|
func (t temporaryDirectory) Close() {
|
|
retries := temporaryDirectoryRemoveRetries
|
|
err := os.RemoveAll(t.path)
|
|
for err != nil && retries > 0 {
|
|
switch {
|
|
case os.IsNotExist(err):
|
|
err = nil
|
|
default:
|
|
retries--
|
|
err = os.RemoveAll(t.path)
|
|
}
|
|
}
|
|
if err != nil {
|
|
t.tester.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func (t temporaryDirectory) Path() string {
|
|
return t.path
|
|
}
|
|
|
|
// NewTemporaryDirectory creates a new temporary directory for transient POSIX
|
|
// activities.
|
|
func NewTemporaryDirectory(name string, t T) (handler TemporaryDirectory) {
|
|
var (
|
|
directory string
|
|
err error
|
|
)
|
|
|
|
directory, err = ioutil.TempDir(defaultDirectory, name)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
handler = temporaryDirectory{
|
|
path: directory,
|
|
tester: t,
|
|
}
|
|
|
|
return
|
|
}
|