gitstack

grindlemire/go-tui code browser

3.2 KB Go 130 lines 2026-01-31 · e47a4fd raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package tuigen

import (
	"strings"
	"testing"
)

func TestAnalyzer_DepsStringLiteralError(t *testing.T) {
	// Test that deps="string" produces an error
	input := `package x
templ Test(count *tui.State[int]) {
	<span deps="not-valid">{count.Get()}</span>
}`

	l := NewLexer("test.gsx", input)
	p := NewParser(l)
	file, err := p.ParseFile()
	if err != nil {
		t.Fatalf("parse error: %v", err)
	}

	analyzer := NewAnalyzer()
	stateVars := analyzer.DetectStateVars(file.Components[0])
	_ = analyzer.DetectStateBindings(file.Components[0], stateVars)

	errors := analyzer.Errors().Errors()
	if len(errors) != 1 {
		t.Fatalf("expected 1 error, got %d", len(errors))
	}
	if !strings.Contains(errors[0].Message, "must use expression syntax") {
		t.Errorf("error message = %q, want to contain 'must use expression syntax'", errors[0].Message)
	}
}

func TestAnalyzer_DepsMissingBracketsError(t *testing.T) {
	// Test that deps={count} (missing brackets) produces an error
	input := `package x
templ Test(count *tui.State[int]) {
	<span deps={count}>{count.Get()}</span>
}`

	l := NewLexer("test.gsx", input)
	p := NewParser(l)
	file, err := p.ParseFile()
	if err != nil {
		t.Fatalf("parse error: %v", err)
	}

	analyzer := NewAnalyzer()
	stateVars := analyzer.DetectStateVars(file.Components[0])
	_ = analyzer.DetectStateBindings(file.Components[0], stateVars)

	errors := analyzer.Errors().Errors()
	if len(errors) != 1 {
		t.Fatalf("expected 1 error, got %d", len(errors))
	}
	if !strings.Contains(errors[0].Message, "must be an array literal") {
		t.Errorf("error message = %q, want to contain 'must be an array literal'", errors[0].Message)
	}
}

func TestAnalyzer_DepsEmptyArrayWarning(t *testing.T) {
	// Test that deps={[]} (empty) produces a warning
	input := `package x
templ Test(count *tui.State[int]) {
	<span deps={[]}>{count.Get()}</span>
}`

	l := NewLexer("test.gsx", input)
	p := NewParser(l)
	file, err := p.ParseFile()
	if err != nil {
		t.Fatalf("parse error: %v", err)
	}

	analyzer := NewAnalyzer()
	stateVars := analyzer.DetectStateVars(file.Components[0])
	_ = analyzer.DetectStateBindings(file.Components[0], stateVars)

	errors := analyzer.Errors().Errors()
	if len(errors) != 1 {
		t.Fatalf("expected 1 error, got %d", len(errors))
	}
	if !strings.Contains(errors[0].Message, "empty deps attribute") {
		t.Errorf("error message = %q, want to contain 'empty deps attribute'", errors[0].Message)
	}
}

func TestAnalyzer_MultipleErrors(t *testing.T) {
	// Test that multiple errors are collected
	input := `package x
templ Test() {
	<unknownTag1 />
	<unknownTag2 />
}`

	_, err := AnalyzeFile("test.gsx", input)
	if err == nil {
		t.Fatal("expected errors, got nil")
	}

	errStr := err.Error()

	if !strings.Contains(errStr, "unknownTag1") {
		t.Error("missing error for unknownTag1")
	}

	if !strings.Contains(errStr, "unknownTag2") {
		t.Error("missing error for unknownTag2")
	}
}

func TestAnalyzer_ErrorHint(t *testing.T) {
	input := `package x
templ Test() {
	<div colour="red"></div>
}`

	_, err := AnalyzeFile("test.gsx", input)
	if err == nil {
		t.Fatal("expected error, got nil")
	}

	errStr := err.Error()

	// Should have hint about similar attribute
	if !strings.Contains(errStr, "did you mean") {
		t.Errorf("error should contain hint, got: %s", errStr)
	}
}