Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
93388be7
Commit
93388be7
authored
Jul 29, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PageCacheTest.SingleFileHandle_KeepCache
parent
745498b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
samples/cachingfs/caching_fs_test.go
samples/cachingfs/caching_fs_test.go
+26
-1
No files found.
samples/cachingfs/caching_fs_test.go
View file @
93388be7
...
...
@@ -585,7 +585,32 @@ func (t *PageCacheTest) SingleFileHandle_NoKeepCache() {
}
func
(
t
*
PageCacheTest
)
SingleFileHandle_KeepCache
()
{
AssertTrue
(
false
,
"TODO"
)
t
.
fs
.
SetKeepCache
(
true
)
// Open the file.
f
,
err
:=
os
.
Open
(
path
.
Join
(
t
.
Dir
,
"foo"
))
AssertEq
(
nil
,
err
)
defer
f
.
Close
()
// Read its contents once.
f
.
Seek
(
0
,
0
)
AssertEq
(
nil
,
err
)
c1
,
err
:=
ioutil
.
ReadAll
(
f
)
AssertEq
(
nil
,
err
)
AssertEq
(
cachingfs
.
FooSize
,
len
(
c1
))
// And again.
f
.
Seek
(
0
,
0
)
AssertEq
(
nil
,
err
)
c2
,
err
:=
ioutil
.
ReadAll
(
f
)
AssertEq
(
nil
,
err
)
AssertEq
(
cachingfs
.
FooSize
,
len
(
c2
))
// We should have seen the same contents each time.
ExpectTrue
(
bytes
.
Equal
(
c1
,
c2
))
}
func
(
t
*
PageCacheTest
)
TwoFileHandles_NoKeepCache
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment