Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | # SPDX-License-Identifier: GPL-2.0+ # Copyright (C) 2022 Huang Jianan <jnhuang95@gmail.com> # Author: Huang Jianan <jnhuang95@gmail.com> import os import pytest import shutil import subprocess EROFS_SRC_DIR = 'erofs_src_dir' EROFS_IMAGE_NAME = 'erofs.img' def generate_file(name, size): """ Generates a file filled with 'x'. """ content = 'x' * size file = open(name, 'w') file.write(content) file.close() def make_erofs_image(build_dir): """ Makes the EROFS images used for the test. The image is generated at build_dir with the following structure: erofs_src_dir/ ├── f4096 ├── f7812 ├── subdir/ │ └── subdir-file ├── symdir -> subdir └── symfile -> f5096 """ root = os.path.join(build_dir, EROFS_SRC_DIR) os.makedirs(root) # 4096: uncompressed file generate_file(os.path.join(root, 'f4096'), 4096) # 7812: Compressed file generate_file(os.path.join(root, 'f7812'), 7812) # sub-directory with a single file inside subdir_path = os.path.join(root, 'subdir') os.makedirs(subdir_path) generate_file(os.path.join(subdir_path, 'subdir-file'), 100) # symlink os.symlink('subdir', os.path.join(root, 'symdir')) os.symlink('f7812', os.path.join(root, 'symfile')) input_path = os.path.join(build_dir, EROFS_SRC_DIR) output_path = os.path.join(build_dir, EROFS_IMAGE_NAME) args = ' '.join([output_path, input_path]) subprocess.run(['mkfs.erofs -zlz4 ' + args], shell=True, check=True, stdout=subprocess.DEVNULL) def clean_erofs_image(build_dir): """ Deletes the image and src_dir at build_dir. """ path = os.path.join(build_dir, EROFS_SRC_DIR) shutil.rmtree(path) image_path = os.path.join(build_dir, EROFS_IMAGE_NAME) os.remove(image_path) def erofs_ls_at_root(ubman): """ Test if all the present files and directories were listed. """ no_slash = ubman.run_command('erofsls host 0') slash = ubman.run_command('erofsls host 0 /') assert no_slash == slash expected_lines = ['./', '../', '4096 f4096', '7812 f7812', 'subdir/', '<SYM> symdir', '<SYM> symfile', '4 file(s), 3 dir(s)'] output = ubman.run_command('erofsls host 0') for line in expected_lines: assert line in output def erofs_ls_at_subdir(ubman): """ Test if the path resolution works. """ expected_lines = ['./', '../', '100 subdir-file', '1 file(s), 2 dir(s)'] output = ubman.run_command('erofsls host 0 subdir') for line in expected_lines: assert line in output def erofs_ls_at_symlink(ubman): """ Test if the symbolic link's target resolution works. """ output = ubman.run_command('erofsls host 0 symdir') output_subdir = ubman.run_command('erofsls host 0 subdir') assert output == output_subdir expected_lines = ['./', '../', '100 subdir-file', '1 file(s), 2 dir(s)'] for line in expected_lines: assert line in output def erofs_ls_at_non_existent_dir(ubman): """ Test if the EROFS support will crash when get a nonexistent directory. """ out_non_existent = ubman.run_command('erofsls host 0 fff') out_not_dir = ubman.run_command('erofsls host 0 f1000') assert out_non_existent == out_not_dir assert '' in out_non_existent def erofs_load_files(ubman, files, sizes, address): """ Loads files and asserts their checksums. """ build_dir = ubman.config.build_dir for (file, size) in zip(files, sizes): out = ubman.run_command('erofsload host 0 {} {}'.format(address, file)) # check if the right amount of bytes was read assert size in out # calculate u-boot file's checksum out = ubman.run_command('md5sum {} {}'.format(address, hex(int(size)))) u_boot_checksum = out.split()[-1] # calculate original file's checksum original_file_path = os.path.join(build_dir, EROFS_SRC_DIR + '/' + file) out = subprocess.run(['md5sum ' + original_file_path], shell=True, check=True, capture_output=True, text=True) original_checksum = out.stdout.split()[0] # compare checksum assert u_boot_checksum == original_checksum def erofs_load_files_at_root(ubman): """ Test load file from the root directory. """ files = ['f4096', 'f7812'] sizes = ['4096', '7812'] address = '$kernel_addr_r' erofs_load_files(ubman, files, sizes, address) def erofs_load_files_at_subdir(ubman): """ Test load file from the subdirectory. """ files = ['subdir/subdir-file'] sizes = ['100'] address = '$kernel_addr_r' erofs_load_files(ubman, files, sizes, address) def erofs_load_files_at_symlink(ubman): """ Test load file from the symlink. """ files = ['symfile'] sizes = ['7812'] address = '$kernel_addr_r' erofs_load_files(ubman, files, sizes, address) def erofs_load_non_existent_file(ubman): """ Test if the EROFS support will crash when load a nonexistent file. """ address = '$kernel_addr_r' file = 'non-existent' out = ubman.run_command('erofsload host 0 {} {}'.format(address, file)) assert 'Failed to load' in out def erofs_run_all_tests(ubman): """ Runs all test cases. """ erofs_ls_at_root(ubman) erofs_ls_at_subdir(ubman) erofs_ls_at_symlink(ubman) erofs_ls_at_non_existent_dir(ubman) erofs_load_files_at_root(ubman) erofs_load_files_at_subdir(ubman) erofs_load_files_at_symlink(ubman) erofs_load_non_existent_file(ubman) @pytest.mark.boardspec('sandbox') @pytest.mark.buildconfigspec('cmd_fs_generic') @pytest.mark.buildconfigspec('cmd_erofs') @pytest.mark.buildconfigspec('fs_erofs') @pytest.mark.requiredtool('mkfs.erofs') @pytest.mark.requiredtool('md5sum') @pytest.mark.restart def test_erofs(ubman): """ Executes the erofs test suite. """ build_dir = ubman.config.build_dir # If the EFI subsystem is enabled and initialized, EFI subsystem tries to # add EFI boot option when the new disk is detected. If there is no EFI # System Partition exists, EFI subsystem outputs error messages and # it ends up with test failure. # Restart U-Boot to clear the previous state. # TODO: Ideally EFI test cases need to be fixed, but it will # increase the number of system reset. ubman.restart_uboot() try: # setup test environment make_erofs_image(build_dir) image_path = os.path.join(build_dir, EROFS_IMAGE_NAME) ubman.run_command('host bind 0 {}'.format(image_path)) # run all tests erofs_run_all_tests(ubman) except: clean_erofs_image(build_dir) raise AssertionError # clean test environment clean_erofs_image(build_dir) |