-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.go
More file actions
340 lines (259 loc) · 5.88 KB
/
input.go
File metadata and controls
340 lines (259 loc) · 5.88 KB
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
package main
import (
"fmt"
"os"
"strings"
)
// Test: functions should be reordered (main last, init first after imports)
func helperLower() { fmt.Println("helper") }
func HelperUpper() {}
func main() {
fmt.Println("main")
}
// Test: vars should be merged and sorted
var globalZ = 10
var globalA = 5
var GlobalPublic = "public"
// Test: consts should be merged and sorted
const ConstZ = "z"
const constPrivate = "private"
// Test: type declared in wrong place
type Processor func(input string) (output string, err error)
// Test: method declared before its type
func (s *Server) privateMethod() { return }
const ConstA = "a"
type Reader interface {
Read(p []byte) (n int, err error)
}
// Test: blank var interface check
var _ fmt.Stringer = (*Server)(nil)
// Test: constructor declared before type
func NewServer() *Server { return &Server{} }
type Writer interface {
Write(p []byte) (n int, err error)
}
// Test: struct fields should be reordered (embedded, public, private)
type Server struct {
port int
Host string
Address string
*Client
timeout int
Embedded
MaxConns int
}
func (s *Server) PublicMethod() {}
// Test: init should be moved up
func init() { fmt.Println("init 1") }
var _ Reader = (*Server)(nil)
// Test: struct fields in wrong order
type Client struct {
name string
URL string
}
func NewClientWithTimeout(timeout int) (*Client, error) { return nil, nil }
type Embedded struct{}
func (s *Server) AnotherPublic() { fmt.Println("another") }
type Handler func(s string) error
func init() {
fmt.Println("init 2")
}
func NewClient() *Client { return &Client{} }
const (
ConstMiddle = "m"
ConstB = "b"
)
type ReadWriter interface {
Read(p []byte) (n int, err error)
Write(p []byte) (n int, err error)
}
// Test: struct literal fields should be reordered
func NewServerWithOptions(host string, port int) *Server {
return &Server{Host: host, port: port}
}
var (
globalMiddle = 7
globalB = 3
)
func (c *Client) Connect() error { return nil }
type MyString string
func (c *Client) disconnect() { return }
type Closer interface {
Close() error
}
func processData(data string) string { return strings.ToUpper(data) }
var _ Writer = (*Client)(nil)
func ProcessDataPublic(data string) string {
return strings.ToLower(data)
}
func (s *Server) handleRequest() {}
// Test: struct fields reordering
type Config struct {
debug bool
Verbose bool
name string
Timeout int
}
func NewConfig() Config { return Config{} }
// Test: struct literal reordering
func NewConfigWithDefaults() *Config {
return &Config{Verbose: true, Timeout: 30, debug: false, name: "default"}
}
type Empty struct{}
// Test: embedded fields should be sorted
type OnlyEmbedded struct {
fmt.Stringer
Reader
}
type OnlyPublic struct {
Name string
Age int
}
type OnlyPrivate struct {
name string
age int
}
// Test: mixed struct fields
type Mixed struct {
Embedded
*Client
Name string
Address string
age int
count int
}
// Test: struct literal field reordering
func createMixed() *Mixed {
return &Mixed{count: 1, Name: "test", age: 25, Address: "addr"}
}
// Test: blank line before return
func functionWithReturn() int {
x := 1
y := 2
return x + y
}
func functionWithEarlyReturn(x int) int {
if x < 0 {
return 0
}
y := x * 2
return y
}
func functionWithOnlyReturn() int {
return 42
}
type SingleField struct {
Value int
}
var singleConst = 1
type EmptyInterface interface{}
type IntAlias int
func standaloneHelper() {}
// Test: custom type grouping in const block
type StatusCode MyString
const (
StatusOK StatusCode = "ok"
StatusError StatusCode = "error"
StatusPending StatusCode = "pending"
)
type Priority int
// Test: iota const block should stay separate
const (
PriorityLow Priority = iota
PriorityMedium
PriorityHigh
)
// Test: custom type grouping in var block
var (
DefaultStatus StatusCode = "default"
ErrorStatus StatusCode = "error"
)
// Test: no blank lines between switch cases
func functionWithSwitch(x int) string {
switch x {
case 1:
return "one"
case 2:
return "two"
default:
return "other"
}
}
// Test: no blank lines between select cases
func functionWithSelect(ch chan int) {
select {
case v := <-ch:
fmt.Println(v)
default:
fmt.Println("no value")
}
}
// Test: blank line before comments
func functionWithComment() {
x := 1
// This is a comment about y
y := 2
z := x + y
// Another comment
// spanning multiple lines
fmt.Println(z)
}
// Test: type switch case spacing
func functionWithTypeSwitch(x interface{}) string {
switch x.(type) {
case int:
return "int"
case string:
return "string"
default:
return "unknown"
}
}
// Test: unexported constructor matching
type myPrivateType struct {
value int
}
func newMyPrivateType() *myPrivateType {
return &myPrivateType{value: 1}
}
// Test: positional literals should be converted to keyed
type PositionalTest struct {
Name string
Age int
City string
}
func createPositional() *PositionalTest {
return &PositionalTest{"John", 30, "NYC"}
}
func createPositionalPartial() *PositionalTest {
return &PositionalTest{"Jane", 25}
}
// Test: anonymous struct with positional literal
func createAnonymous() interface{} {
return struct {
B int
A string
}{42, "hello"}
}
// Test: embedded fields in positional literal
type WithEmbedded struct {
PositionalTest
Extra string
}
func createWithEmbedded() *WithEmbedded {
return &WithEmbedded{PositionalTest{"Bob", 40, "LA"}, "extra"}
}
// Test: external struct literal should NOT be touched
func createExternal() *os.File {
// This uses positional but type is external - leave untouched
// (os.File doesn't actually support this, so use a keyed example)
return nil
}
// Test: already keyed literal - no change
func createKeyed() *PositionalTest {
return &PositionalTest{Name: "Alice", Age: 35, City: "Boston"}
}
// Test: empty literal - no change
func createEmpty() *PositionalTest {
return &PositionalTest{}
}