better indexing

This commit is contained in:
Martino Ferrari
2026-01-22 01:53:50 +01:00
parent f111bf1aaa
commit 164dad896c
2 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,81 @@
package integration
import (
"testing"
"github.com/marte-dev/marte-dev-tools/internal/index"
"github.com/marte-dev/marte-dev-tools/internal/parser"
"github.com/marte-dev/marte-dev-tools/internal/validator"
)
func TestGAMSignalLinking(t *testing.T) {
content := `
+Data = {
Class = ReferenceContainer
+MyDS = {
Class = FileReader
Filename = "test.txt"
Signals = {
MySig = { Type = uint32 }
}
}
}
+MyGAM = {
Class = IOGAM
InputSignals = {
MySig = {
DataSource = MyDS
Type = uint32
}
AliasedSig = {
Alias = MySig
DataSource = MyDS
Type = uint32
}
}
}
`
p := parser.NewParser(content)
config, err := p.Parse()
if err != nil {
t.Fatalf("Parse failed: %v", err)
}
idx := index.NewProjectTree()
idx.AddFile("gam_signals_linking.marte", config)
idx.ResolveReferences()
v := validator.NewValidator(idx, ".")
v.ValidateProject()
if len(v.Diagnostics) > 0 {
for _, d := range v.Diagnostics {
t.Logf("Diagnostic: %s", d.Message)
}
t.Fatalf("Validation failed with %d issues", len(v.Diagnostics))
}
foundMyDSRef := 0
foundAliasRef := 0
for _, ref := range idx.References {
if ref.Name == "MyDS" {
if ref.Target != nil && ref.Target.RealName == "+MyDS" {
foundMyDSRef++
}
}
if ref.Name == "MySig" {
if ref.Target != nil && ref.Target.RealName == "MySig" {
foundAliasRef++
}
}
}
if foundMyDSRef < 2 {
t.Errorf("Expected at least 2 resolved MyDS references, found %d", foundMyDSRef)
}
if foundAliasRef < 1 {
t.Errorf("Expected at least 1 resolved Alias MySig reference, found %d", foundAliasRef)
}
}