@@ -310,7 +310,7 @@ func TestIncludesAndExcludes(t *testing.T) {
310
310
}
311
311
312
312
test .WriteConfig (t , configPath , cfg )
313
- _ , statz , err := treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
313
+ statz , err := treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
314
314
as .NoError (err )
315
315
316
316
assertStats (t , as , statz , map [stats.Type ]int {
@@ -324,7 +324,7 @@ func TestIncludesAndExcludes(t *testing.T) {
324
324
cfg .Excludes = []string {"*.nix" }
325
325
326
326
test .WriteConfig (t , configPath , cfg )
327
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
327
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
328
328
as .NoError (err )
329
329
330
330
assertStats (t , as , statz , map [stats.Type ]int {
@@ -338,7 +338,7 @@ func TestIncludesAndExcludes(t *testing.T) {
338
338
cfg .Excludes = []string {"*.nix" , "*.hs" }
339
339
340
340
test .WriteConfig (t , configPath , cfg )
341
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
341
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
342
342
as .NoError (err )
343
343
344
344
assertStats (t , as , statz , map [stats.Type ]int {
@@ -354,7 +354,7 @@ func TestIncludesAndExcludes(t *testing.T) {
354
354
echo .Excludes = []string {"*.py" }
355
355
356
356
test .WriteConfig (t , configPath , cfg )
357
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
357
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
358
358
as .NoError (err )
359
359
360
360
assertStats (t , as , statz , map [stats.Type ]int {
@@ -368,7 +368,7 @@ func TestIncludesAndExcludes(t *testing.T) {
368
368
t .Setenv ("TREEFMT_FORMATTER_ECHO_EXCLUDES" , "*.py,*.go" )
369
369
370
370
test .WriteConfig (t , configPath , cfg )
371
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
371
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
372
372
as .NoError (err )
373
373
374
374
assertStats (t , as , statz , map [stats.Type ]int {
@@ -384,7 +384,7 @@ func TestIncludesAndExcludes(t *testing.T) {
384
384
echo .Includes = []string {"*.elm" }
385
385
386
386
test .WriteConfig (t , configPath , cfg )
387
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
387
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
388
388
as .NoError (err )
389
389
390
390
assertStats (t , as , statz , map [stats.Type ]int {
@@ -398,7 +398,7 @@ func TestIncludesAndExcludes(t *testing.T) {
398
398
t .Setenv ("TREEFMT_FORMATTER_ECHO_INCLUDES" , "*.elm,*.js" )
399
399
400
400
test .WriteConfig (t , configPath , cfg )
401
- _ , statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
401
+ statz , err = treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
402
402
as .NoError (err )
403
403
404
404
assertStats (t , as , statz , map [stats.Type ]int {
@@ -1467,24 +1467,14 @@ func TestPathsArg(t *testing.T) {
1467
1467
as .Errorf (err , "path %s not found within the tree root" , relativeExternalPath )
1468
1468
}),
1469
1469
)
1470
-
1471
- _ , _ , err = treefmt (t , "-c" , relativeExternalPath )
1472
- as .Errorf (err , "path %s not found within the tree root" , relativeExternalPath )
1473
1470
}
1474
1471
1475
1472
func TestStdin (t * testing.T ) {
1476
1473
as := require .New (t )
1477
-
1478
- // capture current cwd, so we can replace it after the test is finished
1479
- cwd , err := os .Getwd ()
1480
- as .NoError (err )
1481
- t .Cleanup (func () {
1482
- // return to the previous working directory
1483
- as .NoError (os .Chdir (cwd ))
1484
- })
1485
-
1486
1474
tempDir := test .TempExamples (t )
1487
1475
1476
+ test .ChangeWorkDir (t , tempDir )
1477
+
1488
1478
// capture current stdin and replace it on test cleanup
1489
1479
prevStdIn := os .Stdin
1490
1480
@@ -1496,34 +1486,52 @@ func TestStdin(t *testing.T) {
1496
1486
contents := `{ foo, ... }: "hello"`
1497
1487
os .Stdin = test .TempFile (t , "" , "stdin" , & contents )
1498
1488
1489
+ // for convenience so we don't have to specify it in the args
1490
+ t .Setenv ("TREEFMT_ALLOW_MISSING_FORMATTER" , "true" )
1491
+
1499
1492
// we get an error about the missing filename parameter.
1500
- out , _ , err := treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" )
1501
- as .EqualError (err , "exactly one path should be specified when using the --stdin flag" )
1502
- as .Equal ("Error: exactly one path should be specified when using the --stdin flag\n " , string (out ))
1493
+ treefmt2 (t ,
1494
+ withArgs ("--stdin" ),
1495
+ withError (func (err error ) {
1496
+ as .EqualError (err , "exactly one path should be specified when using the --stdin flag" )
1497
+ }),
1498
+ withOutput (func (out []byte ) {
1499
+ as .Equal ("Error: exactly one path should be specified when using the --stdin flag\n " , string (out ))
1500
+ }),
1501
+ )
1503
1502
1504
1503
// now pass along the filename parameter
1505
1504
os .Stdin = test .TempFile (t , "" , "stdin" , & contents )
1506
1505
1507
- out , statz , err := treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" , "test.nix" )
1508
- as .NoError (err )
1509
-
1510
- assertStats (t , as , statz , map [stats.Type ]int {
1511
- stats .Traversed : 1 ,
1512
- stats .Matched : 1 ,
1513
- stats .Formatted : 1 ,
1514
- stats .Changed : 1 ,
1515
- })
1506
+ treefmt2 (t ,
1507
+ withArgs ("--stdin" , "test.nix" ),
1508
+ withNoError (t ),
1509
+ withStats (t , map [stats.Type ]int {
1510
+ stats .Traversed : 1 ,
1511
+ stats .Matched : 1 ,
1512
+ stats .Formatted : 1 ,
1513
+ stats .Changed : 1 ,
1514
+ }),
1515
+ withOutput (func (out []byte ) {
1516
+ as .Equal (`{ ...}: "hello"
1517
+ ` , string (out ))
1518
+ }),
1519
+ )
1516
1520
1517
1521
// the nix formatters should have reduced the example to the following
1518
- as .Equal (`{ ...}: "hello"
1519
- ` , string (out ))
1520
1522
1521
1523
// try a file that's outside of the project root
1522
1524
os .Stdin = test .TempFile (t , "" , "stdin" , & contents )
1523
1525
1524
- out , _ , err = treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" , "../test.nix" )
1525
- as .Errorf (err , "path ../test.nix not inside the tree root %s" , tempDir )
1526
- as .Contains (string (out ), "Error: path ../test.nix not inside the tree root" )
1526
+ treefmt2 (t ,
1527
+ withArgs ("--stdin" , "../test.nix" ),
1528
+ withError (func (err error ) {
1529
+ as .Errorf (err , "path ../test.nix not inside the tree root %s" , tempDir )
1530
+ }),
1531
+ withOutput (func (out []byte ) {
1532
+ as .Contains (string (out ), "Error: path ../test.nix not inside the tree root" )
1533
+ }),
1534
+ )
1527
1535
1528
1536
// try some markdown instead
1529
1537
contents = `
@@ -1534,21 +1542,23 @@ func TestStdin(t *testing.T) {
1534
1542
`
1535
1543
os .Stdin = test .TempFile (t , "" , "stdin" , & contents )
1536
1544
1537
- out , statz , err = treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--stdin" , "test.md" )
1538
- as . NoError ( err )
1539
-
1540
- assertStats ( t , as , statz , map [stats.Type ]int {
1541
- stats .Traversed : 1 ,
1542
- stats .Matched : 1 ,
1543
- stats .Formatted : 1 ,
1544
- stats .Changed : 1 ,
1545
- })
1546
-
1547
- as .Equal (`| col1 | col2 |
1545
+ treefmt2 (t ,
1546
+ withArgs ( "--stdin" , "test.md" ),
1547
+ withNoError ( t ),
1548
+ withStats ( t , map [stats.Type ]int {
1549
+ stats .Traversed : 1 ,
1550
+ stats .Matched : 1 ,
1551
+ stats .Formatted : 1 ,
1552
+ stats .Changed : 1 ,
1553
+ }),
1554
+ withOutput ( func ( out [] byte ) {
1555
+ as .Equal (`| col1 | col2 |
1548
1556
| ------ | --------- |
1549
1557
| nice | fits |
1550
1558
| oh no! | it's ugly |
1551
1559
` , string (out ))
1560
+ }),
1561
+ )
1552
1562
}
1553
1563
1554
1564
func TestDeterministicOrderingInPipeline (t * testing.T ) {
@@ -1590,7 +1600,7 @@ func TestDeterministicOrderingInPipeline(t *testing.T) {
1590
1600
},
1591
1601
})
1592
1602
1593
- _ , _ , err = treefmt (t , "-C" , tempDir )
1603
+ _ , err = treefmt (t , "-C" , tempDir )
1594
1604
as .NoError (err )
1595
1605
1596
1606
matcher := regexp .MustCompile ("^fmt-(.*)" )
@@ -1679,7 +1689,7 @@ func TestRunInSubdir(t *testing.T) {
1679
1689
test .WriteConfig (t , configPath , cfg )
1680
1690
1681
1691
// without any path args, should reformat the whole tree
1682
- _ , statz , err := treefmt (t )
1692
+ statz , err := treefmt (t )
1683
1693
as .NoError (err )
1684
1694
1685
1695
assertStats (t , as , statz , map [stats.Type ]int {
@@ -1691,11 +1701,11 @@ func TestRunInSubdir(t *testing.T) {
1691
1701
1692
1702
// specify some explicit paths, relative to the tree root
1693
1703
// this should not work, as we're in a subdirectory
1694
- _ , _ , err = treefmt (t , "-c" , "elm/elm.json" , "haskell/Nested/Foo.hs" )
1704
+ _ , err = treefmt (t , "-c" , "elm/elm.json" , "haskell/Nested/Foo.hs" )
1695
1705
as .ErrorContains (err , "path elm/elm.json not found" )
1696
1706
1697
1707
// specify some explicit paths, relative to the current directory
1698
- _ , statz , err = treefmt (t , "-c" , "elm.json" , "../haskell/Nested/Foo.hs" )
1708
+ statz , err = treefmt (t , "-c" , "elm.json" , "../haskell/Nested/Foo.hs" )
1699
1709
as .NoError (err )
1700
1710
1701
1711
assertStats (t , as , statz , map [stats.Type ]int {
@@ -1708,7 +1718,7 @@ func TestRunInSubdir(t *testing.T) {
1708
1718
}
1709
1719
}
1710
1720
1711
- func treefmt (t * testing.T , args ... string ) ([] byte , * stats.Stats , error ) {
1721
+ func treefmt (t * testing.T , args ... string ) (* stats.Stats , error ) {
1712
1722
t .Helper ()
1713
1723
1714
1724
t .Logf ("treefmt %s" , strings .Join (args , " " ))
@@ -1760,7 +1770,7 @@ func treefmt(t *testing.T, args ...string) ([]byte, *stats.Stats, error) {
1760
1770
1761
1771
t .Log (string (out ))
1762
1772
1763
- return out , statz , cmdErr
1773
+ return statz , cmdErr
1764
1774
}
1765
1775
1766
1776
func assertStats (
0 commit comments