Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | import os |
| 2 | import re |
| 3 | import glob as g |
| 4 | import shutil |
| 5 | import tempfile |
| 6 | from oeqa.selftest.case import OESelftestTestCase |
| 7 | from oeqa.selftest.cases.buildhistory import BuildhistoryBase |
| 8 | from oeqa.utils.commands import runCmd, bitbake, get_bb_var, get_bb_vars |
| 9 | import oeqa.utils.ftools as ftools |
| 10 | from oeqa.core.decorator.oeid import OETestID |
| 11 | |
| 12 | class ImageOptionsTests(OESelftestTestCase): |
| 13 | |
| 14 | @OETestID(761) |
| 15 | def test_incremental_image_generation(self): |
| 16 | image_pkgtype = get_bb_var("IMAGE_PKGTYPE") |
| 17 | if image_pkgtype != 'rpm': |
| 18 | self.skipTest('Not using RPM as main package format') |
| 19 | bitbake("-c clean core-image-minimal") |
| 20 | self.write_config('INC_RPM_IMAGE_GEN = "1"') |
| 21 | self.append_config('IMAGE_FEATURES += "ssh-server-openssh"') |
| 22 | bitbake("core-image-minimal") |
| 23 | log_data_file = os.path.join(get_bb_var("WORKDIR", "core-image-minimal"), "temp/log.do_rootfs") |
| 24 | log_data_created = ftools.read_file(log_data_file) |
| 25 | incremental_created = re.search(r"Installing\s*:\s*packagegroup-core-ssh-openssh", log_data_created) |
| 26 | self.remove_config('IMAGE_FEATURES += "ssh-server-openssh"') |
| 27 | self.assertTrue(incremental_created, msg = "Match failed in:\n%s" % log_data_created) |
| 28 | bitbake("core-image-minimal") |
| 29 | log_data_removed = ftools.read_file(log_data_file) |
| 30 | incremental_removed = re.search(r"Erasing\s*:\s*packagegroup-core-ssh-openssh", log_data_removed) |
| 31 | self.assertTrue(incremental_removed, msg = "Match failed in:\n%s" % log_data_removed) |
| 32 | |
| 33 | @OETestID(286) |
| 34 | def test_ccache_tool(self): |
| 35 | bitbake("ccache-native") |
| 36 | bb_vars = get_bb_vars(['SYSROOT_DESTDIR', 'bindir'], 'ccache-native') |
| 37 | p = bb_vars['SYSROOT_DESTDIR'] + bb_vars['bindir'] + "/" + "ccache" |
| 38 | self.assertTrue(os.path.isfile(p), msg = "No ccache found (%s)" % p) |
| 39 | self.write_config('INHERIT += "ccache"') |
| 40 | self.add_command_to_tearDown('bitbake -c clean m4') |
| 41 | bitbake("m4 -f -c compile") |
| 42 | log_compile = os.path.join(get_bb_var("WORKDIR","m4"), "temp/log.do_compile") |
| 43 | res = runCmd("grep ccache %s" % log_compile, ignore_status=True) |
| 44 | self.assertEqual(0, res.status, msg="No match for ccache in m4 log.do_compile. For further details: %s" % log_compile) |
| 45 | |
| 46 | @OETestID(1435) |
| 47 | def test_read_only_image(self): |
| 48 | distro_features = get_bb_var('DISTRO_FEATURES') |
| 49 | if not ('x11' in distro_features and 'opengl' in distro_features): |
| 50 | self.skipTest('core-image-sato requires x11 and opengl in distro features') |
| 51 | self.write_config('IMAGE_FEATURES += "read-only-rootfs"') |
| 52 | bitbake("core-image-sato") |
| 53 | # do_image will fail if there are any pending postinsts |
| 54 | |
| 55 | class DiskMonTest(OESelftestTestCase): |
| 56 | |
| 57 | @OETestID(277) |
| 58 | def test_stoptask_behavior(self): |
| 59 | self.write_config('BB_DISKMON_DIRS = "STOPTASKS,${TMPDIR},100000G,100K"') |
| 60 | res = bitbake("m4", ignore_status = True) |
| 61 | self.assertTrue('ERROR: No new tasks can be executed since the disk space monitor action is "STOPTASKS"!' in res.output, msg = "Tasks should have stopped. Disk monitor is set to STOPTASK: %s" % res.output) |
| 62 | self.assertEqual(res.status, 1, msg = "bitbake reported exit code %s. It should have been 1. Bitbake output: %s" % (str(res.status), res.output)) |
| 63 | self.write_config('BB_DISKMON_DIRS = "ABORT,${TMPDIR},100000G,100K"') |
| 64 | res = bitbake("m4", ignore_status = True) |
| 65 | self.assertTrue('ERROR: Immediately abort since the disk space monitor action is "ABORT"!' in res.output, "Tasks should have been aborted immediatelly. Disk monitor is set to ABORT: %s" % res.output) |
| 66 | self.assertEqual(res.status, 1, msg = "bitbake reported exit code %s. It should have been 1. Bitbake output: %s" % (str(res.status), res.output)) |
| 67 | self.write_config('BB_DISKMON_DIRS = "WARN,${TMPDIR},100000G,100K"') |
| 68 | res = bitbake("m4") |
| 69 | self.assertTrue('WARNING: The free space' in res.output, msg = "A warning should have been displayed for disk monitor is set to WARN: %s" %res.output) |
| 70 | |
| 71 | class SanityOptionsTest(OESelftestTestCase): |
| 72 | def getline(self, res, line): |
| 73 | for l in res.output.split('\n'): |
| 74 | if line in l: |
| 75 | return l |
| 76 | |
| 77 | @OETestID(927) |
| 78 | def test_options_warnqa_errorqa_switch(self): |
| 79 | |
| 80 | self.write_config("INHERIT_remove = \"report-error\"") |
| 81 | if "packages-list" not in get_bb_var("ERROR_QA"): |
| 82 | self.append_config("ERROR_QA_append = \" packages-list\"") |
| 83 | |
| 84 | self.write_recipeinc('xcursor-transparent-theme', 'PACKAGES += \"${PN}-dbg\"') |
| 85 | self.add_command_to_tearDown('bitbake -c clean xcursor-transparent-theme') |
| 86 | res = bitbake("xcursor-transparent-theme -f -c package", ignore_status=True) |
| 87 | self.delete_recipeinc('xcursor-transparent-theme') |
| 88 | line = self.getline(res, "QA Issue: xcursor-transparent-theme-dbg is listed in PACKAGES multiple times, this leads to packaging errors.") |
| 89 | self.assertTrue(line and line.startswith("ERROR:"), msg=res.output) |
| 90 | self.assertEqual(res.status, 1, msg = "bitbake reported exit code %s. It should have been 1. Bitbake output: %s" % (str(res.status), res.output)) |
| 91 | self.write_recipeinc('xcursor-transparent-theme', 'PACKAGES += \"${PN}-dbg\"') |
| 92 | self.append_config('ERROR_QA_remove = "packages-list"') |
| 93 | self.append_config('WARN_QA_append = " packages-list"') |
| 94 | res = bitbake("xcursor-transparent-theme -f -c package") |
| 95 | self.delete_recipeinc('xcursor-transparent-theme') |
| 96 | line = self.getline(res, "QA Issue: xcursor-transparent-theme-dbg is listed in PACKAGES multiple times, this leads to packaging errors.") |
| 97 | self.assertTrue(line and line.startswith("WARNING:"), msg=res.output) |
| 98 | |
| 99 | @OETestID(1421) |
| 100 | def test_layer_without_git_dir(self): |
| 101 | """ |
| 102 | Summary: Test that layer git revisions are displayed and do not fail without git repository |
| 103 | Expected: The build to be successful and without "fatal" errors |
| 104 | Product: oe-core |
| 105 | Author: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 106 | AutomatedBy: Daniel Istrate <daniel.alexandrux.istrate@intel.com> |
| 107 | """ |
| 108 | |
| 109 | dirpath = tempfile.mkdtemp() |
| 110 | |
| 111 | dummy_layer_name = 'meta-dummy' |
| 112 | dummy_layer_path = os.path.join(dirpath, dummy_layer_name) |
| 113 | dummy_layer_conf_dir = os.path.join(dummy_layer_path, 'conf') |
| 114 | os.makedirs(dummy_layer_conf_dir) |
| 115 | dummy_layer_conf_path = os.path.join(dummy_layer_conf_dir, 'layer.conf') |
| 116 | |
| 117 | dummy_layer_content = 'BBPATH .= ":${LAYERDIR}"\n' \ |
| 118 | 'BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"\n' \ |
| 119 | 'BBFILE_COLLECTIONS += "%s"\n' \ |
| 120 | 'BBFILE_PATTERN_%s = "^${LAYERDIR}/"\n' \ |
| 121 | 'BBFILE_PRIORITY_%s = "6"\n' % (dummy_layer_name, dummy_layer_name, dummy_layer_name) |
| 122 | |
| 123 | ftools.write_file(dummy_layer_conf_path, dummy_layer_content) |
| 124 | |
| 125 | bblayers_conf = 'BBLAYERS += "%s"\n' % dummy_layer_path |
| 126 | self.write_bblayers_config(bblayers_conf) |
| 127 | |
| 128 | test_recipe = 'ed' |
| 129 | |
| 130 | ret = bitbake('-n %s' % test_recipe) |
| 131 | |
| 132 | err = 'fatal: Not a git repository' |
| 133 | |
| 134 | shutil.rmtree(dirpath) |
| 135 | |
| 136 | self.assertNotIn(err, ret.output) |
| 137 | |
| 138 | |
| 139 | class BuildhistoryTests(BuildhistoryBase): |
| 140 | |
| 141 | @OETestID(293) |
| 142 | def test_buildhistory_basic(self): |
| 143 | self.run_buildhistory_operation('xcursor-transparent-theme') |
| 144 | self.assertTrue(os.path.isdir(get_bb_var('BUILDHISTORY_DIR')), "buildhistory dir was not created.") |
| 145 | |
| 146 | @OETestID(294) |
| 147 | def test_buildhistory_buildtime_pr_backwards(self): |
| 148 | target = 'xcursor-transparent-theme' |
| 149 | error = "ERROR:.*QA Issue: Package version for package %s went backwards which would break package feeds from (.*-r1.* to .*-r0.*)" % target |
| 150 | self.run_buildhistory_operation(target, target_config="PR = \"r1\"", change_bh_location=True) |
| 151 | self.run_buildhistory_operation(target, target_config="PR = \"r0\"", change_bh_location=False, expect_error=True, error_regex=error) |
| 152 | |
| 153 | class ArchiverTest(OESelftestTestCase): |
| 154 | @OETestID(926) |
| 155 | def test_arch_work_dir_and_export_source(self): |
| 156 | """ |
| 157 | Test for archiving the work directory and exporting the source files. |
| 158 | """ |
| 159 | self.write_config("INHERIT += \"archiver\"\nARCHIVER_MODE[src] = \"original\"\nARCHIVER_MODE[srpm] = \"1\"") |
| 160 | res = bitbake("xcursor-transparent-theme", ignore_status=True) |
| 161 | self.assertEqual(res.status, 0, "\nCouldn't build xcursortransparenttheme.\nbitbake output %s" % res.output) |
| 162 | deploy_dir_src = get_bb_var('DEPLOY_DIR_SRC') |
| 163 | pkgs_path = g.glob(str(deploy_dir_src) + "/allarch*/xcurs*") |
| 164 | src_file_glob = str(pkgs_path[0]) + "/xcursor*.src.rpm" |
| 165 | tar_file_glob = str(pkgs_path[0]) + "/xcursor*.tar.gz" |
| 166 | self.assertTrue((g.glob(src_file_glob) and g.glob(tar_file_glob)), "Couldn't find .src.rpm and .tar.gz files under %s/allarch*/xcursor*" % deploy_dir_src) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 167 | |
| 168 | class ToolchainOptions(OESelftestTestCase): |
| 169 | |
| 170 | def test_toolchain_fortran(self): |
| 171 | """ |
| 172 | Test whether we can enable and build fortran and its supporting libraries |
| 173 | """ |
| 174 | |
| 175 | features = 'FORTRAN_forcevariable = ",fortran"\n' |
| 176 | features += 'RUNTIMETARGET_append_pn-gcc-runtime = " libquadmath"\n' |
| 177 | self.write_config(features) |
| 178 | |
| 179 | bitbake('gcc-runtime libgfortran') |
| 180 | |