@@ -2,6 +2,7 @@ package cmd_test
2
2
3
3
import (
4
4
"bufio"
5
+ "bytes"
5
6
"fmt"
6
7
"io"
7
8
"os"
@@ -32,12 +33,13 @@ func TestOnUnmatched(t *testing.T) {
32
33
33
34
test .ChangeWorkDir (t , tempDir )
34
35
35
- paths := []string {
36
+ expectedPaths := []string {
36
37
"go/go.mod" ,
37
38
"haskell/haskell.cabal" ,
39
+ "haskell-frontend/haskell-frontend.cabal" ,
38
40
"html/scripts/.gitkeep" ,
39
41
"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
41
43
// - "nixpkgs.toml"
42
44
// - "touch.toml"
43
45
// - "treefmt.toml"
@@ -51,10 +53,22 @@ func TestOnUnmatched(t *testing.T) {
51
53
checkOutput := func (level log.Level ) func ([]byte ) {
52
54
logPrefix := strings .ToUpper (level .String ())[:4 ]
53
55
56
+ regex := regexp .MustCompile (fmt .Sprintf (`^%s no formatter for path: (.*)$` , logPrefix ))
57
+
54
58
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 ])
57
69
}
70
+
71
+ as .Equal (expectedPaths , paths )
58
72
}
59
73
}
60
74
@@ -66,7 +80,7 @@ func TestOnUnmatched(t *testing.T) {
66
80
// should exit with error when using fatal
67
81
t .Run ("fatal" , func (t * testing.T ) {
68
82
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 ]))
70
84
}
71
85
72
86
treefmt (t , withArgs ("--on-unmatched" , "fatal" ), withError (errorFn ))
0 commit comments