-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_helpers.go
169 lines (137 loc) · 3.39 KB
/
test_helpers.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
package readgo
import (
"os"
"os/exec"
"path/filepath"
"testing"
)
// setupTestFiles creates test files in the given directory
func setupTestFiles(t *testing.T, dir string) {
t.Helper()
// Create test files structure
files := map[string]string{
"testdata/basic/main.go": `package basic
// User represents a user in the system
type User struct {
ID int
Name string
}
// String implements fmt.Stringer
func (u *User) String() string {
return u.Name
}
// ComplexInterface defines a complex interface for testing
type ComplexInterface interface {
Method1() error
Method2(s string, i int) (bool, error)
Method3(data []byte) string
}
// Method1 implements a basic method
func Method1() error {
return nil
}
// Method2 implements a method with multiple parameters and results
func Method2(s string, i int) (bool, error) {
return true, nil
}
// Method3 implements a method with byte slice parameter
func Method3(data []byte) string {
return string(data)
}
// Method4 implements a method with complex parameters
func Method4(data map[string]interface{}) error {
return nil
}
// Method5 implements a method with variadic parameters
func Method5(prefix string, values ...interface{}) (string, error) {
return prefix, nil
}
// Method6 implements a method with channel parameters
func Method6(input chan string, output chan<- interface{}) error {
return nil
}`,
"testdata/multi/file1.go": `package multi
// Service represents a service interface
type Service interface {
Process(data []byte) error
Close() error
}
// DefaultService implements the Service interface
type DefaultService struct {
running bool
}
func (s *DefaultService) Process(data []byte) error {
return nil
}
func (s *DefaultService) Close() error {
s.running = false
return nil
}`,
"testdata/multi/file2.go": `package multi
import (
"sync"
)
// Manager manages multiple services
type Manager struct {
services []Service
mu sync.RWMutex
}
func (m *Manager) AddService(svc Service) {
m.mu.Lock()
defer m.mu.Unlock()
m.services = append(m.services, svc)
}
func (m *Manager) ProcessAll(data []byte) error {
m.mu.RLock()
defer m.mu.RUnlock()
for _, svc := range m.services {
if err := svc.Process(data); err != nil {
return err
}
}
return nil
}`,
}
// Create base directories
testDataDir := filepath.Join(dir, "testdata")
dirs := []string{
filepath.Join(testDataDir, "basic"),
filepath.Join(testDataDir, "multi"),
}
for _, d := range dirs {
err := os.MkdirAll(d, 0750)
if err != nil {
t.Fatalf("Failed to create directory %s: %v", d, err)
}
}
// Write test files
for path, content := range files {
fullPath := filepath.Join(dir, path)
err := os.WriteFile(fullPath, []byte(content), 0600)
if err != nil {
t.Fatalf("Failed to write file %s: %v", path, err)
}
}
// Create go.mod file
setupTestModule(t, dir)
}
// setupTestModule creates a test go.mod file and initializes the module
func setupTestModule(t *testing.T, dir string) {
t.Helper()
content := `module testmod
go 1.21
require (
golang.org/x/tools v0.1.1
)
`
err := os.WriteFile(filepath.Join(dir, "go.mod"), []byte(content), 0600)
if err != nil {
t.Fatalf("Failed to write go.mod: %v", err)
}
// Run go mod tidy to download dependencies and create go.sum
cmd := exec.Command("go", "mod", "tidy")
cmd.Dir = dir
if out, err := cmd.CombinedOutput(); err != nil {
t.Fatalf("Failed to run go mod tidy: %v\nOutput: %s", err, out)
}
}