Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #1330 #1382

Merged
merged 1 commit into from
Dec 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions tools/goctl/util/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,30 @@ func GetGitHome() (string, error) {

// GetTemplateDir returns the category path value in GoctlHome where could get it by GetGoctlHome
func GetTemplateDir(category string) (string, error) {
goctlHome, err := GetGoctlHome()
home, err := GetGoctlHome()
if err != nil {
return "", err
}
if home == goctlHome {
// backward compatible, it will be removed in the feature
// backward compatible start
beforeTemplateDir := filepath.Join(home, version.GetGoctlVersion(), category)
fs, _ := ioutil.ReadDir(beforeTemplateDir)
var hasContent bool
for _, e := range fs {
if e.Size() > 0 {
hasContent = true
}
}
if hasContent {
return beforeTemplateDir, nil
}
// backward compatible end

return filepath.Join(home, category), nil
}

return filepath.Join(goctlHome, version.GetGoctlVersion(), category), nil
return filepath.Join(home, version.GetGoctlVersion(), category), nil
}

// InitTemplates creates template files GoctlHome where could get it by GetGoctlHome
Expand Down
53 changes: 53 additions & 0 deletions tools/goctl/util/file_test.go
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down