Skip to content

Commit a3ca782

Browse files
brianmcgeeBrian McGee
authored and
Brian McGee
committed
feat: support changing work directory (#15)
Closes #10 Signed-off-by: Brian McGee <[email protected]> Reviewed-on: https://git.numtide.com/numtide/treefmt/pulls/15 Reviewed-by: Jonas Chevalier <[email protected]> Co-authored-by: Brian McGee <[email protected]> Co-committed-by: Brian McGee <[email protected]>
1 parent 84629f7 commit a3ca782

File tree

2 files changed

+43
-7
lines changed

2 files changed

+43
-7
lines changed

internal/cli/cli.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
package cli
22

33
import (
4+
"github.com/alecthomas/kong"
45
"github.com/charmbracelet/log"
56
)
67

78
var Cli = Options{}
89

910
type Options struct {
10-
AllowMissingFormatter bool `default:"false" help:"Do not exit with error if a configured formatter is missing"`
11-
ClearCache bool `short:"c" help:"Reset the evaluation cache. Use in case the cache is not precise enough"`
12-
ConfigFile string `type:"existingfile" default:"./treefmt.toml"`
13-
FailOnChange bool `help:"Exit with error if any changes were made. Useful for CI"`
14-
Formatters []string `help:"Specify formatters to apply. Defaults to all formatters"`
15-
TreeRoot string `type:"existingdir" default:"."`
16-
Verbosity int `name:"verbose" short:"v" type:"counter" default:"0" env:"LOG_LEVEL" help:"Set the verbosity of logs e.g. -vv"`
11+
AllowMissingFormatter bool `default:"false" help:"Do not exit with error if a configured formatter is missing"`
12+
WorkingDirectory kong.ChangeDirFlag `default:"." short:"C" help:"Run as if treefmt was started in the specified working directory instead of the current working directory"`
13+
ClearCache bool `short:"c" help:"Reset the evaluation cache. Use in case the cache is not precise enough"`
14+
ConfigFile string `type:"existingfile" default:"./treefmt.toml"`
15+
FailOnChange bool `help:"Exit with error if any changes were made. Useful for CI"`
16+
Formatters []string `help:"Specify formatters to apply. Defaults to all formatters"`
17+
TreeRoot string `type:"existingdir" default:"."`
18+
Verbosity int `name:"verbose" short:"v" type:"counter" default:"0" env:"LOG_LEVEL" help:"Set the verbosity of logs e.g. -vv"`
1719

1820
Format Format `cmd:"" default:"."`
1921
}

internal/cli/format_test.go

+34
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,40 @@ func TestCache(t *testing.T) {
179179
as.Contains(string(out), "0 files changed")
180180
}
181181

182+
func TestChangeWorkingDirectory(t *testing.T) {
183+
as := require.New(t)
184+
185+
// capture current cwd, so we can replace it after the test is finished
186+
cwd, err := os.Getwd()
187+
as.NoError(err)
188+
189+
t.Cleanup(func() {
190+
// return to the previous working directory
191+
as.NoError(os.Chdir(cwd))
192+
})
193+
194+
tempDir := test.TempExamples(t)
195+
configPath := tempDir + "/treefmt.toml"
196+
197+
// test without any excludes
198+
config := format.Config{
199+
Formatters: map[string]*format.Formatter{
200+
"echo": {
201+
Command: "echo",
202+
Includes: []string{"*"},
203+
},
204+
},
205+
}
206+
207+
test.WriteConfig(t, configPath, config)
208+
209+
// by default, we look for ./treefmt.toml and use the cwd for the tree root
210+
// this should fail if the working directory hasn't been changed first
211+
out, err := cmd(t, "-C", tempDir)
212+
as.NoError(err)
213+
as.Contains(string(out), fmt.Sprintf("%d files changed", 29))
214+
}
215+
182216
func TestFailOnChange(t *testing.T) {
183217
as := require.New(t)
184218

0 commit comments

Comments
 (0)