Compare commits

...

4 Commits

Author SHA1 Message Date
Steve
3cec19ee62 Merge pull request #187 from Laur1nMartins/master
Fixed parsing of user defined linker flags
2020-07-21 09:12:17 -07:00
Steve
236499f9e5 Merge pull request #192 from revel/hotfix-1
Added local import map to getControllerFunc lookup
2020-07-14 22:10:25 -07:00
notzippy@gmail.com
42e0e3bf2b Added local import map to getControllerFunc lookup 2020-07-14 21:46:37 -07:00
Laurin
6d4ae81af9 Fixed parsing of user defined linker flags 2020-07-12 11:09:57 +02:00
3 changed files with 31 additions and 16 deletions

View File

@@ -160,16 +160,15 @@ func Build(c *model.CommandConfig, paths *model.RevelContainer) (_ *App, err err
if !contains(c.BuildFlags, "build") { if !contains(c.BuildFlags, "build") {
flags = []string{"build"} flags = []string{"build"}
} }
flags = append(flags, c.BuildFlags...)
if !contains(flags, "-ldflags") { if !contains(flags, "-ldflags") {
ldflags := "-ldflags= " + versionLinkerFlags ldflags := "-ldflags= " + versionLinkerFlags
// Add in build flags // Add user defined build flags
for i := range c.BuildFlags { for i := range c.BuildFlags {
ldflags += "-X '" + c.BuildFlags[i] + "'" ldflags += " -X '" + c.BuildFlags[i] + "'"
} }
flags = append(flags, ldflags) flags = append(flags, ldflags)
} }
if !contains(flags, "-tags") { if !contains(flags, "-tags") && buildTags != "" {
flags = append(flags, "-tags", buildTags) flags = append(flags, "-tags", buildTags)
} }
if !contains(flags, "-o") { if !contains(flags, "-o") {
@@ -177,9 +176,6 @@ func Build(c *model.CommandConfig, paths *model.RevelContainer) (_ *App, err err
} }
} }
// Add in build flags
flags = append(flags, c.BuildFlags...)
// Note: It's not applicable for filepath.* usage // Note: It's not applicable for filepath.* usage
flags = append(flags, path.Join(paths.ImportPath, "app", "tmp")) flags = append(flags, path.Join(paths.ImportPath, "app", "tmp"))

View File

@@ -62,7 +62,7 @@ func (s *SourceInfoProcessor) processPackage(p *packages.Package) (sourceInfo *m
funcDecl.Name.IsExported() && // be public funcDecl.Name.IsExported() && // be public
funcDecl.Type.Results != nil && len(funcDecl.Type.Results.List) == 1 { funcDecl.Type.Results != nil && len(funcDecl.Type.Results.List) == 1 {
// return one result // return one result
if m, receiver := s.getControllerFunc(funcDecl, p); m != nil { if m, receiver := s.getControllerFunc(funcDecl, p, localImportMap); m != nil {
methodMap[receiver] = append(methodMap[receiver], m) methodMap[receiver] = append(methodMap[receiver], m)
log.Info("Added method map to ", "receiver", receiver, "method", m.Name) log.Info("Added method map to ", "receiver", receiver, "method", m.Name)
} }
@@ -191,7 +191,7 @@ func (s *SourceInfoProcessor) getValidationParameter(funcDecl *ast.FuncDecl) *a
} }
return nil return nil
} }
func (s *SourceInfoProcessor) getControllerFunc(funcDecl *ast.FuncDecl, p *packages.Package) (method *model.MethodSpec, recvTypeName string) { func (s *SourceInfoProcessor) getControllerFunc(funcDecl *ast.FuncDecl, p *packages.Package, localImportMap map[string]string) (method *model.MethodSpec, recvTypeName string) {
selExpr, ok := funcDecl.Type.Results.List[0].Type.(*ast.SelectorExpr) selExpr, ok := funcDecl.Type.Results.List[0].Type.(*ast.SelectorExpr)
if !ok { if !ok {
return return
@@ -220,8 +220,11 @@ func (s *SourceInfoProcessor) getControllerFunc(funcDecl *ast.FuncDecl, p *packa
importPath = p.PkgPath importPath = p.PkgPath
} else if typeExpr.PkgName != "" { } else if typeExpr.PkgName != "" {
var ok bool var ok bool
if importPath, ok = s.sourceProcessor.importMap[typeExpr.PkgName]; !ok { if importPath, ok = localImportMap[typeExpr.PkgName]; !ok {
utils.Logger.Fatalf("Failed to find import for arg of type: %s , %s", typeExpr.PkgName, typeExpr.TypeName("")) if importPath, ok = s.sourceProcessor.importMap[typeExpr.PkgName]; !ok {
utils.Logger.Error("Unable to find import", "importMap", s.sourceProcessor.importMap, "localimport", localImportMap)
utils.Logger.Fatalf("Failed to find import for arg of type: %s , %s", typeExpr.PkgName, typeExpr.TypeName(""))
}
} }
} }
method.Args = append(method.Args, &model.MethodArg{ method.Args = append(method.Args, &model.MethodArg{

View File

@@ -1,19 +1,20 @@
package main_test package main_test
import ( import (
"github.com/revel/cmd/model"
"github.com/revel/cmd/revel"
"github.com/revel/cmd/utils"
"github.com/stretchr/testify/assert"
"os" "os"
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/revel/cmd/model"
main "github.com/revel/cmd/revel"
"github.com/revel/cmd/utils"
"github.com/stretchr/testify/assert"
) )
// test the commands // test the commands
func TestBuild(t *testing.T) { func TestBuild(t *testing.T) {
a := assert.New(t) a := assert.New(t)
gopath := setup("revel-test-build", a) gopath := setup("revel-test-build", a)
t.Run("Build", func(t *testing.T) { t.Run("Build", func(t *testing.T) {
a := assert.New(t) a := assert.New(t)
@@ -26,6 +27,21 @@ func TestBuild(t *testing.T) {
a.True(utils.Exists(filepath.Join(gopath, "build-test", "target"))) a.True(utils.Exists(filepath.Join(gopath, "build-test", "target")))
}) })
t.Run("Build-withFlags", func(t *testing.T) {
a := assert.New(t)
c := newApp("build-test-WithFlags", model.NEW, nil, a)
c.BuildFlags = []string{
"build-test-WithFlags/app.AppVersion=SomeValue",
"build-test-WithFlags/app.SomeOtherValue=SomeValue",
}
main.Commands[model.NEW].RunWith(c)
c.Index = model.BUILD
c.Build.TargetPath = filepath.Join(gopath, "build-test", "target")
c.Build.ImportPath = c.ImportPath
a.Nil(main.Commands[model.BUILD].RunWith(c), "Failed to run build-test-withFlags")
a.True(utils.Exists(filepath.Join(gopath, "build-test", "target")))
})
if !t.Failed() { if !t.Failed() {
if err := os.RemoveAll(gopath); err != nil { if err := os.RemoveAll(gopath); err != nil {
a.Fail("Failed to remove test path") a.Fail("Failed to remove test path")