Skip to content

Commit 9d53c96

Browse files
committed
feat: refine stdin test
Signed-off-by: Brian McGee <[email protected]>
1 parent bda4138 commit 9d53c96

File tree

1 file changed

+63
-53
lines changed

1 file changed

+63
-53
lines changed

cmd/root_test.go

+63-53
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func TestIncludesAndExcludes(t *testing.T) {
310310
}
311311

312312
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)
314314
as.NoError(err)
315315

316316
assertStats(t, as, statz, map[stats.Type]int{
@@ -324,7 +324,7 @@ func TestIncludesAndExcludes(t *testing.T) {
324324
cfg.Excludes = []string{"*.nix"}
325325

326326
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)
328328
as.NoError(err)
329329

330330
assertStats(t, as, statz, map[stats.Type]int{
@@ -338,7 +338,7 @@ func TestIncludesAndExcludes(t *testing.T) {
338338
cfg.Excludes = []string{"*.nix", "*.hs"}
339339

340340
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)
342342
as.NoError(err)
343343

344344
assertStats(t, as, statz, map[stats.Type]int{
@@ -354,7 +354,7 @@ func TestIncludesAndExcludes(t *testing.T) {
354354
echo.Excludes = []string{"*.py"}
355355

356356
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)
358358
as.NoError(err)
359359

360360
assertStats(t, as, statz, map[stats.Type]int{
@@ -368,7 +368,7 @@ func TestIncludesAndExcludes(t *testing.T) {
368368
t.Setenv("TREEFMT_FORMATTER_ECHO_EXCLUDES", "*.py,*.go")
369369

370370
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)
372372
as.NoError(err)
373373

374374
assertStats(t, as, statz, map[stats.Type]int{
@@ -384,7 +384,7 @@ func TestIncludesAndExcludes(t *testing.T) {
384384
echo.Includes = []string{"*.elm"}
385385

386386
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)
388388
as.NoError(err)
389389

390390
assertStats(t, as, statz, map[stats.Type]int{
@@ -398,7 +398,7 @@ func TestIncludesAndExcludes(t *testing.T) {
398398
t.Setenv("TREEFMT_FORMATTER_ECHO_INCLUDES", "*.elm,*.js")
399399

400400
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)
402402
as.NoError(err)
403403

404404
assertStats(t, as, statz, map[stats.Type]int{
@@ -1467,24 +1467,14 @@ func TestPathsArg(t *testing.T) {
14671467
as.Errorf(err, "path %s not found within the tree root", relativeExternalPath)
14681468
}),
14691469
)
1470-
1471-
_, _, err = treefmt(t, "-c", relativeExternalPath)
1472-
as.Errorf(err, "path %s not found within the tree root", relativeExternalPath)
14731470
}
14741471

14751472
func TestStdin(t *testing.T) {
14761473
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-
14861474
tempDir := test.TempExamples(t)
14871475

1476+
test.ChangeWorkDir(t, tempDir)
1477+
14881478
// capture current stdin and replace it on test cleanup
14891479
prevStdIn := os.Stdin
14901480

@@ -1496,34 +1486,52 @@ func TestStdin(t *testing.T) {
14961486
contents := `{ foo, ... }: "hello"`
14971487
os.Stdin = test.TempFile(t, "", "stdin", &contents)
14981488

1489+
// for convenience so we don't have to specify it in the args
1490+
t.Setenv("TREEFMT_ALLOW_MISSING_FORMATTER", "true")
1491+
14991492
// 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+
)
15031502

15041503
// now pass along the filename parameter
15051504
os.Stdin = test.TempFile(t, "", "stdin", &contents)
15061505

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+
)
15161520

15171521
// the nix formatters should have reduced the example to the following
1518-
as.Equal(`{ ...}: "hello"
1519-
`, string(out))
15201522

15211523
// try a file that's outside of the project root
15221524
os.Stdin = test.TempFile(t, "", "stdin", &contents)
15231525

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+
)
15271535

15281536
// try some markdown instead
15291537
contents = `
@@ -1534,21 +1542,23 @@ func TestStdin(t *testing.T) {
15341542
`
15351543
os.Stdin = test.TempFile(t, "", "stdin", &contents)
15361544

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 |
15481556
| ------ | --------- |
15491557
| nice | fits |
15501558
| oh no! | it's ugly |
15511559
`, string(out))
1560+
}),
1561+
)
15521562
}
15531563

15541564
func TestDeterministicOrderingInPipeline(t *testing.T) {
@@ -1590,7 +1600,7 @@ func TestDeterministicOrderingInPipeline(t *testing.T) {
15901600
},
15911601
})
15921602

1593-
_, _, err = treefmt(t, "-C", tempDir)
1603+
_, err = treefmt(t, "-C", tempDir)
15941604
as.NoError(err)
15951605

15961606
matcher := regexp.MustCompile("^fmt-(.*)")
@@ -1679,7 +1689,7 @@ func TestRunInSubdir(t *testing.T) {
16791689
test.WriteConfig(t, configPath, cfg)
16801690

16811691
// without any path args, should reformat the whole tree
1682-
_, statz, err := treefmt(t)
1692+
statz, err := treefmt(t)
16831693
as.NoError(err)
16841694

16851695
assertStats(t, as, statz, map[stats.Type]int{
@@ -1691,11 +1701,11 @@ func TestRunInSubdir(t *testing.T) {
16911701

16921702
// specify some explicit paths, relative to the tree root
16931703
// 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")
16951705
as.ErrorContains(err, "path elm/elm.json not found")
16961706

16971707
// 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")
16991709
as.NoError(err)
17001710

17011711
assertStats(t, as, statz, map[stats.Type]int{
@@ -1708,7 +1718,7 @@ func TestRunInSubdir(t *testing.T) {
17081718
}
17091719
}
17101720

1711-
func treefmt(t *testing.T, args ...string) ([]byte, *stats.Stats, error) {
1721+
func treefmt(t *testing.T, args ...string) (*stats.Stats, error) {
17121722
t.Helper()
17131723

17141724
t.Logf("treefmt %s", strings.Join(args, " "))
@@ -1760,7 +1770,7 @@ func treefmt(t *testing.T, args ...string) ([]byte, *stats.Stats, error) {
17601770

17611771
t.Log(string(out))
17621772

1763-
return out, statz, cmdErr
1773+
return statz, cmdErr
17641774
}
17651775

17661776
func assertStats(

0 commit comments

Comments
 (0)