aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
authorMohammed Al Sahaf <[email protected]>2024-06-05 17:57:15 +0300
committerGitHub <[email protected]>2024-06-05 08:57:15 -0600
commit243351b2b19d39790311320c4ba7e1ac1692bbe8 (patch)
treefef1a66b21f079c7aaa3a60fd36c022510eb1522 /cmd
parent198f4385d2f72ccdd853825270f601bea7a7a190 (diff)
downloadcaddy-243351b2b19d39790311320c4ba7e1ac1692bbe8.tar.gz
caddy-243351b2b19d39790311320c4ba7e1ac1692bbe8.zip
cmd: remove zealous check of Caddyfile auto-detection (#6370)
* cmd: remove zealous check of Caddyfile auto-detection * add test case * remove redundant check, add comment * one more case
Diffstat (limited to 'cmd')
-rw-r--r--cmd/main.go18
-rw-r--r--cmd/main_test.go27
2 files changed, 31 insertions, 14 deletions
diff --git a/cmd/main.go b/cmd/main.go
index 6d164d184..3c3ae6270 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -119,7 +119,6 @@ func isCaddyfile(configFile, adapterName string) (bool, error) {
baseConfig := strings.ToLower(filepath.Base(configFile))
baseConfigExt := filepath.Ext(baseConfig)
startsOrEndsInCaddyfile := strings.HasPrefix(baseConfig, "caddyfile") || strings.HasSuffix(baseConfig, ".caddyfile")
- extNotCaddyfileOrJSON := (baseConfigExt != "" && baseConfigExt != ".caddyfile" && baseConfigExt != ".json")
if baseConfigExt == ".json" {
return false, nil
@@ -130,18 +129,15 @@ func isCaddyfile(configFile, adapterName string) (bool, error) {
// the config file has an extension,
// and isn't a JSON file (e.g. Caddyfile.yaml),
// then we don't know what the config format is.
- if adapterName == "" && startsOrEndsInCaddyfile && extNotCaddyfileOrJSON {
- return false, fmt.Errorf("ambiguous config file format; please specify adapter (use --adapter)")
- }
-
- // If the config file starts or ends with "caddyfile",
- // the extension of the config file is not ".json", AND
- // the user did not specify an adapter, then we assume it's Caddyfile.
- if startsOrEndsInCaddyfile &&
- baseConfigExt != ".json" &&
- adapterName == "" {
+ if adapterName == "" && startsOrEndsInCaddyfile {
return true, nil
}
+
+ // adapter is not empty,
+ // adapter is not "caddyfile",
+ // extension is not ".json",
+ // extension is not ".caddyfile"
+ // file does not start with "Caddyfile"
return false, nil
}
diff --git a/cmd/main_test.go b/cmd/main_test.go
index 9816b61e9..757a58ce6 100644
--- a/cmd/main_test.go
+++ b/cmd/main_test.go
@@ -226,15 +226,16 @@ func Test_isCaddyfile(t *testing.T) {
wantErr: false,
},
{
- name: "config is Caddyfile.yaml without adapter",
+ name: "config is Caddyfile.yaml with adapter",
args: args{
configFile: "./Caddyfile.yaml",
- adapterName: "",
+ adapterName: "yaml",
},
want: false,
- wantErr: true,
+ wantErr: false,
},
{
+
name: "json is not caddyfile but not error",
args: args{
configFile: "./Caddyfile.json",
@@ -243,6 +244,26 @@ func Test_isCaddyfile(t *testing.T) {
want: false,
wantErr: false,
},
+ {
+
+ name: "prefix of Caddyfile and ./ with any extension is Caddyfile",
+ args: args{
+ configFile: "./Caddyfile.prd",
+ adapterName: "",
+ },
+ want: true,
+ wantErr: false,
+ },
+ {
+
+ name: "prefix of Caddyfile without ./ with any extension is Caddyfile",
+ args: args{
+ configFile: "Caddyfile.prd",
+ adapterName: "",
+ },
+ want: true,
+ wantErr: false,
+ },
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {