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
64cbdfea
Commit
64cbdfea
authored
Sep 09, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
StatFSTest.WriteSize
parent
e2910a4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
samples/statfs/statfs_test.go
samples/statfs/statfs_test.go
+24
-1
No files found.
samples/statfs/statfs_test.go
View file @
64cbdfea
...
@@ -17,6 +17,7 @@ package statfs_test
...
@@ -17,6 +17,7 @@ package statfs_test
import
(
import
(
"bytes"
"bytes"
"fmt"
"fmt"
"io/ioutil"
"os/exec"
"os/exec"
"path"
"path"
"path/filepath"
"path/filepath"
...
@@ -238,7 +239,29 @@ func (t *StatFSTest) CapacityAndFreeSpace() {
...
@@ -238,7 +239,29 @@ func (t *StatFSTest) CapacityAndFreeSpace() {
}
}
func
(
t
*
StatFSTest
)
WriteSize
()
{
func
(
t
*
StatFSTest
)
WriteSize
()
{
AssertTrue
(
false
,
"TODO"
)
var
err
error
// Set up a smallish block size.
canned
:=
fuseops
.
StatFSOp
{
BlockSize
:
8192
,
Blocks
:
1234
,
BlocksFree
:
1234
,
BlocksAvailable
:
1234
,
}
t
.
fs
.
SetStatFSResponse
(
canned
)
// Cause a large amount of date to be written.
err
=
ioutil
.
WriteFile
(
path
.
Join
(
t
.
Dir
,
"foo"
),
bytes
.
Repeat
([]
byte
{
'x'
},
1
<<
22
),
0400
)
AssertEq
(
nil
,
err
)
// Despite the small block size, the OS shouldn't have given us pitifully
// small chunks of data.
ExpectEq
(
1
<<
20
,
t
.
fs
.
MostRecentWriteSize
())
}
}
func
(
t
*
StatFSTest
)
UnsupportedBlockSizes
()
{
func
(
t
*
StatFSTest
)
UnsupportedBlockSizes
()
{
...
...
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