Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
8891b2e7
Commit
8891b2e7
authored
8 years ago
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
tests/extmod: Add a test for core VFS functionality, sans any filesystem.
parent
0a3ac07e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/extmod/vfs_basic.py
+55
-0
55 additions, 0 deletions
tests/extmod/vfs_basic.py
tests/extmod/vfs_basic.py.exp
+17
-0
17 additions, 0 deletions
tests/extmod/vfs_basic.py.exp
with
72 additions
and
0 deletions
tests/extmod/vfs_basic.py
0 → 100644
+
55
−
0
View file @
8891b2e7
# test VFS functionality without any particular filesystem type
try
:
try
:
import
uos_vfs
as
uos
open
=
uos
.
vfs_open
except
ImportError
:
import
uos
uos
.
mount
except
(
ImportError
,
AttributeError
):
print
(
"
SKIP
"
)
import
sys
sys
.
exit
()
class
Filesystem
:
def
__init__
(
self
,
id
):
self
.
id
=
id
def
mount
(
self
,
readonly
,
mkfs
):
print
(
self
.
id
,
'
mount
'
,
readonly
,
mkfs
)
def
umount
(
self
):
print
(
self
.
id
,
'
umount
'
)
def
listdir
(
self
,
dir
):
print
(
self
.
id
,
'
listdir
'
,
dir
)
return
[
'
a%d
'
%
self
.
id
]
def
chdir
(
self
,
dir
):
print
(
self
.
id
,
'
chdir
'
,
dir
)
def
open
(
self
,
file
,
mode
):
print
(
self
.
id
,
'
open
'
,
file
,
mode
)
# basic mounting and listdir
uos
.
mount
(
Filesystem
(
1
),
'
/test_mnt
'
)
print
(
uos
.
listdir
())
# referencing the mount point in different ways
print
(
uos
.
listdir
(
'
test_mnt
'
))
print
(
uos
.
listdir
(
'
/test_mnt
'
))
# mounting another filesystem
uos
.
mount
(
Filesystem
(
2
),
'
/test_mnt2
'
,
readonly
=
True
)
print
(
uos
.
listdir
())
print
(
uos
.
listdir
(
'
/test_mnt2
'
))
# chdir
uos
.
chdir
(
'
test_mnt
'
)
print
(
uos
.
listdir
())
# open
open
(
'
test_file
'
)
open
(
'
test_file
'
,
'
wb
'
)
# umount
uos
.
umount
(
'
/test_mnt
'
)
uos
.
umount
(
'
/test_mnt2
'
)
This diff is collapsed.
Click to expand it.
tests/extmod/vfs_basic.py.exp
0 → 100644
+
17
−
0
View file @
8891b2e7
1 mount False False
['test_mnt']
1 listdir /
['a1']
1 listdir /
['a1']
2 mount True False
['test_mnt', 'test_mnt2']
2 listdir /
['a2']
1 chdir /
1 listdir
['a1']
1 open test_file r
1 open test_file wb
1 umount
2 umount
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment