mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
config/module: Get can support subdirs
This commit is contained in:
parent
615192a6c4
commit
c91fd76fe8
@ -4,6 +4,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
// copyDir copies the src directory contents into dst. Both directories
|
// copyDir copies the src directory contents into dst. Both directories
|
||||||
@ -14,7 +15,13 @@ func copyDir(dst, src string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
dstPath := filepath.Join(dst, filepath.Base(path))
|
basePath := filepath.Base(path)
|
||||||
|
if strings.HasPrefix(basePath, ".") {
|
||||||
|
// Skip any dot files
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
dstPath := filepath.Join(dst, basePath)
|
||||||
|
|
||||||
// If we have a directory, make that subdirectory, then continue
|
// If we have a directory, make that subdirectory, then continue
|
||||||
// the walk.
|
// the walk.
|
||||||
|
@ -3,8 +3,11 @@ package module
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
"path/filepath"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
"syscall"
|
"syscall"
|
||||||
@ -51,6 +54,21 @@ func Get(dst, src string) error {
|
|||||||
var force string
|
var force string
|
||||||
force, src = getForcedGetter(src)
|
force, src = getForcedGetter(src)
|
||||||
|
|
||||||
|
// If there is a subdir component, then we download the root separately
|
||||||
|
// and then copy over the proper subdir.
|
||||||
|
var realDst string
|
||||||
|
src, subDir := getDirSubdir(src)
|
||||||
|
if subDir != "" {
|
||||||
|
tmpDir, err := ioutil.TempDir("", "tf")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer os.RemoveAll(tmpDir)
|
||||||
|
|
||||||
|
realDst = dst
|
||||||
|
dst = subDir
|
||||||
|
}
|
||||||
|
|
||||||
u, err := url.Parse(src)
|
u, err := url.Parse(src)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -68,9 +86,22 @@ func Get(dst, src string) error {
|
|||||||
err = g.Get(dst, u)
|
err = g.Get(dst, u)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
err = fmt.Errorf("error downloading module '%s': %s", src, err)
|
err = fmt.Errorf("error downloading module '%s': %s", src, err)
|
||||||
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return err
|
// If we have a subdir, copy that over
|
||||||
|
if subDir != "" {
|
||||||
|
if err := os.RemoveAll(realDst); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := os.MkdirAll(realDst, 0755); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return copyDir(realDst, filepath.Join(dst, subDir))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// getRunCommand is a helper that will run a command and capture the output
|
// getRunCommand is a helper that will run a command and capture the output
|
||||||
|
@ -46,6 +46,20 @@ func TestGet_fileForced(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGet_fileSubdir(t *testing.T) {
|
||||||
|
dst := tempDir(t)
|
||||||
|
u := testModule("basic//subdir")
|
||||||
|
|
||||||
|
if err := Get(dst, u); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
mainPath := filepath.Join(dst, "sub.tf")
|
||||||
|
if _, err := os.Stat(mainPath); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestGetDirSubdir(t *testing.T) {
|
func TestGetDirSubdir(t *testing.T) {
|
||||||
cases := []struct {
|
cases := []struct {
|
||||||
Input string
|
Input string
|
||||||
|
Loading…
Reference in New Issue
Block a user