Skip to content

Commit facce22

Browse files
committed
fix(pgs): handle empty filepaths in calc_route
1 parent 6530b86 commit facce22

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

pgs/calc_route.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,11 @@ func genRedirectRoute(actual string, fromStr string, to string) string {
186186

187187
func calcRoutes(projectName, fp string, userRedirects []*RedirectRule) []*HttpReply {
188188
rts := []*HttpReply{}
189+
if fp == "" {
190+
fp = "/"
191+
}
189192
// add route as-is without expansion
190-
if fp != "" && !strings.HasSuffix(fp, "/") {
193+
if !strings.HasSuffix(fp, "/") {
191194
defRoute := shared.GetAssetFileName(&utils.FileEntry{
192195
Filepath: filepath.Join(projectName, fp),
193196
})

pgs/calc_route_test.go

+36
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,42 @@ func TestCalcRoutes(t *testing.T) {
212212
{Filepath: "test/404.html", Status: 404},
213213
},
214214
},
215+
{
216+
Name: "redirect-root-full-url",
217+
Actual: calcRoutes(
218+
"test",
219+
"/",
220+
[]*RedirectRule{
221+
{
222+
From: "/*",
223+
To: "https://pico.sh",
224+
Status: 301,
225+
},
226+
},
227+
),
228+
Expected: []*HttpReply{
229+
{Filepath: "test/index.html", Status: 200},
230+
{Filepath: "https://pico.sh", Status: 301},
231+
},
232+
},
233+
{
234+
Name: "redirect-empty-route-full-url",
235+
Actual: calcRoutes(
236+
"test",
237+
"",
238+
[]*RedirectRule{
239+
{
240+
From: "/*",
241+
To: "https://pico.sh",
242+
Status: 301,
243+
},
244+
},
245+
),
246+
Expected: []*HttpReply{
247+
{Filepath: "test/index.html", Status: 200},
248+
{Filepath: "https://pico.sh", Status: 301},
249+
},
250+
},
215251
{
216252
Name: "redirect-full-url-directory",
217253
Actual: calcRoutes(

0 commit comments

Comments
 (0)