Skip to content

Commit

Permalink
update:GoxTestClassType
Browse files Browse the repository at this point in the history
  • Loading branch information
luoliwoshang committed May 7, 2024
1 parent 459c98a commit 7f8a235
Show file tree
Hide file tree
Showing 3 changed files with 97 additions and 36 deletions.
60 changes: 24 additions & 36 deletions gopls/internal/lsp/source/code_lens_gox.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"regexp"
"strings"

"github.com/goplus/gop"
"github.com/goplus/gop/ast"
"github.com/goplus/gop/parser"
"golang.org/x/tools/gopls/internal/goxls"
Expand Down Expand Up @@ -186,15 +185,11 @@ func gopCommandCodeLens(ctx context.Context, snapshot Snapshot, fh FileHandle) (
if strings.HasSuffix(filename, "_test.go") || strings.HasSuffix(filename, "_test.gop") {
return nil, nil
}
mod, err := snapshot.GopModForFile(ctx, fh.URI())
if err != nil {
return nil, err
}
pgf, err := snapshot.ParseGop(ctx, fh, parser.PackageClauseOnly)
if err != nil {
return nil, err
}
if classType, isTest := gop.GetFileClassType(mod, pgf.File, filename); isTest {
if classType, isGoxTest := GoxTestClassType(pgf.File, filename); isGoxTest {
return goxTestCodeLens(pgf, classType)
}
if pgf.File.Name.Name == "main" {
Expand All @@ -216,35 +211,28 @@ func gopCommandCodeLens(ctx context.Context, snapshot Snapshot, fh FileHandle) (
}

func goxTestCodeLens(pgf *ParsedGopFile, classType string) ([]protocol.CodeLens, error) {
if pgf.File.Name.Name == "main" {
rng, err := pgf.PosRange(pgf.File.Pos(), pgf.File.Pos())
if err != nil {
return nil, err
}
pattern := regexp.MustCompile(`^case(?:_)?`) //goxls: remove case or case_
if pattern.MatchString(classType) {
classType = pattern.ReplaceAllString(classType, "")
}
args, err := command.MarshalArgs(
map[string]string{
"functionName": "Test_" + classType,
},
)
if err != nil {
return nil, err
}
codelens := []protocol.CodeLens{
{Range: rng, Command: &protocol.Command{
Title: "run test package",
Command: "gop.test.package",
}},
{Range: rng, Command: &protocol.Command{ // goxls: add test cursor as test file
Title: "run file tests",
Command: "gop.test.cursor",
Arguments: args,
}},
}
return codelens, nil
rng, err := pgf.PosRange(pgf.File.Pos(), pgf.File.Pos())
if err != nil {
return nil, err
}
return nil, nil
args, err := command.MarshalArgs(
map[string]string{
"functionName": "Test_" + classType,
},
)
if err != nil {
return nil, err
}
codelens := []protocol.CodeLens{
{Range: rng, Command: &protocol.Command{
Title: "run test package",
Command: "gop.test.package",
}},
{Range: rng, Command: &protocol.Command{ // goxls: add test cursor as test file
Title: "run file tests",
Command: "gop.test.cursor",
Arguments: args,
}},
}
return codelens, nil
}
14 changes: 14 additions & 0 deletions gopls/internal/lsp/source/util_gox.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"strings"

"github.com/goplus/gop/ast"
"github.com/goplus/gop/cl"
"github.com/goplus/gop/printer"
"github.com/goplus/gop/token"
"github.com/goplus/gop/x/typesutil"
Expand Down Expand Up @@ -287,3 +288,16 @@ func gopEmbeddedIdent(x ast.Expr) *ast.Ident {
}
return nil
}

func GoxTestClassType(file *ast.File, filename string) (classType string, isGoxTest bool) {
if file.IsClass {
var ext string
classType, _, ext = cl.ClassNameAndExt(filename)
if file.IsNormalGox {
isGoxTest = strings.HasSuffix(ext, "_test.gox")
} else {
isGoxTest = strings.HasSuffix(ext, "test.gox")
}
}
return
}
59 changes: 59 additions & 0 deletions gopls/internal/lsp/source/util_gox_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package source

import (
"github.com/goplus/gop/ast"

"testing"
)

func TestGoxTestClassType(t *testing.T) {
type testData struct {
isClass bool
isNormalGox bool
isProj bool
fileName string
classType string
isGoxTest bool
}
tests :=
[]*testData{
{false, false, false, "abc.gop", "", false},
{false, false, false, "abc_test.gop", "", false},

{true, true, false, "abc.gox", "abc", false},
{true, true, false, "Abc.gox", "Abc", false},
{true, true, false, "abc_demo.gox", "abc", false},
{true, true, false, "Abc_demo.gox", "Abc", false},

{true, false, false, "get.yap", "get", false},
{true, false, false, "get_p_#id.yap", "get_p_id", false},
{true, false, true, "main.yap", "main", false},

{true, true, false, "main.gox", "main", false},
{true, true, false, "main_demo.gox", "main", false},
{true, true, false, "abc_xtest.gox", "abc", false},
{true, true, false, "main_xtest.gox", "main", false},

{true, true, false, "abc_test.gox", "abc", true},
{true, true, false, "Abc_test.gox", "Abc", true},
{true, true, false, "main_test.gox", "main", true},

{true, false, false, "abc_yap.gox", "abc", false},
{true, false, false, "Abc_yap.gox", "Abc", false},
{true, false, true, "main_yap.gox", "main", false},

{true, false, false, "abc_ytest.gox", "abc", true},
{true, false, false, "Abc_ytest.gox", "Abc", true},
{true, false, true, "main_ytest.gox", "main", true},
}
for _, test := range tests {
f := &ast.File{IsClass: test.isClass, IsNormalGox: test.isNormalGox, IsProj: test.isProj}
classType, isGoxTest := GoxTestClassType(f, test.fileName)
if isGoxTest != test.isGoxTest {
t.Fatalf("%v check classType isTest want %v, got %v.", test.fileName, test.isGoxTest, isGoxTest)
}
if classType != test.classType {
t.Fatalf("%v getClassType want %v, got %v.", test.fileName, test.classType, classType)
}
}
}

0 comments on commit 7f8a235

Please sign in to comment.