-
Notifications
You must be signed in to change notification settings - Fork 0
/
validator_test.go
213 lines (181 loc) · 4.49 KB
/
validator_test.go
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
package readgo
import (
"context"
"os"
"path/filepath"
"testing"
)
func TestValidateFile(t *testing.T) {
// Create a temporary directory for test files
tmpDir, err := os.MkdirTemp("", "readgo-test")
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
defer os.RemoveAll(tmpDir)
// Create test files
testFiles := map[string]string{
"valid.go": `package test
import "fmt"
func main() {
fmt.Println("Hello, World!")
}`,
"invalid.go": `package test
import "fmt"
func main() {
fmt.Println("Hello, World!"
}`, // Missing closing parenthesis
}
for name, content := range testFiles {
path := filepath.Join(tmpDir, name)
if err := os.WriteFile(path, []byte(content), 0600); err != nil {
t.Fatalf("Failed to write test file: %v", err)
}
}
validator := NewValidator(tmpDir)
tests := []struct {
name string
file string
wantErr bool
wantValidErrs bool // true if we expect validation errors in the result
}{
{
name: "Valid file",
file: "valid.go",
wantErr: false,
wantValidErrs: false,
},
{
name: "Invalid file",
file: "invalid.go",
wantErr: false,
wantValidErrs: true,
},
{
name: "Non-existent file",
file: "nonexistent.go",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result, err := validator.ValidateFile(context.Background(), tt.file)
if (err != nil) != tt.wantErr {
t.Errorf("ValidateFile() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !tt.wantErr {
if tt.wantValidErrs && len(result.Errors) == 0 {
t.Error("ValidateFile() expected validation errors but got none")
}
if !tt.wantValidErrs && len(result.Errors) > 0 {
t.Errorf("ValidateFile() got unexpected errors = %v", result.Errors)
}
}
})
}
}
func TestValidatePackage(t *testing.T) {
// Create a temporary directory for test files
tmpDir, err := os.MkdirTemp("", "readgo-test")
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
defer os.RemoveAll(tmpDir)
// Create test package structure
pkgPath := filepath.Join(tmpDir, "testpkg")
if err := os.MkdirAll(pkgPath, 0755); err != nil {
t.Fatalf("Failed to create test package: %v", err)
}
// Create test files
testFiles := map[string]string{
"main.go": `package testpkg
import "fmt"
func main() {
fmt.Println("Hello, World!")
}`,
"types.go": `package testpkg
type User struct {
Name string
}`,
}
for name, content := range testFiles {
path := filepath.Join(pkgPath, name)
if err := os.WriteFile(path, []byte(content), 0600); err != nil {
t.Fatalf("Failed to write test file: %v", err)
}
}
validator := NewValidator(tmpDir)
tests := []struct {
name string
pkg string
wantErr bool
}{
{
name: "Valid package",
pkg: "testpkg",
wantErr: false,
},
{
name: "Non-existent package",
pkg: "nonexistent",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result, err := validator.ValidatePackage(context.Background(), tt.pkg)
if (err != nil) != tt.wantErr {
t.Errorf("ValidatePackage() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !tt.wantErr && len(result.Errors) > 0 {
t.Errorf("ValidatePackage() got errors = %v", result.Errors)
}
})
}
}
func TestValidateProject(t *testing.T) {
// Create a temporary directory for test files
tmpDir, err := os.MkdirTemp("", "readgo-test")
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
defer os.RemoveAll(tmpDir)
// Create test project structure
dirs := []string{
"pkg1",
"pkg2",
}
for _, dir := range dirs {
if err := os.MkdirAll(filepath.Join(tmpDir, dir), 0755); err != nil {
t.Fatalf("Failed to create test directory: %v", err)
}
}
// Create test files
testFiles := map[string]string{
"pkg1/main.go": `package pkg1
import "fmt"
func main() {
fmt.Println("Hello from pkg1!")
}`,
"pkg2/types.go": `package pkg2
type User struct {
Name string
}`,
}
for path, content := range testFiles {
fullPath := filepath.Join(tmpDir, path)
if err := os.WriteFile(fullPath, []byte(content), 0600); err != nil {
t.Fatalf("Failed to write test file: %v", err)
}
}
validator := NewValidator(tmpDir)
result, err := validator.ValidateProject(context.Background())
if err != nil {
t.Errorf("ValidateProject() error = %v", err)
return
}
if len(result.Errors) > 0 {
t.Errorf("ValidateProject() got errors = %v", result.Errors)
}
}