-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpected.go
More file actions
459 lines (363 loc) · 8.55 KB
/
expected.go
File metadata and controls
459 lines (363 loc) · 8.55 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
package main
import (
"context"
"fmt"
"net/http"
"os"
"path/filepath"
"strings"
)
// Test: init should be moved up
func init() {
fmt.Println("init 1")
}
func init() {
fmt.Println("init 2")
}
const (
SeverityCritical Severity = "critical"
SeverityWarning Severity = "warning"
SeverityInfo Severity = "info"
StatusOK StatusCode = "ok"
StatusError StatusCode = "error"
StatusPending StatusCode = "pending"
AlphaVal = "alpha" // alpha inline
// AppVersion is a documented constant.
AppVersion = "2.0"
BetaVal = "beta" // beta inline
ConstA = "a"
ConstB = "b"
ConstMiddle = "m"
// Test: consts should be merged and sorted
ConstZ = "z"
// Test: inline comments on consts are preserved during reorder
ZetaVal = "zeta" // zeta inline
constPrivate = "private"
// internalBuild is private.
internalBuild = "abc123"
)
// Test: iota const block should stay separate
const (
PriorityLow Priority = iota
PriorityMedium
PriorityHigh
)
var (
// Test: blank var interface check
_ fmt.Stringer = (*Server)(nil)
_ Reader = (*Server)(nil)
_ Writer = (*Client)(nil)
// Test: custom type grouping in var block
DefaultStatus StatusCode = "default"
ErrorStatus StatusCode = "error"
GlobalPublic = "public"
// Test: doc comments on individual vars/consts are preserved during merge
// EntryPoints defines supported entry points.
EntryPoints = []string{
"index.ts",
"index.js",
}
// MaxAttempts is the max retry count.
MaxAttempts = 5
// Test: variable declaration order preserved for init dependencies
Registry = []*Feature{}
FeatureAlpha = NewFeature("alpha")
FeatureBeta = NewFeature("beta")
// Test: vars should be merged and sorted
globalZ = 10
globalA = 5
globalMiddle = 7
globalB = 3
singleConst = 1
// Test: slice of anonymous structs with positional literals
sliceOfStructs = []struct {
path string
content string
}{
{path: filepath.Join("a", "b"), content: "content1"},
{path: filepath.Join("c", "d"), content: "content2"},
}
// defaultDelay is the default delay.
defaultDelay = 100
)
// Test: type declared in wrong place
type Processor func(input string) (output string, err error)
type Handler func(s string) error
type MyString string
type IntAlias int
// Test: custom type grouping in const block
type StatusCode MyString
type Priority int
// Test: function type should collapse
type MultiLineHandler func(w http.ResponseWriter, r *http.Request)
// Test: typed consts with multiple custom types preserve original order
type Severity string
type Reader interface {
Read(p []byte) (n int, err error)
}
type Writer interface {
Write(p []byte) (n int, err error)
}
type Closer interface {
Close() error
}
// Test: interface method should collapse
type MultiLineInterface interface {
Process(ctx context.Context, input Input) (Output, error)
}
type ReadWriter interface {
Read(p []byte) (n int, err error)
Write(p []byte) (n int, err error)
}
type EmptyInterface interface{}
// Test: struct fields should be reordered (embedded, public, private)
type Server struct {
*Client
Embedded
Address string
Host string
MaxConns int
port int
timeout int
}
// Test: constructor declared before type
func NewServer() *Server {
return &Server{}
}
// Test: struct literal fields should be reordered
func NewServerWithOptions(host string, port int) *Server {
return &Server{Host: host, port: port}
}
func (s *Server) AnotherPublic() {
fmt.Println("another")
}
func (s *Server) PublicMethod() {}
func (s *Server) handleRequest() {}
// Test: multi-line method signature should collapse
func (s *Server) multiLineMethod(ctx context.Context, input string) (string, error) {
return input, nil
}
// Test: method declared before its type
func (s *Server) privateMethod() {
return
}
// Test: struct fields in wrong order
type Client struct {
URL string
name string
}
func NewClient() *Client {
return &Client{}
}
func NewClientWithTimeout(timeout int) (*Client, error) {
return nil, nil
}
func (c *Client) Connect() error {
return nil
}
func (c *Client) disconnect() {
return
}
type Embedded struct{}
// Test: struct fields reordering
type Config struct {
Timeout int
Verbose bool
debug bool
name string
}
func NewConfig() Config {
return Config{}
}
// Test: struct literal reordering
func NewConfigWithDefaults() *Config {
return &Config{Timeout: 30, Verbose: true, debug: false, name: "default"}
}
type Empty struct{}
// Test: embedded fields should be sorted
type OnlyEmbedded struct {
Reader
fmt.Stringer
}
type OnlyPublic struct {
Age int
Name string
}
type OnlyPrivate struct {
age int
name string
}
// Test: mixed struct fields
type Mixed struct {
*Client
Embedded
Address string
Name string
age int
count int
}
type SingleField struct {
Value int
}
// 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 {
Age int
City string
Name string
}
// Test: embedded fields in positional literal
type WithEmbedded struct {
PositionalTest
Extra string
}
// 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 {
Alpha string `validate:"required"`
Zulu string `validate:"required"`
bravo int
}
// Test: spurious blank lines between struct fields should be removed
type SpacedStruct struct {
client string
host string
logStore string
maxWidth int
}
type Feature struct {
Name string
}
func NewFeature(name string) *Feature {
f := &Feature{Name: name}
Registry = append(Registry, f)
return f
}
func HelperUpper() {}
func ProcessDataPublic(data string) string {
return strings.ToLower(data)
}
// Test: anonymous struct with positional literal
func createAnonymous() interface{} {
return struct {
B int
A string
}{B: 42, A: "hello"}
}
// Test: empty literal - no change
func createEmpty() *PositionalTest {
return &PositionalTest{}
}
// 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{Age: 35, City: "Boston", Name: "Alice"}
}
// Test: struct literal field reordering
func createMixed() *Mixed {
return &Mixed{Address: "addr", Name: "test", age: 25, count: 1}
}
func createPositional() *PositionalTest {
return &PositionalTest{Age: 30, City: "NYC", Name: "John"}
}
func createPositionalPartial() *PositionalTest {
return &PositionalTest{Age: 25, Name: "Jane"}
}
func createWithEmbedded() *WithEmbedded {
return &WithEmbedded{PositionalTest: PositionalTest{Age: 40, City: "LA", Name: "Bob"}, Extra: "extra"}
}
// 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)
}
func functionWithEarlyReturn(x int) int {
if x < 0 {
return 0
}
y := x * 2
return y
}
func functionWithOnlyReturn() int {
return 42
}
// Test: blank line before return
func functionWithReturn() int {
x := 1
y := 2
return x + y
}
// 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: 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: type switch case spacing
func functionWithTypeSwitch(x interface{}) string {
switch x.(type) {
case int:
return "int"
case string:
return "string"
default:
return "unknown"
}
}
// Test: functions should be reordered (main last, init first after imports)
func helperLower() {
fmt.Println("helper")
}
// Test: multi-line func signature should collapse to single line
func multiLineFunc(a int, b string, c bool) error {
return nil
}
// Test: multi-line return values should collapse
func multiLineReturns() (result string, err error) {
return "", nil
}
func processData(data string) string {
return strings.ToUpper(data)
}
func standaloneHelper() {}
func main() {
fmt.Println("main")
}