mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
31349a9c3a
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
108 lines
2.5 KiB
Go
108 lines
2.5 KiB
Go
package configload
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
// TestCopyDir_symlinks sets up a directory with two submodules,
|
|
// one being a symlink to the other
|
|
//
|
|
// The resultant file structure is as follows:
|
|
// ├── modules
|
|
// │ ├── symlink-module -> test-module
|
|
// │ └── test-module
|
|
// │ └── main.tf
|
|
// └── target
|
|
// ├── symlink-module -> test-module
|
|
// └── test-module
|
|
// └── main.tf
|
|
|
|
func TestCopyDir_symlinks(t *testing.T) {
|
|
tmpdir, err := ioutil.TempDir("", "copy-dir-test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
moduleDir := filepath.Join(tmpdir, "modules")
|
|
err = os.Mkdir(moduleDir, os.ModePerm)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
subModuleDir := filepath.Join(moduleDir, "test-module")
|
|
err = os.Mkdir(subModuleDir, os.ModePerm)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = ioutil.WriteFile(filepath.Join(subModuleDir, "main.tf"), []byte("hello"), 0644)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = os.Symlink("test-module", filepath.Join(moduleDir, "symlink-module"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
targetDir := filepath.Join(tmpdir, "target")
|
|
os.Mkdir(targetDir, os.ModePerm)
|
|
|
|
err = copyDir(targetDir, moduleDir)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if _, err = os.Lstat(filepath.Join(targetDir, "test-module", "main.tf")); os.IsNotExist(err) {
|
|
t.Fatal("target test-module/main.tf was not created")
|
|
}
|
|
|
|
if _, err = os.Lstat(filepath.Join(targetDir, "symlink-module", "main.tf")); os.IsNotExist(err) {
|
|
t.Fatal("target symlink-module/main.tf was not created")
|
|
}
|
|
}
|
|
|
|
func TestCopyDir_symlink_file(t *testing.T) {
|
|
tmpdir, err := ioutil.TempDir("", "copy-file-test")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
moduleDir := filepath.Join(tmpdir, "modules")
|
|
err = os.Mkdir(moduleDir, os.ModePerm)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = ioutil.WriteFile(filepath.Join(moduleDir, "main.tf"), []byte("hello"), 0644)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
err = os.Symlink("main.tf", filepath.Join(moduleDir, "symlink.tf"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
targetDir := filepath.Join(tmpdir, "target")
|
|
os.Mkdir(targetDir, os.ModePerm)
|
|
|
|
err = copyDir(targetDir, moduleDir)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if _, err = os.Lstat(filepath.Join(targetDir, "main.tf")); os.IsNotExist(err) {
|
|
t.Fatal("target/main.tf was not created")
|
|
}
|
|
|
|
if _, err = os.Lstat(filepath.Join(targetDir, "symlink.tf")); os.IsNotExist(err) {
|
|
t.Fatal("target/symlink.tf was not created")
|
|
}
|
|
}
|