summaryrefslogtreecommitdiffstats
path: root/modules/setting/path_test.go
blob: 4508bae50fc3ac10718296e5f27ef21f9a7ccf8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package setting

import (
	"os"
	"path/filepath"
	"testing"

	"github.com/stretchr/testify/assert"
)

type envVars map[string]string

func (e envVars) Getenv(key string) string {
	return e[key]
}

func TestInitWorkPathAndCommonConfig(t *testing.T) {
	testInit := func(defaultWorkPath, defaultCustomPath, defaultCustomConf string) {
		AppWorkPathMismatch = false
		AppWorkPath = defaultWorkPath
		appWorkPathBuiltin = defaultWorkPath
		CustomPath = defaultCustomPath
		customPathBuiltin = defaultCustomPath
		CustomConf = defaultCustomConf
		customConfBuiltin = defaultCustomConf
	}

	fp := filepath.Join

	tmpDir := t.TempDir()
	dirFoo := fp(tmpDir, "foo")
	dirBar := fp(tmpDir, "bar")
	dirXxx := fp(tmpDir, "xxx")
	dirYyy := fp(tmpDir, "yyy")

	t.Run("Default", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirFoo, "custom"), CustomPath)
		assert.Equal(t, fp(dirFoo, "custom/conf/app.ini"), CustomConf)
	})

	t.Run("WorkDir(env)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"GITEA_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirBar, AppWorkPath)
		assert.Equal(t, fp(dirBar, "custom"), CustomPath)
		assert.Equal(t, fp(dirBar, "custom/conf/app.ini"), CustomConf)
	})

	t.Run("WorkDir(env,arg)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"GITEA_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{WorkPath: dirXxx})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, fp(dirXxx, "custom/conf/app.ini"), CustomConf)
	})

	t.Run("WorkDir(env)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirBar, AppWorkPath)
		assert.Equal(t, fp(dirBar, "custom"), CustomPath)
		assert.Equal(t, fp(dirBar, "custom/conf/app.ini"), CustomConf)
	})

	t.Run("WorkDir(env,arg)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{WorkPath: dirXxx})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, fp(dirXxx, "custom/conf/app.ini"), CustomConf)
	})

	t.Run("CustomPath(env)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"GITEA_CUSTOM": fp(dirBar, "custom1")}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirBar, "custom1"), CustomPath)
		assert.Equal(t, fp(dirBar, "custom1/conf/app.ini"), CustomConf)
	})

	t.Run("CustomPath(env,arg)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"GITEA_CUSTOM": fp(dirBar, "custom1")}.Getenv, ArgWorkPathAndCustomConf{CustomPath: "custom2"})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirFoo, "custom2"), CustomPath)
		assert.Equal(t, fp(dirFoo, "custom2/conf/app.ini"), CustomConf)
	})

	t.Run("CustomPath(env)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_CUSTOM": fp(dirBar, "custom1")}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirBar, "custom1"), CustomPath)
		assert.Equal(t, fp(dirBar, "custom1/conf/app.ini"), CustomConf)
	})

	t.Run("CustomPath(env,arg)", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_CUSTOM": fp(dirBar, "custom1")}.Getenv, ArgWorkPathAndCustomConf{CustomPath: "custom2"})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirFoo, "custom2"), CustomPath)
		assert.Equal(t, fp(dirFoo, "custom2/conf/app.ini"), CustomConf)
	})

	t.Run("CustomConf", func(t *testing.T) {
		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: "app1.ini"})
		assert.Equal(t, dirFoo, AppWorkPath)
		cwd, _ := os.Getwd()
		assert.Equal(t, fp(cwd, "app1.ini"), CustomConf)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: fp(dirBar, "app1.ini")})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirBar, "app1.ini"), CustomConf)
	})

	t.Run("CustomConfOverrideWorkPath", func(t *testing.T) {
		iniWorkPath := fp(tmpDir, "app-workpath.ini")
		_ = os.WriteFile(iniWorkPath, []byte("WORK_PATH="+dirXxx), 0o644)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.False(t, AppWorkPathMismatch)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"GITEA_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.True(t, AppWorkPathMismatch)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{WorkPath: dirBar, CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.True(t, AppWorkPathMismatch)
	})

	t.Run("CustomConfOverrideWorkPath", func(t *testing.T) {
		iniWorkPath := fp(tmpDir, "app-workpath.ini")
		_ = os.WriteFile(iniWorkPath, []byte("WORK_PATH="+dirXxx), 0o644)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.False(t, AppWorkPathMismatch)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_WORK_DIR": dirBar}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.True(t, AppWorkPathMismatch)

		testInit(dirFoo, "", "")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{WorkPath: dirBar, CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
		assert.True(t, AppWorkPathMismatch)
	})

	t.Run("Builtin", func(t *testing.T) {
		testInit(dirFoo, dirBar, dirXxx)
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, dirBar, CustomPath)
		assert.Equal(t, dirXxx, CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirFoo, "custom1"), CustomPath)
		assert.Equal(t, fp(dirFoo, "custom1/cfg.ini"), CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{"GITEA_WORK_DIR": dirYyy}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirYyy, AppWorkPath)
		assert.Equal(t, fp(dirYyy, "custom1"), CustomPath)
		assert.Equal(t, fp(dirYyy, "custom1/cfg.ini"), CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{"GITEA_CUSTOM": dirYyy}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, dirYyy, CustomPath)
		assert.Equal(t, fp(dirYyy, "cfg.ini"), CustomConf)

		iniWorkPath := fp(tmpDir, "app-workpath.ini")
		_ = os.WriteFile(iniWorkPath, []byte("WORK_PATH="+dirXxx), 0o644)
		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom1"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
	})

	t.Run("Builtin", func(t *testing.T) {
		testInit(dirFoo, dirBar, dirXxx)
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, dirBar, CustomPath)
		assert.Equal(t, dirXxx, CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, fp(dirFoo, "custom1"), CustomPath)
		assert.Equal(t, fp(dirFoo, "custom1/cfg.ini"), CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_WORK_DIR": dirYyy}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirYyy, AppWorkPath)
		assert.Equal(t, fp(dirYyy, "custom1"), CustomPath)
		assert.Equal(t, fp(dirYyy, "custom1/cfg.ini"), CustomConf)

		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{"FORGEJO_CUSTOM": dirYyy}.Getenv, ArgWorkPathAndCustomConf{})
		assert.Equal(t, dirFoo, AppWorkPath)
		assert.Equal(t, dirYyy, CustomPath)
		assert.Equal(t, fp(dirYyy, "cfg.ini"), CustomConf)

		iniWorkPath := fp(tmpDir, "app-workpath.ini")
		_ = os.WriteFile(iniWorkPath, []byte("WORK_PATH="+dirXxx), 0o644)
		testInit(dirFoo, "custom1", "cfg.ini")
		InitWorkPathAndCommonConfig(envVars{}.Getenv, ArgWorkPathAndCustomConf{CustomConf: iniWorkPath})
		assert.Equal(t, dirXxx, AppWorkPath)
		assert.Equal(t, fp(dirXxx, "custom1"), CustomPath)
		assert.Equal(t, iniWorkPath, CustomConf)
	})
}