aboutsummaryrefslogtreecommitdiffstats
path: root/utils/fs/test/fs_suite.go
diff options
context:
space:
mode:
authorSantiago M. Mola <santi@mola.io>2016-11-11 16:31:04 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-11-11 16:31:04 +0100
commit3e7f535beae601d334186f7316af957bc24bd865 (patch)
tree4f1fb5da0c743070b939bd1edfe31157009c915f /utils/fs/test/fs_suite.go
parentac095bb12c4d29722b60ba9f20590fa7cfa6bc7d (diff)
downloadgo-git-3e7f535beae601d334186f7316af957bc24bd865.tar.gz
utils/fs: add ReadAt to memory file and tests. (#122)
* memory files now implement io.ReaderAt. * tests now check ReadAt behaviour.
Diffstat (limited to 'utils/fs/test/fs_suite.go')
-rw-r--r--utils/fs/test/fs_suite.go34
1 files changed, 34 insertions, 0 deletions
diff --git a/utils/fs/test/fs_suite.go b/utils/fs/test/fs_suite.go
index 8c413bf..5aa99e6 100644
--- a/utils/fs/test/fs_suite.go
+++ b/utils/fs/test/fs_suite.go
@@ -379,3 +379,37 @@ func (s *FilesystemSuite) TestJoin(c *C) {
func (s *FilesystemSuite) TestBase(c *C) {
c.Assert(s.Fs.Base(), Not(Equals), "")
}
+
+func (s *FilesystemSuite) TestReadAtOnReadWrite(c *C) {
+ f, err := s.Fs.Create("foo")
+ c.Assert(err, IsNil)
+ _, err = f.Write([]byte("abcdefg"))
+ c.Assert(err, IsNil)
+ rf, ok := f.(io.ReaderAt)
+ c.Assert(ok, Equals, true)
+ b := make([]byte, 3)
+ n, err := rf.ReadAt(b, 2)
+ c.Assert(err, IsNil)
+ c.Assert(n, Equals, 3)
+ c.Assert(string(b), Equals, "cde")
+ c.Assert(f.Close(), IsNil)
+}
+
+func (s *FilesystemSuite) TestReadAtOnReadOnly(c *C) {
+ f, err := s.Fs.Create("foo")
+ c.Assert(err, IsNil)
+ _, err = f.Write([]byte("abcdefg"))
+ c.Assert(err, IsNil)
+ c.Assert(f.Close(), IsNil)
+
+ f, err = s.Fs.Open("foo")
+ c.Assert(err, IsNil)
+ rf, ok := f.(io.ReaderAt)
+ c.Assert(ok, Equals, true)
+ b := make([]byte, 3)
+ n, err := rf.ReadAt(b, 2)
+ c.Assert(err, IsNil)
+ c.Assert(n, Equals, 3)
+ c.Assert(string(b), Equals, "cde")
+ c.Assert(f.Close(), IsNil)
+}