@@ -79,7 +79,7 @@ func TestOnUnmatched(t *testing.T) {
79
79
80
80
// should exit with error when using fatal
81
81
t .Run ("fatal" , func (t * testing.T ) {
82
- errorFn := func (err error ) {
82
+ errorFn := func (as * require. Assertions , err error ) {
83
83
as .ErrorContains (err , "no formatter for path: " + expectedPaths [0 ])
84
84
}
85
85
@@ -114,8 +114,8 @@ func TestOnUnmatched(t *testing.T) {
114
114
115
115
t .Run ("invalid" , func (t * testing.T ) {
116
116
// test bad value
117
- errorFn := func (arg string ) func (err error ) {
118
- return func (err error ) {
117
+ errorFn := func (arg string ) func (as * require. Assertions , err error ) {
118
+ return func (as * require. Assertions , err error ) {
119
119
as .ErrorContains (err , fmt .Sprintf (`invalid level: "%s"` , arg ))
120
120
}
121
121
}
@@ -153,7 +153,7 @@ func TestQuiet(t *testing.T) {
153
153
t .Setenv ("TREEFMT_ALLOW_MISSING_FORMATTER" , "false" )
154
154
155
155
// check it doesn't suppress errors
156
- treefmt (t , withError (func (err error ) {
156
+ treefmt (t , withError (func (as * require. Assertions , err error ) {
157
157
as .ErrorContains (err , "error looking up 'foo-fmt'" )
158
158
}))
159
159
}
@@ -183,8 +183,6 @@ func TestCpuProfile(t *testing.T) {
183
183
}
184
184
185
185
func TestAllowMissingFormatter (t * testing.T ) {
186
- as := require .New (t )
187
-
188
186
tempDir := test .TempExamples (t )
189
187
configPath := filepath .Join (tempDir , "treefmt.toml" )
190
188
@@ -200,7 +198,7 @@ func TestAllowMissingFormatter(t *testing.T) {
200
198
201
199
t .Run ("default" , func (t * testing.T ) {
202
200
treefmt (t ,
203
- withError (func (err error ) {
201
+ withError (func (as * require. Assertions , err error ) {
204
202
as .ErrorIs (err , format .ErrCommandNotFound )
205
203
}),
206
204
)
@@ -226,8 +224,6 @@ func TestAllowMissingFormatter(t *testing.T) {
226
224
}
227
225
228
226
func TestSpecifyingFormatters (t * testing.T ) {
229
- as := require .New (t )
230
-
231
227
// we use the test formatter to append some whitespace
232
228
cfg := & config.Config {
233
229
FormatterConfigs : map [string ]* config.Formatter {
@@ -308,8 +304,8 @@ func TestSpecifyingFormatters(t *testing.T) {
308
304
// bad name
309
305
treefmt (t ,
310
306
withArgs ("--formatters" , "foo" ),
311
- withError (func (err error ) {
312
- as .Errorf (err , "formatter not found in config: foo " )
307
+ withError (func (as * require. Assertions , err error ) {
308
+ as .ErrorContains (err , "formatter foo not found in config" )
313
309
}),
314
310
)
315
311
})
@@ -331,8 +327,8 @@ func TestSpecifyingFormatters(t *testing.T) {
331
327
t .Setenv ("TREEFMT_FORMATTERS" , "bar,foo" )
332
328
333
329
treefmt (t ,
334
- withError (func (err error ) {
335
- as .Errorf (err , "formatter not found in config: bar " )
330
+ withError (func (as * require. Assertions , err error ) {
331
+ as .ErrorContains (err , "formatter bar not found in config" )
336
332
}),
337
333
)
338
334
})
@@ -541,7 +537,7 @@ func TestConfigFile(t *testing.T) {
541
537
withEnv (map [string ]string {
542
538
"PRJ_ROOT" : configSubDir ,
543
539
}),
544
- withError (func (err error ) {
540
+ withError (func (as * require. Assertions , err error ) {
545
541
as .ErrorContains (err , "failed to find treefmt config file" )
546
542
}),
547
543
)
@@ -550,8 +546,6 @@ func TestConfigFile(t *testing.T) {
550
546
}
551
547
552
548
func TestCache (t * testing.T ) {
553
- as := require .New (t )
554
-
555
549
tempDir := test .TempExamples (t )
556
550
configPath := filepath .Join (tempDir , "treefmt.toml" )
557
551
@@ -657,7 +651,7 @@ func TestCache(t *testing.T) {
657
651
// running should match but not format anything
658
652
659
653
treefmt (t ,
660
- withError (func (err error ) {
654
+ withError (func (as * require. Assertions , err error ) {
661
655
as .ErrorIs (err , format .ErrFormattingFailures )
662
656
}),
663
657
withStats (t , map [stats.Type ]int {
@@ -670,7 +664,7 @@ func TestCache(t *testing.T) {
670
664
671
665
// running again should provide the same result
672
666
treefmt (t ,
673
- withError (func (err error ) {
667
+ withError (func (as * require. Assertions , err error ) {
674
668
as .ErrorIs (err , format .ErrFormattingFailures )
675
669
}),
676
670
withStats (t , map [stats.Type ]int {
@@ -733,7 +727,7 @@ func TestChangeWorkingDirectory(t *testing.T) {
733
727
734
728
treefmt (t ,
735
729
withConfig (configPath , cfg ),
736
- withError (func (err error ) {
730
+ withError (func (as * require. Assertions , err error ) {
737
731
as .ErrorContains (err , "failed to find treefmt config file" )
738
732
}),
739
733
)
@@ -804,8 +798,6 @@ func TestChangeWorkingDirectory(t *testing.T) {
804
798
}
805
799
806
800
func TestFailOnChange (t * testing.T ) {
807
- as := require .New (t )
808
-
809
801
t .Run ("change size" , func (t * testing.T ) {
810
802
tempDir := test .TempExamples (t )
811
803
configPath := filepath .Join (tempDir , "treefmt.toml" )
@@ -829,7 +821,7 @@ func TestFailOnChange(t *testing.T) {
829
821
treefmt (t ,
830
822
withArgs ("--fail-on-change" ),
831
823
withConfig (configPath , cfg ),
832
- withError (func (err error ) {
824
+ withError (func (as * require. Assertions , err error ) {
833
825
as .ErrorIs (err , formatCmd .ErrFailOnChange )
834
826
}),
835
827
withStats (t , map [stats.Type ]int {
@@ -890,7 +882,7 @@ func TestFailOnChange(t *testing.T) {
890
882
},
891
883
}
892
884
}),
893
- withError (func (err error ) {
885
+ withError (func (as * require. Assertions , err error ) {
894
886
as .ErrorIs (err , formatCmd .ErrFailOnChange )
895
887
}),
896
888
withStats (t , map [stats.Type ]int {
@@ -1428,7 +1420,7 @@ func TestGit(t *testing.T) {
1428
1420
treefmt (t ,
1429
1421
withArgs ("-C" , tempDir , "haskell" , "foo" ),
1430
1422
withConfig (configPath , cfg ),
1431
- withError (func (err error ) {
1423
+ withError (func (as * require. Assertions , err error ) {
1432
1424
as .ErrorContains (err , "path foo not found" )
1433
1425
}),
1434
1426
)
@@ -1555,8 +1547,8 @@ func TestPathsArg(t *testing.T) {
1555
1547
// specify a bad path
1556
1548
treefmt (t ,
1557
1549
withArgs ("elm/elm.json" , "haskell/Nested/Bar.hs" ),
1558
- withError (func (err error ) {
1559
- as .Errorf (err , "path haskell/Nested/Bar.hs not found" )
1550
+ withError (func (as * require. Assertions , err error ) {
1551
+ as .ErrorContains (err , "path haskell/Nested/Bar.hs not found" )
1560
1552
}),
1561
1553
)
1562
1554
@@ -1567,8 +1559,8 @@ func TestPathsArg(t *testing.T) {
1567
1559
1568
1560
treefmt (t ,
1569
1561
withArgs (absoluteExternalPath ),
1570
- withError (func (err error ) {
1571
- as .Errorf (err , "path %s not found within the tree root" , absoluteExternalPath )
1562
+ withError (func (as * require. Assertions , err error ) {
1563
+ as .ErrorContains (err , fmt . Sprintf ( "path %s not inside the tree root" , absoluteExternalPath ) )
1572
1564
}),
1573
1565
)
1574
1566
@@ -1578,8 +1570,8 @@ func TestPathsArg(t *testing.T) {
1578
1570
1579
1571
treefmt (t ,
1580
1572
withArgs (relativeExternalPath ),
1581
- withError (func (err error ) {
1582
- as .Errorf (err , "path %s not found within the tree root" , relativeExternalPath )
1573
+ withError (func (as * require. Assertions , err error ) {
1574
+ as .ErrorContains (err , fmt . Sprintf ( "path %s not inside the tree root" , relativeExternalPath ) )
1583
1575
}),
1584
1576
)
1585
1577
}
@@ -1607,7 +1599,7 @@ func TestStdin(t *testing.T) {
1607
1599
// we get an error about the missing filename parameter.
1608
1600
treefmt (t ,
1609
1601
withArgs ("--stdin" ),
1610
- withError (func (err error ) {
1602
+ withError (func (as * require. Assertions , err error ) {
1611
1603
as .EqualError (err , "exactly one path should be specified when using the --stdin flag" )
1612
1604
}),
1613
1605
withStderr (func (out []byte ) {
@@ -1640,8 +1632,8 @@ func TestStdin(t *testing.T) {
1640
1632
1641
1633
treefmt (t ,
1642
1634
withArgs ("--stdin" , "../test.nix" ),
1643
- withError (func (err error ) {
1644
- as .Errorf (err , "path ../test.nix not inside the tree root %s" , tempDir )
1635
+ withError (func (as * require. Assertions , err error ) {
1636
+ as .ErrorContains (err , fmt . Sprintf ( "path ../test.nix not inside the tree root %s" , tempDir ) )
1645
1637
}),
1646
1638
withStderr (func (out []byte ) {
1647
1639
as .Contains (string (out ), "Error: path ../test.nix not inside the tree root" )
@@ -1804,7 +1796,7 @@ func TestRunInSubdir(t *testing.T) {
1804
1796
// this should not work, as we're in a subdirectory
1805
1797
treefmt (t ,
1806
1798
withArgs ("-c" , "elm/elm.json" , "haskell/Nested/Foo.hs" ),
1807
- withError (func (err error ) {
1799
+ withError (func (as * require. Assertions , err error ) {
1808
1800
as .ErrorContains (err , "path elm/elm.json not found" )
1809
1801
}),
1810
1802
)
@@ -1836,7 +1828,7 @@ type options struct {
1836
1828
assertStdout func ([]byte )
1837
1829
assertStderr func ([]byte )
1838
1830
1839
- assertError func (error )
1831
+ assertError func (* require. Assertions , error )
1840
1832
assertStats func (* stats.Stats )
1841
1833
1842
1834
bump struct {
@@ -1886,7 +1878,7 @@ func withStats(t *testing.T, expected map[stats.Type]int) option {
1886
1878
}
1887
1879
}
1888
1880
1889
- func withError (fn func (error )) option {
1881
+ func withError (fn func (* require. Assertions , error )) option {
1890
1882
return func (o * options ) {
1891
1883
o .assertError = fn
1892
1884
}
@@ -1896,8 +1888,8 @@ func withNoError(t *testing.T) option {
1896
1888
t .Helper ()
1897
1889
1898
1890
return func (o * options ) {
1899
- o .assertError = func (err error ) {
1900
- require .NoError (t , err )
1891
+ o .assertError = func (as * require. Assertions , err error ) {
1892
+ as .NoError (err )
1901
1893
}
1902
1894
}
1903
1895
}
@@ -1928,6 +1920,8 @@ func treefmt(
1928
1920
) {
1929
1921
t .Helper ()
1930
1922
1923
+ as := require .New (t )
1924
+
1931
1925
// build options
1932
1926
opts := & options {}
1933
1927
for _ , option := range opt {
@@ -2037,6 +2031,6 @@ func treefmt(
2037
2031
}
2038
2032
2039
2033
if opts .assertError != nil {
2040
- opts .assertError (cmdErr )
2034
+ opts .assertError (as , cmdErr )
2041
2035
}
2042
2036
}
0 commit comments