2013-03-26 10:02:58 -07: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 test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2014-05-21 10:27:24 -07:00
|
|
|
"testing"
|
2013-03-26 10:02:58 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
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 = ""
|
|
|
|
|
|
|
|
// A NO-OP Closer.
|
|
|
|
NilCloser = nilCloser(true)
|
|
|
|
)
|
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
type (
|
|
|
|
Closer interface {
|
|
|
|
// Close reaps the underlying directory and its children. The directory
|
|
|
|
// could be deleted by its users already.
|
|
|
|
Close()
|
|
|
|
}
|
2013-03-26 10:02:58 -07:00
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
nilCloser bool
|
2013-03-26 10:02:58 -07:00
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
// TemporaryDirectory models a closeable path for transient POSIX disk
|
|
|
|
// activities.
|
|
|
|
TemporaryDirectory interface {
|
|
|
|
Closer
|
2013-03-26 10:02:58 -07:00
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
// Path returns the underlying path for access.
|
|
|
|
Path() string
|
|
|
|
}
|
2013-03-26 10:02:58 -07:00
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
// temporaryDirectory is kept as a private type due to private fields and
|
|
|
|
// their interactions.
|
|
|
|
temporaryDirectory struct {
|
|
|
|
path string
|
2014-05-21 10:27:24 -07:00
|
|
|
tester testing.TB
|
2013-03-27 04:52:08 -07:00
|
|
|
}
|
|
|
|
)
|
2013-03-26 10:02:58 -07:00
|
|
|
|
2013-03-27 04:52:08 -07:00
|
|
|
func (c nilCloser) Close() {
|
2013-03-26 10:02:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t temporaryDirectory) Close() {
|
|
|
|
err := os.RemoveAll(t.path)
|
|
|
|
if err != nil {
|
|
|
|
switch {
|
|
|
|
case os.IsNotExist(err):
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
t.tester.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t temporaryDirectory) Path() string {
|
|
|
|
return t.path
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTemporaryDirectory creates a new temporary directory for transient POSIX
|
|
|
|
// activities.
|
2014-05-21 10:27:24 -07:00
|
|
|
func NewTemporaryDirectory(name string, t testing.TB) (handler TemporaryDirectory) {
|
2013-03-26 10:02:58 -07:00
|
|
|
var (
|
|
|
|
directory string
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
directory, err = ioutil.TempDir(defaultDirectory, name)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
handler = temporaryDirectory{
|
|
|
|
path: directory,
|
|
|
|
tester: t,
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|