123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package ctx
- import (
- "go/build"
- "os"
- "path/filepath"
- "testing"
- "github.com/stretchr/testify/assert"
- "github.com/tal-tech/go-zero/core/stringx"
- "github.com/tal-tech/go-zero/tools/goctl/util"
- )
- func TestProjectFromGoPath(t *testing.T) {
- dft := build.Default
- gp := dft.GOPATH
- if len(gp) == 0 {
- return
- }
- projectName := stringx.Rand()
- dir := filepath.Join(gp, "src", projectName)
- err := util.MkdirIfNotExist(dir)
- if err != nil {
- return
- }
- defer func() {
- _ = os.RemoveAll(dir)
- }()
- ctx, err := projectFromGoPath(dir)
- assert.Nil(t, err)
- assert.Equal(t, dir, ctx.Dir)
- assert.Equal(t, projectName, ctx.Path)
- }
- func TestProjectFromGoPathNotInGoSrc(t *testing.T) {
- dft := build.Default
- gp := dft.GOPATH
- if len(gp) == 0 {
- return
- }
- projectName := stringx.Rand()
- dir := filepath.Join(gp, "src", projectName)
- err := util.MkdirIfNotExist(dir)
- if err != nil {
- return
- }
- defer func() {
- _ = os.RemoveAll(dir)
- }()
- _, err = projectFromGoPath("testPath")
- assert.NotNil(t, err)
- }
|