-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_system_test.go
114 lines (97 loc) · 2.99 KB
/
file_system_test.go
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
package main
import (
"fmt"
"io/ioutil"
"os"
"os/user"
"path/filepath"
"github.com/pkg/errors"
. "gopkg.in/check.v1"
)
type FileSystemSuite struct {
BaseSuite
fileContents []byte
fileToWrite string
homeDirectory string
}
var currentUser, _ = user.Current()
var _ = Suite(&FileSystemSuite{
BaseSuite: BaseSuite{sharedErrorMessage: "shared file error"},
fileContents: []byte("test data"),
fileToWrite: "",
homeDirectory: currentUser.HomeDir,
})
func (s *FileSystemSuite) BrokenPathTidier(input ...string) (string, error) {
return "", errors.New(s.sharedErrorMessage)
}
func (s *FileSystemSuite) SetUpTest(c *C) {
s.fileToWrite = filepath.Join(s.workingDirectory, "test.file")
}
func (s *FileSystemSuite) TearDownTest(c *C) {
_ = os.Remove(s.fileToWrite)
pathTidier = tidyPath
}
func (s *FileSystemSuite) TestTidyPath(c *C) {
var tidyPathData = [][]string{
{"/", "/"},
{"/some/dir", "/some", "dir"},
{fmt.Sprintf("%s/%s", s.workingDirectory, "some/dir"), "some", "dir"},
{s.homeDirectory, "~"},
{filepath.Join(s.homeDirectory, "test"), "~/test"},
}
for _, value := range tidyPathData {
result, err := tidyPath(value[1:]...)
c.Assert(err, Not(ErrorMatches), "*")
c.Assert(result, Equals, value[0])
}
}
func (s *FileSystemSuite) TestEnsureDirectoryExistsWorksWithCwd(c *C) {
err := EnsureDirectoryExists(s.workingDirectory)
c.Assert(err, IsNil)
}
func (s *FileSystemSuite) TestEnsureDirectoryExistsCreatesDirectories(c *C) {
additionalPathComponents := []string{"some", "dir"}
fullPath := filepath.Join(
append(
[]string{s.workingDirectory},
additionalPathComponents...,
)...,
)
err := EnsureDirectoryExists(additionalPathComponents...)
c.Assert(err, IsNil)
_, err = os.Stat(fullPath)
c.Assert(os.IsNotExist(err), Equals, false)
}
func (s *FileSystemSuite) TestLoadFilePathError(c *C) {
pathTidier = s.BrokenPathTidier
_, err := LoadFile(s.workingDirectory)
c.Assert(err, ErrorMatches, s.sharedErrorMessage)
}
func (s *FileSystemSuite) TestLoadFileThatDoesntExist(c *C) {
_, err := LoadFile(filepath.Join(s.workingDirectory, "random", "file"))
c.Assert(os.IsNotExist(err), Equals, true)
}
func (s *FileSystemSuite) TestLoadFileNonEmpty(c *C) {
contents, err := LoadFile(s.currentFilename)
c.Assert(err, IsNil)
c.Assert(contents, Not(Equals), []byte{})
}
func (s *FileSystemSuite) TestWriteFilePathError(c *C) {
pathTidier = s.BrokenPathTidier
err := writeFile(s.fileContents, 0600, s.workingDirectory)
c.Assert(err, ErrorMatches, s.sharedErrorMessage)
}
func (s *FileSystemSuite) TestWriteFileSuccess(c *C) {
perm := os.FileMode(uint32(0640))
err := writeFile(s.fileContents, perm, s.fileToWrite)
c.Assert(err, IsNil)
contents, err := ioutil.ReadFile(s.fileToWrite)
c.Assert(err, IsNil)
c.Assert(contents, DeepEquals, s.fileContents)
stats, _ := os.Stat(s.fileToWrite)
c.Assert(stats.Mode().String(), Equals, perm.String())
}
func (s *FileSystemSuite) TestWriteDotFileSuccess(c *C) {
err := WriteDotFile(s.fileContents, s.fileToWrite)
c.Assert(err, IsNil)
}