|
| 1 | +package cli |
| 2 | + |
| 3 | +import ( |
| 4 | + "os" |
| 5 | + "testing" |
| 6 | + |
| 7 | + "git.numtide.com/numtide/treefmt/internal/format" |
| 8 | + "github.com/BurntSushi/toml" |
| 9 | + "github.com/alecthomas/kong" |
| 10 | + "github.com/stretchr/testify/assert" |
| 11 | + "github.com/stretchr/testify/require" |
| 12 | +) |
| 13 | + |
| 14 | +func writeConfig(t *testing.T, path string, cfg format.Config) { |
| 15 | + t.Helper() |
| 16 | + f, err := os.Create(path) |
| 17 | + if err != nil { |
| 18 | + t.Fatalf("failed to create a new config file: %v", err) |
| 19 | + } |
| 20 | + encoder := toml.NewEncoder(f) |
| 21 | + if err = encoder.Encode(cfg); err != nil { |
| 22 | + t.Fatalf("failed to write to config file: %v", err) |
| 23 | + } |
| 24 | +} |
| 25 | + |
| 26 | +func newKong(t *testing.T, cli interface{}, options ...kong.Option) *kong.Kong { |
| 27 | + t.Helper() |
| 28 | + options = append([]kong.Option{ |
| 29 | + kong.Name("test"), |
| 30 | + kong.Exit(func(int) { |
| 31 | + t.Helper() |
| 32 | + t.Fatalf("unexpected exit()") |
| 33 | + }), |
| 34 | + }, options...) |
| 35 | + parser, err := kong.New(cli, options...) |
| 36 | + assert.NoError(t, err) |
| 37 | + return parser |
| 38 | +} |
| 39 | + |
| 40 | +func newCli(t *testing.T, args ...string) (*kong.Context, error) { |
| 41 | + t.Helper() |
| 42 | + p := newKong(t, &Cli) |
| 43 | + return p.Parse(args) |
| 44 | +} |
| 45 | + |
| 46 | +func TestAllowMissingFormatter(t *testing.T) { |
| 47 | + as := require.New(t) |
| 48 | + |
| 49 | + tempDir := t.TempDir() |
| 50 | + configPath := tempDir + "/treefmt.toml" |
| 51 | + |
| 52 | + writeConfig(t, configPath, format.Config{ |
| 53 | + Formatters: map[string]*format.Formatter{ |
| 54 | + "foo-fmt": { |
| 55 | + Command: "foo-fmt", |
| 56 | + }, |
| 57 | + }, |
| 58 | + }) |
| 59 | + |
| 60 | + ctx, err := newCli(t, "--config-file", configPath, "--tree-root", tempDir) |
| 61 | + as.NoError(err) |
| 62 | + as.Error(ctx.Run(), format.ErrFormatterNotFound) |
| 63 | + |
| 64 | + ctx, err = newCli(t, "--config-file", configPath, "--tree-root", tempDir, "--allow-missing-formatter") |
| 65 | + as.NoError(err) |
| 66 | + |
| 67 | + as.NoError(ctx.Run()) |
| 68 | +} |
0 commit comments