blob: 5e8f5c1f8b7a58d9295a6d62bde84f587ad9b0fd (
plain) (
blame)
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
|
package os_test
import (
"io/ioutil"
stdos "os"
"path/filepath"
"testing"
. "gopkg.in/check.v1"
"gopkg.in/src-d/go-git.v4/utils/fs/os"
"gopkg.in/src-d/go-git.v4/utils/fs/test"
)
func Test(t *testing.T) { TestingT(t) }
type OSSuite struct {
test.FilesystemSuite
path string
}
var _ = Suite(&OSSuite{})
func (s *OSSuite) SetUpTest(c *C) {
s.path, _ = ioutil.TempDir(stdos.TempDir(), "go-git-os-fs-test")
s.FilesystemSuite.Fs = os.New(s.path)
}
func (s *OSSuite) TearDownTest(c *C) {
err := stdos.RemoveAll(s.path)
c.Assert(err, IsNil)
}
func (s *OSSuite) TestOpenDoesNotCreateDir(c *C) {
_, err := s.Fs.Open("dir/non-existent")
c.Assert(err, NotNil)
_, err = stdos.Stat(filepath.Join(s.path, "dir"))
c.Assert(stdos.IsNotExist(err), Equals, true)
}
|