added hover doc to variable

This commit is contained in:
Martino Ferrari
2026-01-29 15:55:28 +01:00
parent 2e25c8ff11
commit 2fd6d3d096
3 changed files with 164 additions and 1 deletions

View File

@@ -0,0 +1,67 @@
package integration
import (
"strings"
"testing"
"github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-community/marte-dev-tools/internal/lsp"
"github.com/marte-community/marte-dev-tools/internal/parser"
)
func TestLSPHoverVariable(t *testing.T) {
lsp.Tree = index.NewProjectTree()
lsp.Documents = make(map[string]string)
content := `
#var MyInt: int = 123
+Obj = {
Field = $MyInt
}
`
uri := "file://hover_var.marte"
lsp.Documents[uri] = content
p := parser.NewParser(content)
cfg, err := p.Parse()
if err != nil {
t.Fatal(err)
}
lsp.Tree.AddFile("hover_var.marte", cfg)
lsp.Tree.ResolveReferences()
// 1. Hover on Definition (#var MyInt)
// Line 2 (index 1). # is at 0. Name "MyInt" is at 5.
paramsDef := lsp.HoverParams{
TextDocument: lsp.TextDocumentIdentifier{URI: uri},
Position: lsp.Position{Line: 1, Character: 5},
}
resDef := lsp.HandleHover(paramsDef)
if resDef == nil {
t.Fatal("Expected hover for definition")
}
contentDef := resDef.Contents.(lsp.MarkupContent).Value
if !strings.Contains(contentDef, "Type: `int`") {
t.Errorf("Hover def missing type. Got: %s", contentDef)
}
if !strings.Contains(contentDef, "Default: `123`") {
t.Errorf("Hover def missing default value. Got: %s", contentDef)
}
// 2. Hover on Reference ($MyInt)
// Line 4 (index 3). $MyInt is at col 12.
paramsRef := lsp.HoverParams{
TextDocument: lsp.TextDocumentIdentifier{URI: uri},
Position: lsp.Position{Line: 3, Character: 12},
}
resRef := lsp.HandleHover(paramsRef)
if resRef == nil {
t.Fatal("Expected hover for reference")
}
contentRef := resRef.Contents.(lsp.MarkupContent).Value
if !strings.Contains(contentRef, "Type: `int`") {
t.Errorf("Hover ref missing type. Got: %s", contentRef)
}
if !strings.Contains(contentRef, "Default: `123`") {
t.Errorf("Hover ref missing default value. Got: %s", contentRef)
}
}

View File

@@ -0,0 +1,62 @@
package integration
import (
"testing"
"github.com/marte-community/marte-dev-tools/internal/index"
"github.com/marte-community/marte-dev-tools/internal/lsp"
"github.com/marte-community/marte-dev-tools/internal/parser"
)
func TestLSPVariableRefs(t *testing.T) {
lsp.Tree = index.NewProjectTree()
lsp.Documents = make(map[string]string)
content := `
#var MyVar: int = 1
+Obj = {
Field = $MyVar
}
`
uri := "file://vars.marte"
lsp.Documents[uri] = content
p := parser.NewParser(content)
cfg, err := p.Parse()
if err != nil {
t.Fatal(err)
}
lsp.Tree.AddFile("vars.marte", cfg)
lsp.Tree.ResolveReferences()
// 1. Definition from Usage
// Line 4: " Field = $MyVar"
// $ is at col 12 (0-based) ?
// " Field = " is 4 + 6 + 3 = 13 chars?
// 4 spaces. Field (5). " = " (3). 4+5+3 = 12.
// So $ is at 12.
paramsDef := lsp.DefinitionParams{
TextDocument: lsp.TextDocumentIdentifier{URI: uri},
Position: lsp.Position{Line: 3, Character: 12},
}
resDef := lsp.HandleDefinition(paramsDef)
locs, ok := resDef.([]lsp.Location)
if !ok || len(locs) != 1 {
t.Fatalf("Expected 1 definition location, got %v", resDef)
}
// Line 2 in file is index 1.
if locs[0].Range.Start.Line != 1 {
t.Errorf("Expected definition at line 1, got %d", locs[0].Range.Start.Line)
}
// 2. References from Definition
// #var at line 2 (index 1). Col 0.
paramsRef := lsp.ReferenceParams{
TextDocument: lsp.TextDocumentIdentifier{URI: uri},
Position: lsp.Position{Line: 1, Character: 1},
Context: lsp.ReferenceContext{IncludeDeclaration: true},
}
resRef := lsp.HandleReferences(paramsRef)
if len(resRef) != 2 { // Decl + Usage
t.Errorf("Expected 2 references, got %d", len(resRef))
}
}