Skip to content

Commit

Permalink
Implementation for preventing unused flags
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemassa committed Jan 28, 2024
1 parent f808898 commit 0f482a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
23 changes: 8 additions & 15 deletions cmd/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
"os"
"path/filepath"
"reflect"
"slices"
"strings"
"testing"

Expand Down Expand Up @@ -149,13 +148,6 @@ var testFlags = map[string]interface{}{
EnableDiffMarkdownFormat: false,
}

// Settings used by userConfig that do not have flags
var nonFlagSettings = []string{
"require-undiverged",
"silence-vcs-status-no-projects",
"webhooks",
}

func TestExecute_Defaults(t *testing.T) {
t.Log("Should set the defaults for all unspecified flags.")

Expand Down Expand Up @@ -228,15 +220,16 @@ func TestUserConfigAllTested(t *testing.T) {

userConfigKey := u.Field(i).Tag.Get("mapstructure")
t.Run(userConfigKey, func(t *testing.T) {
_, ok := testFlags[userConfigKey]
if ok {
return
}
if slices.Contains(nonFlagSettings, userConfigKey) {
// By default, we expect all fields in UserConfig to have flags defined in server.go and tested here in server_test.go
// Some fields are too complicated to have flags, so are only expressible in the yaml
flagKey := u.Field(i).Tag.Get("flag")
if flagKey == "false" {
return
}
if !ok {
t.Errorf("server.UserConfig has field with mapstructure %s that is either not tested. Either add it to server_test.testFlags, or remove it from server.UserConfig", userConfigKey)
// If a setting is configured in server.UserConfig, it should be tested here. If there is no corresponding const
// for specifying the flag, that probably means one *also* needs to be added to server.go
if _, ok := testFlags[userConfigKey]; !ok {
t.Errorf("server.UserConfig has field with mapstructure %s that is either not tested or not configured as a flag. Either add it to server_test.testFlags, or remove it from server.UserConfig", userConfigKey)
}
})

Expand Down
2 changes: 1 addition & 1 deletion server/user_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type UserConfig struct {
VarFileAllowlist string `mapstructure:"var-file-allowlist"`
VCSStatusName string `mapstructure:"vcs-status-name"`
DefaultTFVersion string `mapstructure:"default-tf-version"`
Webhooks []WebhookConfig `mapstructure:"webhooks"`
Webhooks []WebhookConfig `mapstructure:"webhooks" flag:"false"`
WebBasicAuth bool `mapstructure:"web-basic-auth"`
WebUsername string `mapstructure:"web-username"`
WebPassword string `mapstructure:"web-password"`
Expand Down

0 comments on commit 0f482a1

Please sign in to comment.