summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/fileserver/browselisting_test.go
diff options
context:
space:
mode:
authorJason Du <xdu@infoblox.com>2021-04-30 19:17:23 -0700
committerGitHub <noreply@github.com>2021-04-30 22:17:23 -0400
commit637fd8f67b7ff6191673ff13e94825a4ec896891 (patch)
treea50995058c76b6449dd6eb41013f75f9495bb969 /modules/caddyhttp/fileserver/browselisting_test.go
parent956f01163d150b70aa3d5fc418ba9f150bd25c24 (diff)
fileserver: Share template logic for both `templates` and `file_server browse` (#4093)
Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
Diffstat (limited to 'modules/caddyhttp/fileserver/browselisting_test.go')
-rw-r--r--modules/caddyhttp/fileserver/browselisting_test.go40
1 files changed, 0 insertions, 40 deletions
diff --git a/modules/caddyhttp/fileserver/browselisting_test.go b/modules/caddyhttp/fileserver/browselisting_test.go
deleted file mode 100644
index 6d58b7e..0000000
--- a/modules/caddyhttp/fileserver/browselisting_test.go
+++ /dev/null
@@ -1,40 +0,0 @@
-package fileserver
-
-import (
- "testing"
-)
-
-func TestBreadcrumbs(t *testing.T) {
- testdata := []struct {
- path string
- expected []crumb
- }{
- {"", []crumb{}},
- {"/", []crumb{{Text: "/"}}},
- {"foo/bar/baz", []crumb{
- {Link: "../../", Text: "foo"},
- {Link: "../", Text: "bar"},
- {Link: "", Text: "baz"},
- }},
- {"/qux/quux/corge/", []crumb{
- {Link: "../../../", Text: "/"},
- {Link: "../../", Text: "qux"},
- {Link: "../", Text: "quux"},
- {Link: "", Text: "corge"},
- }},
- }
-
- for _, d := range testdata {
- l := browseListing{Path: d.path}
- actual := l.Breadcrumbs()
- if len(actual) != len(d.expected) {
- t.Errorf("wrong size output, got %d elements but expected %d", len(actual), len(d.expected))
- continue
- }
- for i, c := range actual {
- if c != d.expected[i] {
- t.Errorf("got %#v but expected %#v at index %d", c, d.expected[i], i)
- }
- }
- }
-}