summaryrefslogtreecommitdiff
path: root/internal/testhelper/testhelper.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/testhelper/testhelper.go')
-rw-r--r--internal/testhelper/testhelper.go93
1 files changed, 93 insertions, 0 deletions
diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go
new file mode 100644
index 0000000..a925c79
--- /dev/null
+++ b/internal/testhelper/testhelper.go
@@ -0,0 +1,93 @@
+package testhelper
+
+import (
+ "fmt"
+ "io/ioutil"
+ "os"
+ "path"
+ "runtime"
+
+ "github.com/otiai10/copy"
+)
+
+var (
+ TestRoot, _ = ioutil.TempDir("", "test-gitlab-shell")
+)
+
+func TempEnv(env map[string]string) func() {
+ var original = make(map[string]string)
+ for key, value := range env {
+ original[key] = os.Getenv(key)
+ os.Setenv(key, value)
+ }
+
+ return func() {
+ for key, originalValue := range original {
+ os.Setenv(key, originalValue)
+ }
+ }
+}
+
+func PrepareTestRootDir() (func(), error) {
+ if err := os.MkdirAll(TestRoot, 0700); err != nil {
+ return nil, err
+ }
+
+ var oldWd string
+ cleanup := func() {
+ if oldWd != "" {
+ err := os.Chdir(oldWd)
+ if err != nil {
+ panic(err)
+ }
+ }
+
+ if err := os.RemoveAll(TestRoot); err != nil {
+ panic(err)
+ }
+ }
+
+ if err := copyTestData(); err != nil {
+ cleanup()
+ return nil, err
+ }
+
+ oldWd, err := os.Getwd()
+ if err != nil {
+ cleanup()
+ return nil, err
+ }
+
+ if err := os.Chdir(TestRoot); err != nil {
+ cleanup()
+ return nil, err
+ }
+
+ return cleanup, nil
+}
+
+func copyTestData() error {
+ testDataDir, err := getTestDataDir()
+ if err != nil {
+ return err
+ }
+
+ testdata := path.Join(testDataDir, "testroot")
+
+ return copy.Copy(testdata, TestRoot)
+}
+
+func getTestDataDir() (string, error) {
+ _, currentFile, _, ok := runtime.Caller(0)
+ if !ok {
+ return "", fmt.Errorf("Could not get caller info")
+ }
+
+ return path.Join(path.Dir(currentFile), "testdata"), nil
+}
+
+func Setenv(key, value string) (func(), error) {
+ oldValue := os.Getenv(key)
+ err := os.Setenv(key, value)
+ return func() { os.Setenv(key, oldValue) }, err
+}