Co-authored-by: anqiansong <anqiansong@bytedance.com>
This commit is contained in:
@@ -1,13 +1,66 @@
|
||||
package util
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/tal-tech/go-zero/tools/goctl/internal/version"
|
||||
)
|
||||
|
||||
func TestGetTemplateDir(t *testing.T) {
|
||||
category := "foo"
|
||||
t.Run("before_have_templates", func(t *testing.T) {
|
||||
home := t.TempDir()
|
||||
RegisterGoctlHome("")
|
||||
RegisterGoctlHome(home)
|
||||
v := version.GetGoctlVersion()
|
||||
dir := filepath.Join(home, v, category)
|
||||
err := MkdirIfNotExist(dir)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
tempFile := filepath.Join(dir, "bar.txt")
|
||||
err = ioutil.WriteFile(tempFile, []byte("foo"), os.ModePerm)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
templateDir, err := GetTemplateDir(category)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
assert.Equal(t, dir, templateDir)
|
||||
RegisterGoctlHome("")
|
||||
})
|
||||
|
||||
t.Run("before_has_no_template", func(t *testing.T) {
|
||||
home := t.TempDir()
|
||||
RegisterGoctlHome("")
|
||||
RegisterGoctlHome(home)
|
||||
dir := filepath.Join(home, category)
|
||||
err := MkdirIfNotExist(dir)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
templateDir, err := GetTemplateDir(category)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
assert.Equal(t, dir, templateDir)
|
||||
})
|
||||
|
||||
t.Run("default", func(t *testing.T) {
|
||||
RegisterGoctlHome("")
|
||||
dir, err := GetTemplateDir(category)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
assert.Contains(t, dir, version.BuildVersion)
|
||||
})
|
||||
}
|
||||
|
||||
func TestGetGitHome(t *testing.T) {
|
||||
homeDir, err := os.UserHomeDir()
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user