Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 5 | from oeqa.selftest.case import OESelftestTestCase |
| 6 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, runqemu |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 7 | from oeqa.utils.sshcontrol import SSHControl |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 8 | import glob |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 9 | import os |
| 10 | import json |
| 11 | |
| 12 | class ImageFeatures(OESelftestTestCase): |
| 13 | |
| 14 | test_user = 'tester' |
| 15 | root_user = 'root' |
| 16 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 17 | def test_non_root_user_can_connect_via_ssh_without_password(self): |
| 18 | """ |
| 19 | Summary: Check if non root user can connect via ssh without password |
| 20 | Expected: 1. Connection to the image via ssh using root user without providing a password should be allowed. |
| 21 | 2. Connection to the image via ssh using tester user without providing a password should be allowed. |
| 22 | Product: oe-core |
| 23 | Author: Ionut Chisanovici <ionutx.chisanovici@intel.com> |
| 24 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 25 | """ |
| 26 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 27 | features = 'EXTRA_IMAGE_FEATURES = "ssh-server-openssh empty-root-password allow-empty-password allow-root-login"\n' |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 28 | features += 'INHERIT += "extrausers"\n' |
| 29 | features += 'EXTRA_USERS_PARAMS = "useradd -p \'\' {}; usermod -s /bin/sh {};"'.format(self.test_user, self.test_user) |
| 30 | self.write_config(features) |
| 31 | |
| 32 | # Build a core-image-minimal |
| 33 | bitbake('core-image-minimal') |
| 34 | |
| 35 | with runqemu("core-image-minimal") as qemu: |
| 36 | # Attempt to ssh with each user into qemu with empty password |
| 37 | for user in [self.root_user, self.test_user]: |
| 38 | ssh = SSHControl(ip=qemu.ip, logfile=qemu.sshlog, user=user) |
| 39 | status, output = ssh.run("true") |
| 40 | self.assertEqual(status, 0, 'ssh to user %s failed with %s' % (user, output)) |
| 41 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 42 | def test_all_users_can_connect_via_ssh_without_password(self): |
| 43 | """ |
| 44 | Summary: Check if all users can connect via ssh without password |
| 45 | Expected: 1. Connection to the image via ssh using root user without providing a password should NOT be allowed. |
| 46 | 2. Connection to the image via ssh using tester user without providing a password should be allowed. |
| 47 | Product: oe-core |
| 48 | Author: Ionut Chisanovici <ionutx.chisanovici@intel.com> |
| 49 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 50 | """ |
| 51 | |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 52 | features = 'EXTRA_IMAGE_FEATURES = "ssh-server-openssh allow-empty-password allow-root-login"\n' |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 53 | features += 'INHERIT += "extrausers"\n' |
| 54 | features += 'EXTRA_USERS_PARAMS = "useradd -p \'\' {}; usermod -s /bin/sh {};"'.format(self.test_user, self.test_user) |
| 55 | self.write_config(features) |
| 56 | |
| 57 | # Build a core-image-minimal |
| 58 | bitbake('core-image-minimal') |
| 59 | |
| 60 | with runqemu("core-image-minimal") as qemu: |
| 61 | # Attempt to ssh with each user into qemu with empty password |
| 62 | for user in [self.root_user, self.test_user]: |
| 63 | ssh = SSHControl(ip=qemu.ip, logfile=qemu.sshlog, user=user) |
| 64 | status, output = ssh.run("true") |
| 65 | if user == 'root': |
| 66 | self.assertNotEqual(status, 0, 'ssh to user root was allowed when it should not have been') |
| 67 | else: |
| 68 | self.assertEqual(status, 0, 'ssh to user tester failed with %s' % output) |
| 69 | |
| 70 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 71 | def test_clutter_image_can_be_built(self): |
| 72 | """ |
| 73 | Summary: Check if clutter image can be built |
| 74 | Expected: 1. core-image-clutter can be built |
| 75 | Product: oe-core |
| 76 | Author: Ionut Chisanovici <ionutx.chisanovici@intel.com> |
| 77 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 78 | """ |
| 79 | |
| 80 | # Build a core-image-clutter |
| 81 | bitbake('core-image-clutter') |
| 82 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 83 | def test_wayland_support_in_image(self): |
| 84 | """ |
| 85 | Summary: Check Wayland support in image |
| 86 | Expected: 1. Wayland image can be build |
| 87 | 2. Wayland feature can be installed |
| 88 | Product: oe-core |
| 89 | Author: Ionut Chisanovici <ionutx.chisanovici@intel.com> |
| 90 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 91 | """ |
| 92 | |
| 93 | distro_features = get_bb_var('DISTRO_FEATURES') |
| 94 | if not ('opengl' in distro_features and 'wayland' in distro_features): |
| 95 | self.skipTest('neither opengl nor wayland present on DISTRO_FEATURES so core-image-weston cannot be built') |
| 96 | |
| 97 | # Build a core-image-weston |
| 98 | bitbake('core-image-weston') |
| 99 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 100 | def test_bmap(self): |
| 101 | """ |
| 102 | Summary: Check bmap support |
| 103 | Expected: 1. core-image-minimal can be build with bmap support |
| 104 | 2. core-image-minimal is sparse |
| 105 | Product: oe-core |
| 106 | Author: Ed Bartosh <ed.bartosh@linux.intel.com> |
| 107 | """ |
| 108 | |
| 109 | features = 'IMAGE_FSTYPES += " ext4 ext4.bmap ext4.bmap.gz"' |
| 110 | self.write_config(features) |
| 111 | |
| 112 | image_name = 'core-image-minimal' |
| 113 | bitbake(image_name) |
| 114 | |
| 115 | deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') |
| 116 | link_name = get_bb_var('IMAGE_LINK_NAME', image_name) |
| 117 | image_path = os.path.join(deploy_dir_image, "%s.ext4" % link_name) |
| 118 | bmap_path = "%s.bmap" % image_path |
| 119 | gzip_path = "%s.gz" % bmap_path |
| 120 | |
| 121 | # check if result image, bmap and bmap.gz files are in deploy directory |
| 122 | self.assertTrue(os.path.exists(image_path)) |
| 123 | self.assertTrue(os.path.exists(bmap_path)) |
| 124 | self.assertTrue(os.path.exists(gzip_path)) |
| 125 | |
| 126 | # check if result image is sparse |
| 127 | image_stat = os.stat(image_path) |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 128 | self.assertGreater(image_stat.st_size, image_stat.st_blocks * 512) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 129 | |
| 130 | # check if the resulting gzip is valid |
| 131 | self.assertTrue(runCmd('gzip -t %s' % gzip_path)) |
| 132 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 133 | def test_hypervisor_fmts(self): |
| 134 | """ |
| 135 | Summary: Check various hypervisor formats |
| 136 | Expected: 1. core-image-minimal can be built with vmdk, vdi and |
| 137 | qcow2 support. |
| 138 | 2. qemu-img says each image has the expected format |
| 139 | Product: oe-core |
| 140 | Author: Tom Rini <trini@konsulko.com> |
| 141 | """ |
| 142 | |
| 143 | img_types = [ 'vmdk', 'vdi', 'qcow2' ] |
| 144 | features = "" |
| 145 | for itype in img_types: |
| 146 | features += 'IMAGE_FSTYPES += "wic.%s"\n' % itype |
| 147 | self.write_config(features) |
| 148 | |
| 149 | image_name = 'core-image-minimal' |
| 150 | bitbake(image_name) |
| 151 | |
| 152 | deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') |
| 153 | link_name = get_bb_var('IMAGE_LINK_NAME', image_name) |
| 154 | for itype in img_types: |
| 155 | image_path = os.path.join(deploy_dir_image, "%s.wic.%s" % |
| 156 | (link_name, itype)) |
| 157 | |
| 158 | # check if result image file is in deploy directory |
| 159 | self.assertTrue(os.path.exists(image_path)) |
| 160 | |
| 161 | # check if result image is vmdk |
| 162 | sysroot = get_bb_var('STAGING_DIR_NATIVE', 'core-image-minimal') |
| 163 | result = runCmd('qemu-img info --output json %s' % image_path, |
| 164 | native_sysroot=sysroot) |
Brad Bishop | f3f93bb | 2019-10-16 14:33:32 -0400 | [diff] [blame] | 165 | try: |
| 166 | data = json.loads(result.output) |
| 167 | self.assertEqual(data.get('format'), itype, |
| 168 | msg="Unexpected format in '%s'" % (result.output)) |
| 169 | except json.decoder.JSONDecodeError: |
| 170 | self.fail("Could not parse '%ss'" % result.output) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 171 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 172 | def test_long_chain_conversion(self): |
| 173 | """ |
| 174 | Summary: Check for chaining many CONVERSION_CMDs together |
| 175 | Expected: 1. core-image-minimal can be built with |
| 176 | ext4.bmap.gz.bz2.lzo.xz.u-boot and also create a |
| 177 | sha256sum |
| 178 | 2. The above image has a valid sha256sum |
| 179 | Product: oe-core |
| 180 | Author: Tom Rini <trini@konsulko.com> |
| 181 | """ |
| 182 | |
| 183 | conv = "ext4.bmap.gz.bz2.lzo.xz.u-boot" |
| 184 | features = 'IMAGE_FSTYPES += "%s %s.sha256sum"' % (conv, conv) |
| 185 | self.write_config(features) |
| 186 | |
| 187 | image_name = 'core-image-minimal' |
| 188 | bitbake(image_name) |
| 189 | |
| 190 | deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') |
| 191 | link_name = get_bb_var('IMAGE_LINK_NAME', image_name) |
| 192 | image_path = os.path.join(deploy_dir_image, "%s.%s" % |
| 193 | (link_name, conv)) |
| 194 | |
| 195 | # check if resulting image is in the deploy directory |
| 196 | self.assertTrue(os.path.exists(image_path)) |
| 197 | self.assertTrue(os.path.exists(image_path + ".sha256sum")) |
| 198 | |
| 199 | # check if the resulting sha256sum agrees |
| 200 | self.assertTrue(runCmd('cd %s;sha256sum -c %s.%s.sha256sum' % |
| 201 | (deploy_dir_image, link_name, conv))) |
| 202 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 203 | def test_image_fstypes(self): |
| 204 | """ |
| 205 | Summary: Check if image of supported image fstypes can be built |
| 206 | Expected: core-image-minimal can be built for various image types |
| 207 | Product: oe-core |
| 208 | Author: Ed Bartosh <ed.bartosh@linux.intel.com> |
| 209 | """ |
| 210 | image_name = 'core-image-minimal' |
| 211 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 212 | all_image_types = set(get_bb_var("IMAGE_TYPES", image_name).split()) |
Andrew Geissler | 1e34c2d | 2020-05-29 16:02:59 -0500 | [diff] [blame] | 213 | blacklist = set(('container', 'elf', 'f2fs', 'multiubi', 'tar.zst', 'wic.zst')) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 214 | img_types = all_image_types - blacklist |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 215 | |
| 216 | config = 'IMAGE_FSTYPES += "%s"\n'\ |
| 217 | 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ |
| 218 | 'UBINIZE_ARGS ?= "-m 2048 -p 128KiB -s 512"' % ' '.join(img_types) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 219 | self.write_config(config) |
| 220 | |
| 221 | bitbake(image_name) |
| 222 | |
| 223 | deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') |
| 224 | link_name = get_bb_var('IMAGE_LINK_NAME', image_name) |
| 225 | for itype in img_types: |
| 226 | image_path = os.path.join(deploy_dir_image, "%s.%s" % (link_name, itype)) |
| 227 | # check if result image is in deploy directory |
| 228 | self.assertTrue(os.path.exists(image_path), |
| 229 | "%s image %s doesn't exist" % (itype, image_path)) |
| 230 | |
| 231 | def test_useradd_static(self): |
| 232 | config = """ |
| 233 | USERADDEXTENSION = "useradd-staticids" |
| 234 | USERADD_ERROR_DYNAMIC = "skip" |
| 235 | USERADD_UID_TABLES += "files/static-passwd" |
| 236 | USERADD_GID_TABLES += "files/static-group" |
| 237 | """ |
| 238 | self.write_config(config) |
| 239 | bitbake("core-image-base") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 240 | |
| 241 | def test_no_busybox_base_utils(self): |
| 242 | config = """ |
| 243 | # Enable x11 |
| 244 | DISTRO_FEATURES_append += "x11" |
| 245 | |
| 246 | # Switch to systemd |
| 247 | DISTRO_FEATURES += "systemd" |
| 248 | VIRTUAL-RUNTIME_init_manager = "systemd" |
| 249 | VIRTUAL-RUNTIME_initscripts = "" |
| 250 | VIRTUAL-RUNTIME_syslog = "" |
| 251 | VIRTUAL-RUNTIME_login_manager = "shadow-base" |
| 252 | DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit" |
| 253 | |
| 254 | # Replace busybox |
| 255 | PREFERRED_PROVIDER_virtual/base-utils = "packagegroup-core-base-utils" |
| 256 | VIRTUAL-RUNTIME_base-utils = "packagegroup-core-base-utils" |
| 257 | VIRTUAL-RUNTIME_base-utils-hwclock = "util-linux-hwclock" |
| 258 | VIRTUAL-RUNTIME_base-utils-syslog = "" |
| 259 | |
| 260 | # Blacklist busybox |
| 261 | PNBLACKLIST[busybox] = "Don't build this" |
| 262 | """ |
| 263 | self.write_config(config) |
| 264 | |
| 265 | bitbake("--graphviz core-image-sato") |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 266 | |
| 267 | def test_image_gen_debugfs(self): |
| 268 | """ |
| 269 | Summary: Check debugfs generation |
| 270 | Expected: 1. core-image-minimal can be build with IMAGE_GEN_DEBUGFS variable set |
| 271 | 2. debug filesystem is created when variable set |
| 272 | 3. debug symbols available |
| 273 | Product: oe-core |
| 274 | Author: Humberto Ibarra <humberto.ibarra.lopez@intel.com> |
| 275 | Yeoh Ee Peng <ee.peng.yeoh@intel.com> |
| 276 | """ |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 277 | |
Andrew Geissler | c182c62 | 2020-05-15 14:13:32 -0500 | [diff] [blame] | 278 | image_name = 'core-image-minimal' |
| 279 | features = 'IMAGE_GEN_DEBUGFS = "1"\n' |
| 280 | features += 'IMAGE_FSTYPES_DEBUGFS = "tar.bz2"\n' |
| 281 | features += 'MACHINE = "genericx86-64"\n' |
| 282 | self.write_config(features) |
| 283 | |
| 284 | bitbake(image_name) |
| 285 | deploy_dir_image = get_bb_var('DEPLOY_DIR_IMAGE') |
| 286 | dbg_tar_file = os.path.join(deploy_dir_image, "*-dbg.rootfs.tar.bz2") |
| 287 | debug_files = glob.glob(dbg_tar_file) |
| 288 | self.assertNotEqual(len(debug_files), 0, 'debug filesystem not generated at %s' % dbg_tar_file) |
| 289 | result = runCmd('cd %s; tar xvf %s' % (deploy_dir_image, dbg_tar_file)) |
| 290 | self.assertEqual(result.status, 0, msg='Failed to extract %s: %s' % (dbg_tar_file, result.output)) |
| 291 | result = runCmd('find %s -name %s' % (deploy_dir_image, "udevadm")) |
| 292 | self.assertTrue("udevadm" in result.output, msg='Failed to find udevadm: %s' % result.output) |
| 293 | dbg_symbols_targets = result.output.splitlines() |
| 294 | self.assertTrue(dbg_symbols_targets, msg='Failed to split udevadm: %s' % dbg_symbols_targets) |
| 295 | for t in dbg_symbols_targets: |
| 296 | result = runCmd('objdump --syms %s | grep debug' % t) |
| 297 | self.assertTrue("debug" in result.output, msg='Failed to find debug symbol: %s' % result.output) |
Andrew Geissler | 4c19ea1 | 2020-10-27 13:52:24 -0500 | [diff] [blame] | 298 | |
| 299 | def test_empty_image(self): |
| 300 | """Test creation of image with no packages""" |
| 301 | bitbake('test-empty-image') |
| 302 | res_dir = get_bb_var('DEPLOY_DIR_IMAGE') |
| 303 | images = os.path.join(res_dir, "test-empty-image-*.manifest") |
| 304 | result = glob.glob(images) |
| 305 | with open(result[1],"r") as f: |
| 306 | self.assertEqual(len(f.read().strip()),0) |