-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.go
More file actions
472 lines (365 loc) · 8.52 KB
/
input.go
File metadata and controls
472 lines (365 loc) · 8.52 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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package main
import (
"context"
"fmt"
"net/http"
"os"
"path/filepath"
"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{}
}
// Test: slice of anonymous structs with positional literals
var sliceOfStructs = []struct {
path string
content string
}{
{filepath.Join("a", "b"), "content1"},
{filepath.Join("c", "d"), "content2"},
}
// Test: multi-line func signature should collapse to single line
func multiLineFunc(
a int,
b string,
c bool,
) error {
return nil
}
// Test: multi-line method signature should collapse
func (s *Server) multiLineMethod(
ctx context.Context,
input string,
) (string, error) {
return input, nil
}
// Test: multi-line return values should collapse
func multiLineReturns() (
result string,
err error,
) {
return "", nil
}
// Test: function type should collapse
type MultiLineHandler func(
w http.ResponseWriter,
r *http.Request,
)
// Test: interface method should collapse
type MultiLineInterface interface {
Process(
ctx context.Context,
input Input,
) (Output, error)
}
// Types for interface test
type Input struct{}
type Output struct{}
// Test: structs with encoding tags (json/yaml) should NOT be reordered
type APIResponse struct {
Status string `json:"status"`
Message string `json:"message"`
Code int `json:"code"`
}
// Test: structs with non-encoding tags should still be reordered
type ValidatedInput struct {
Zulu string `validate:"required"`
Alpha string `validate:"required"`
bravo int
}
// Test: spurious blank lines between struct fields should be removed
type SpacedStruct struct {
logStore string
maxWidth int
client string
host string
}
// Test: doc comments on individual vars/consts are preserved during merge
// EntryPoints defines supported entry points.
var EntryPoints = []string{
"index.ts",
"index.js",
}
// MaxAttempts is the max retry count.
var MaxAttempts = 5
// defaultDelay is the default delay.
var defaultDelay = 100
// AppVersion is a documented constant.
const AppVersion = "2.0"
// internalBuild is private.
const internalBuild = "abc123"
// Test: inline comments on consts are preserved during reorder
const (
ZetaVal = "zeta" // zeta inline
AlphaVal = "alpha" // alpha inline
BetaVal = "beta" // beta inline
)
// Test: variable declaration order preserved for init dependencies
var Registry = []*Feature{}
func NewFeature(name string) *Feature {
f := &Feature{Name: name}
Registry = append(Registry, f)
return f
}
var FeatureAlpha = NewFeature("alpha")
var FeatureBeta = NewFeature("beta")
type Feature struct {
Name string
}
// Test: typed consts with multiple custom types preserve original order
type Severity string
const (
SeverityCritical Severity = "critical"
SeverityWarning Severity = "warning"
SeverityInfo Severity = "info"
)