summaryrefslogtreecommitdiffstats
path: root/utils/file_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/file_test.go')
-rw-r--r--utils/file_test.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/file_test.go b/utils/file_test.go
index c9a50472d..0ad02de7e 100644
--- a/utils/file_test.go
+++ b/utils/file_test.go
@@ -125,6 +125,32 @@ func (s *FileTestSuite) TestRemoveFile() {
s.Nil(RemoveDirectory("tests2"))
}
+func (s *FileTestSuite) TestListDirectory() {
+ b := []byte("test")
+ path1 := "19700101/" + model.NewId()
+ path2 := "19800101/" + model.NewId()
+
+ s.Nil(WriteFile(b, path1))
+ defer RemoveFile(path1)
+ s.Nil(WriteFile(b, path2))
+ defer RemoveFile(path2)
+
+ paths, err := ListDirectory("")
+ s.Nil(err)
+
+ found1 := false
+ found2 := false
+ for _, path := range *paths {
+ if path == "19700101" {
+ found1 = true
+ } else if path == "19800101" {
+ found2 = true
+ }
+ }
+ s.True(found1)
+ s.True(found2)
+}
+
func (s *FileTestSuite) TestRemoveDirectory() {
b := []byte("test")