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
76b311bd
Commit
76b311bd
authored
Jun 25, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MemFSTest.RenameOverExistingFile
parent
542984f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
samples/memfs/memfs_test.go
samples/memfs/memfs_test.go
+33
-1
No files found.
samples/memfs/memfs_test.go
View file @
76b311bd
...
...
@@ -1553,13 +1553,45 @@ func (t *MemFSTest) RenameIntoFileSystem() {
}
func
(
t
*
MemFSTest
)
RenameOverExistingFile
()
{
AssertTrue
(
false
,
"TODO"
)
var
err
error
// Create two files.
oldPath
:=
path
.
Join
(
t
.
Dir
,
"foo"
)
err
=
ioutil
.
WriteFile
(
oldPath
,
[]
byte
(
"taco"
),
0400
)
AssertEq
(
nil
,
err
)
newPath
:=
path
.
Join
(
t
.
Dir
,
"bar"
)
err
=
ioutil
.
WriteFile
(
newPath
,
[]
byte
(
"burrito"
),
0600
)
AssertEq
(
nil
,
err
)
// Rename one over the other.
err
=
os
.
Rename
(
oldPath
,
newPath
)
AssertEq
(
nil
,
err
)
// Check the file contents.
contents
,
err
:=
ioutil
.
ReadFile
(
newPath
)
AssertEq
(
nil
,
err
)
ExpectEq
(
"taco"
,
string
(
contents
))
// And the parent listing.
entries
,
err
:=
fusetesting
.
ReadDirPicky
(
t
.
Dir
)
AssertEq
(
nil
,
err
)
AssertEq
(
1
,
len
(
entries
))
fi
:=
entries
[
0
]
ExpectEq
(
path
.
Base
(
newPath
),
fi
.
Name
())
ExpectEq
(
os
.
FileMode
(
0400
),
fi
.
Mode
())
ExpectEq
(
len
(
"taco"
),
fi
.
Size
())
}
func
(
t
*
MemFSTest
)
RenameOverExistingDirectory
()
{
AssertTrue
(
false
,
"TODO"
)
}
func
(
t
*
MemFSTest
)
RenameOverExisting_WrongType
()
{
AssertTrue
(
false
,
"TODO"
)
}
func
(
t
*
MemFSTest
)
RenameNonExistentFile
()
{
AssertTrue
(
false
,
"TODO"
)
}
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