Skip to content

Commit db7b305

Browse files
committed
fix: unmatched reporting global excludes
Improved the test which should have caught this regression and fixed the logic in composite formatter. Closes #468 Signed-off-by: Brian McGee <[email protected]>
1 parent 10a4616 commit db7b305

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed

cmd/root_test.go

+19-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package cmd_test
22

33
import (
44
"bufio"
5+
"bytes"
56
"fmt"
67
"io"
78
"os"
@@ -32,12 +33,13 @@ func TestOnUnmatched(t *testing.T) {
3233

3334
test.ChangeWorkDir(t, tempDir)
3435

35-
paths := []string{
36+
expectedPaths := []string{
3637
"go/go.mod",
3738
"haskell/haskell.cabal",
39+
"haskell-frontend/haskell-frontend.cabal",
3840
"html/scripts/.gitkeep",
3941
"python/requirements.txt",
40-
// these should not be reported as they're in the global excludes
42+
// these should not be reported, they are in the global excludes
4143
// - "nixpkgs.toml"
4244
// - "touch.toml"
4345
// - "treefmt.toml"
@@ -51,10 +53,22 @@ func TestOnUnmatched(t *testing.T) {
5153
checkOutput := func(level log.Level) func([]byte) {
5254
logPrefix := strings.ToUpper(level.String())[:4]
5355

56+
regex := regexp.MustCompile(fmt.Sprintf(`^%s no formatter for path: (.*)$`, logPrefix))
57+
5458
return func(out []byte) {
55-
for _, p := range paths {
56-
as.Contains(string(out), fmt.Sprintf("%s no formatter for path: %s", logPrefix, p))
59+
var paths []string
60+
61+
scanner := bufio.NewScanner(bytes.NewReader(out))
62+
for scanner.Scan() {
63+
matches := regex.FindStringSubmatch(scanner.Text())
64+
if len(matches) != 2 {
65+
continue
66+
}
67+
68+
paths = append(paths, matches[1])
5769
}
70+
71+
as.Equal(expectedPaths, paths)
5872
}
5973
}
6074

@@ -66,7 +80,7 @@ func TestOnUnmatched(t *testing.T) {
6680
// should exit with error when using fatal
6781
t.Run("fatal", func(t *testing.T) {
6882
errorFn := func(err error) {
69-
as.ErrorContains(err, fmt.Sprintf("no formatter for path: %s", paths[0]))
83+
as.ErrorContains(err, fmt.Sprintf("no formatter for path: %s", expectedPaths[0]))
7084
}
7185

7286
treefmt(t, withArgs("--on-unmatched", "fatal"), withError(errorFn))

format/composite.go

+10-4
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ type CompositeFormatter struct {
3636
}
3737

3838
// match filters the file against global excludes and returns a list of formatters that want to process the file.
39-
func (c *CompositeFormatter) match(file *walk.File) []*Formatter {
39+
func (c *CompositeFormatter) match(file *walk.File) (bool, []*Formatter) {
4040
// first check if this file has been globally excluded
4141
if pathMatches(file.RelPath, c.globalExcludes) {
4242
log.Debugf("path matched global excludes: %s", file.RelPath)
4343

44-
return nil
44+
return true, nil
4545
}
4646

4747
// a list of formatters that match this file
@@ -54,15 +54,21 @@ func (c *CompositeFormatter) match(file *walk.File) []*Formatter {
5454
}
5555
}
5656

57-
return matches
57+
return false, matches
5858
}
5959

6060
// Apply applies the configured formatters to the given files.
6161
func (c *CompositeFormatter) Apply(ctx context.Context, files []*walk.File) error {
6262
var toRelease []*walk.File
6363

6464
for _, file := range files {
65-
matches := c.match(file) // match the file against the formatters
65+
// match the file against the formatters
66+
globalExclude, matches := c.match(file)
67+
68+
// if the file is globally excluded, we do not emit a warning
69+
if globalExclude {
70+
continue
71+
}
6672

6773
// check if there were no matches
6874
if len(matches) == 0 {

nix/packages/docs.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
{ pkgs, perSystem, ... }:
1+
{
2+
pkgs,
3+
perSystem,
4+
...
5+
}:
26
pkgs.stdenvNoCC.mkDerivation {
37
name = "docs";
48

0 commit comments

Comments
 (0)