mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00

This fixture name is quite long and results in lots of verbose code. We know this is U-Boot so the 'u_boot_' part is not necessary. But it is also a bit of a misnomer, since it provides access to all the information available to tests. It is not just the console. It would be too confusing to use con as it would be confused with config and it is probably too short. So shorten it to 'ubman'. Signed-off-by: Simon Glass <sjg@chromium.org> Link: https://lore.kernel.org/u-boot/CAFLszTgPa4aT_J9h9pqeTtLCVn4x2JvLWRcWRD8NaN3uoSAtyA@mail.gmail.com/
121 lines
4.5 KiB
Python
121 lines
4.5 KiB
Python
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright (c) 2018, Linaro Limited
|
|
# Author: Takahiro Akashi <takahiro.akashi@linaro.org>
|
|
#
|
|
# U-Boot File System:mkdir Test
|
|
|
|
"""
|
|
This test verifies mkdir operation on file system.
|
|
"""
|
|
|
|
import pytest
|
|
from fstest_helpers import assert_fs_integrity
|
|
|
|
@pytest.mark.boardspec('sandbox')
|
|
@pytest.mark.slow
|
|
class TestMkdir(object):
|
|
def test_mkdir1(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
Test Case 1 - create a directory under a root
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 1 - mkdir'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 dir1' % fs_type,
|
|
'%sls host 0:0 /' % fs_type])
|
|
assert('dir1/' in ''.join(output))
|
|
|
|
output = ubman.run_command(
|
|
'%sls host 0:0 dir1' % fs_type)
|
|
assert('./' in output)
|
|
assert('../' in output)
|
|
assert_fs_integrity(fs_type, fs_img)
|
|
|
|
|
|
def test_mkdir2(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
Test Case 2 - create a directory under a sub-directory
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 2 - mkdir (sub-sub directory)'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 dir1/dir2' % fs_type,
|
|
'%sls host 0:0 dir1' % fs_type])
|
|
assert('dir2/' in ''.join(output))
|
|
|
|
output = ubman.run_command(
|
|
'%sls host 0:0 dir1/dir2' % fs_type)
|
|
assert('./' in output)
|
|
assert('../' in output)
|
|
assert_fs_integrity(fs_type, fs_img)
|
|
|
|
def test_mkdir3(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
Test Case 3 - trying to create a directory with a non-existing
|
|
path should fail
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 3 - mkdir (non-existing path)'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 none/dir3' % fs_type])
|
|
assert('Unable to create a directory' in ''.join(output))
|
|
assert_fs_integrity(fs_type, fs_img)
|
|
|
|
def test_mkdir4(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
Test Case 4 - trying to create "." should fail
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 4 - mkdir (".")'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 .' % fs_type])
|
|
assert('Unable to create a directory' in ''.join(output))
|
|
assert_fs_integrity(fs_type, fs_img)
|
|
|
|
def test_mkdir5(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
Test Case 5 - trying to create ".." should fail
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 5 - mkdir ("..")'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 ..' % fs_type])
|
|
assert('Unable to create a directory' in ''.join(output))
|
|
assert_fs_integrity(fs_type, fs_img)
|
|
|
|
def test_mkdir6(self, ubman, fs_obj_mkdir):
|
|
"""
|
|
'Test Case 6 - create as many directories as amount of directory
|
|
entries goes beyond a cluster size)'
|
|
"""
|
|
fs_type,fs_img = fs_obj_mkdir
|
|
with ubman.log.section('Test Case 6 - mkdir (create many)'):
|
|
output = ubman.run_command_list([
|
|
'host bind 0 %s' % fs_img,
|
|
'%smkdir host 0:0 dir6' % fs_type,
|
|
'%sls host 0:0 /' % fs_type])
|
|
assert('dir6/' in ''.join(output))
|
|
|
|
for i in range(0, 20):
|
|
output = ubman.run_command(
|
|
'%smkdir host 0:0 dir6/0123456789abcdef%02x'
|
|
% (fs_type, i))
|
|
output = ubman.run_command('%sls host 0:0 dir6' % fs_type)
|
|
assert('0123456789abcdef00/' in output)
|
|
assert('0123456789abcdef13/' in output)
|
|
|
|
output = ubman.run_command(
|
|
'%sls host 0:0 dir6/0123456789abcdef13/.' % fs_type)
|
|
assert('./' in output)
|
|
assert('../' in output)
|
|
|
|
output = ubman.run_command(
|
|
'%sls host 0:0 dir6/0123456789abcdef13/..' % fs_type)
|
|
assert('0123456789abcdef00/' in output)
|
|
assert('0123456789abcdef13/' in output)
|
|
assert_fs_integrity(fs_type, fs_img)
|