Skip to content

Commit 06e4145

Browse files
committed
feat: error out when a path matches multiple formatters
Signed-off-by: Brian McGee <[email protected]>
1 parent 4199706 commit 06e4145

File tree

2 files changed

+40
-5
lines changed

2 files changed

+40
-5
lines changed

cli/format.go

+9-5
Original file line numberDiff line numberDiff line change
@@ -372,20 +372,24 @@ func applyFormatters(ctx context.Context) func() error {
372372

373373
// iterate the files channel, checking if any pipeline wants it, and attempting to apply if so.
374374
for file := range filesCh {
375-
var matched bool
375+
var matches []string
376+
376377
for key, pipeline := range pipelines {
377378
if !pipeline.Wants(file) {
378379
continue
379380
}
380-
matched = true
381+
matches = append(matches, key)
381382
tryApply(key, file)
382383
}
383-
if matched {
384-
stats.Add(stats.Matched, 1)
385-
} else {
384+
switch len(matches) {
385+
case 0:
386386
log.Debugf("no match found: %s", file.Path)
387387
// no match, so we send it direct to the processed channel
388388
processedCh <- file
389+
case 1:
390+
stats.Add(stats.Matched, 1)
391+
default:
392+
return fmt.Errorf("path '%s' matched multiple formatters/pipelines %v", file.Path, matches)
389393
}
390394
}
391395

cli/format_test.go

+31
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,37 @@ func TestIncludesAndExcludes(t *testing.T) {
196196
assertStats(t, as, 31, 31, 2, 0)
197197
}
198198

199+
func TestMatchingMultiplePipelines(t *testing.T) {
200+
as := require.New(t)
201+
202+
tempDir := test.TempExamples(t)
203+
configPath := tempDir + "/multiple.toml"
204+
205+
cfg := config2.Config{
206+
Formatters: map[string]*config2.Formatter{
207+
"echo": {
208+
Command: "echo",
209+
Includes: []string{"*"},
210+
},
211+
"touch": {
212+
Command: "touch",
213+
Includes: []string{"*"},
214+
},
215+
},
216+
}
217+
218+
test.WriteConfig(t, configPath, cfg)
219+
_, err := cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir)
220+
as.ErrorContains(err, "matched multiple formatters/pipelines")
221+
as.ErrorContains(err, "echo")
222+
as.ErrorContains(err, "touch")
223+
224+
// run with only one formatter
225+
test.WriteConfig(t, configPath, cfg)
226+
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "-f", "echo")
227+
as.NoError(err)
228+
}
229+
199230
func TestCache(t *testing.T) {
200231
as := require.New(t)
201232

0 commit comments

Comments
 (0)