blob: 3d6860f652c79909bd8cba6b4e15ce58dcf92eea [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001import unittest
2import os
3import logging
4import re
5import shutil
6
7import oeqa.utils.ftools as ftools
8from oeqa.selftest.base import oeSelfTest
9from oeqa.utils.commands import runCmd, bitbake, get_bb_var
10from oeqa.utils.decorators import testcase
11
12class BitbakeTests(oeSelfTest):
13
14 @testcase(789)
15 def test_run_bitbake_from_dir_1(self):
16 os.chdir(os.path.join(self.builddir, 'conf'))
17 self.assertEqual(bitbake('-e').status, 0, msg = "bitbake couldn't run from \"conf\" dir")
18
19 @testcase(790)
20 def test_run_bitbake_from_dir_2(self):
21 my_env = os.environ.copy()
22 my_env['BBPATH'] = my_env['BUILDDIR']
23 os.chdir(os.path.dirname(os.environ['BUILDDIR']))
24 self.assertEqual(bitbake('-e', env=my_env).status, 0, msg = "bitbake couldn't run from builddir")
25
26 @testcase(806)
27 def test_event_handler(self):
28 self.write_config("INHERIT += \"test_events\"")
29 result = bitbake('m4-native')
30 find_build_started = re.search("NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Preparing RunQueue", result.output)
31 find_build_completed = re.search("Tasks Summary:.*(\n.*)*NOTE: Test for bb\.event\.BuildCompleted", result.output)
32 self.assertTrue(find_build_started, msg = "Match failed in:\n%s" % result.output)
33 self.assertTrue(find_build_completed, msg = "Match failed in:\n%s" % result.output)
34 self.assertFalse('Test for bb.event.InvalidEvent' in result.output, msg = "\"Test for bb.event.InvalidEvent\" message found during bitbake process. bitbake output: %s" % result.output)
35
36 @testcase(103)
37 def test_local_sstate(self):
38 bitbake('m4-native -ccleansstate')
39 bitbake('m4-native')
40 bitbake('m4-native -cclean')
41 result = bitbake('m4-native')
42 find_setscene = re.search("m4-native.*do_.*_setscene", result.output)
43 self.assertTrue(find_setscene, msg = "No \"m4-native.*do_.*_setscene\" message found during bitbake m4-native. bitbake output: %s" % result.output )
44
45 @testcase(105)
46 def test_bitbake_invalid_recipe(self):
47 result = bitbake('-b asdf', ignore_status=True)
48 self.assertTrue("ERROR: Unable to find any recipe file matching 'asdf'" in result.output, msg = "Though asdf recipe doesn't exist, bitbake didn't output any err. message. bitbake output: %s" % result.output)
49
50 @testcase(107)
51 def test_bitbake_invalid_target(self):
52 result = bitbake('asdf', ignore_status=True)
53 self.assertTrue("ERROR: Nothing PROVIDES 'asdf'" in result.output, msg = "Though no 'asdf' target exists, bitbake didn't output any err. message. bitbake output: %s" % result.output)
54
55 @testcase(106)
56 def test_warnings_errors(self):
57 result = bitbake('-b asdf', ignore_status=True)
58 find_warnings = re.search("Summary: There w.{2,3}? [1-9][0-9]* WARNING messages* shown", result.output)
59 find_errors = re.search("Summary: There w.{2,3}? [1-9][0-9]* ERROR messages* shown", result.output)
60 self.assertTrue(find_warnings, msg="Did not find the mumber of warnings at the end of the build:\n" + result.output)
61 self.assertTrue(find_errors, msg="Did not find the mumber of errors at the end of the build:\n" + result.output)
62
63 @testcase(108)
64 def test_invalid_patch(self):
65 self.write_recipeinc('man', 'SRC_URI += "file://man-1.5h1-make.patch"')
66 result = bitbake('man -c patch', ignore_status=True)
67 self.delete_recipeinc('man')
68 bitbake('-cclean man')
69 self.assertTrue("ERROR: Function failed: patch_do_patch" in result.output, msg = "Though no man-1.5h1-make.patch file exists, bitbake didn't output any err. message. bitbake output: %s" % result.output)
70
71 @testcase(163)
72 def test_force_task(self):
73 bitbake('m4-native')
74 self.add_command_to_tearDown('bitbake -c clean m4-native')
75 result = bitbake('-C compile m4-native')
76 look_for_tasks = ['do_compile', 'do_install', 'do_populate_sysroot']
77 for task in look_for_tasks:
78 find_task = re.search("m4-native.*%s" % task, result.output)
79 self.assertTrue(find_task, msg = "Couldn't find %s task. bitbake output %s" % (task, result.output))
80
81 @testcase(167)
82 def test_bitbake_g(self):
83 result = bitbake('-g core-image-full-cmdline')
84 for f in ['pn-buildlist', 'pn-depends.dot', 'package-depends.dot', 'task-depends.dot']:
85 self.addCleanup(os.remove, f)
86 self.assertTrue('NOTE: PN build list saved to \'pn-buildlist\'' in result.output, msg = "No dependency \"pn-buildlist\" file was generated for the given task target. bitbake output: %s" % result.output)
87 self.assertTrue('openssh' in ftools.read_file(os.path.join(self.builddir, 'pn-buildlist')), msg = "No \"openssh\" dependency found in pn-buildlist file.")
88
89 @testcase(899)
90 def test_image_manifest(self):
91 bitbake('core-image-minimal')
92 deploydir = get_bb_var("DEPLOY_DIR_IMAGE", target="core-image-minimal")
93 imagename = get_bb_var("IMAGE_LINK_NAME", target="core-image-minimal")
94 manifest = os.path.join(deploydir, imagename + ".manifest")
95 self.assertTrue(os.path.islink(manifest), msg="No manifest file created for image. It should have been created in %s" % manifest)
96
97 @testcase(168)
98 def test_invalid_recipe_src_uri(self):
99 data = 'SRC_URI = "file://invalid"'
100 self.write_recipeinc('man', data)
101 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
102SSTATE_DIR = \"${TOPDIR}/download-selftest\"
103""")
104 bitbake('-ccleanall man')
105 result = bitbake('-c fetch man', ignore_status=True)
106 bitbake('-ccleanall man')
107 self.delete_recipeinc('man')
108 self.assertEqual(result.status, 1, msg="Command succeded when it should have failed. bitbake output: %s" % result.output)
109 self.assertTrue('Fetcher failure: Unable to find file file://invalid anywhere. The paths that were searched were:' in result.output, msg = "\"invalid\" file \
110doesn't exist, yet no error message encountered. bitbake output: %s" % result.output)
111 self.assertTrue('ERROR: Function failed: Fetcher failure for URL: \'file://invalid\'. Unable to fetch URL from any source.' in result.output, msg = "\"invalid\" file \
112doesn't exist, yet fetcher didn't report any error. bitbake output: %s" % result.output)
113
114 @testcase(171)
115 def test_rename_downloaded_file(self):
116 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
117SSTATE_DIR = \"${TOPDIR}/download-selftest\"
118""")
119 data = 'SRC_URI_append = ";downloadfilename=test-aspell.tar.gz"'
120 self.write_recipeinc('aspell', data)
121 bitbake('-ccleanall aspell')
122 result = bitbake('-c fetch aspell', ignore_status=True)
123 self.delete_recipeinc('aspell')
124 self.addCleanup(bitbake, '-ccleanall aspell')
125 self.assertEqual(result.status, 0, msg = "Couldn't fetch aspell. %s" % result.output)
126 self.assertTrue(os.path.isfile(os.path.join(get_bb_var("DL_DIR"), 'test-aspell.tar.gz')), msg = "File rename failed. No corresponding test-aspell.tar.gz file found under %s" % str(get_bb_var("DL_DIR")))
127 self.assertTrue(os.path.isfile(os.path.join(get_bb_var("DL_DIR"), 'test-aspell.tar.gz.done')), "File rename failed. No corresponding test-aspell.tar.gz.done file found under %s" % str(get_bb_var("DL_DIR")))
128
129 @testcase(1028)
130 def test_environment(self):
131 self.append_config("TEST_ENV=\"localconf\"")
132 self.addCleanup(self.remove_config, "TEST_ENV=\"localconf\"")
133 result = runCmd('bitbake -e | grep TEST_ENV=')
134 self.assertTrue('localconf' in result.output, msg = "bitbake didn't report any value for TEST_ENV variable. To test, run 'bitbake -e | grep TEST_ENV='")
135
136 @testcase(1029)
137 def test_dry_run(self):
138 result = runCmd('bitbake -n m4-native')
139 self.assertEqual(0, result.status, "bitbake dry run didn't run as expected. %s" % result.output)
140
141 @testcase(1030)
142 def test_just_parse(self):
143 result = runCmd('bitbake -p')
144 self.assertEqual(0, result.status, "errors encountered when parsing recipes. %s" % result.output)
145
146 @testcase(1031)
147 def test_version(self):
148 result = runCmd('bitbake -s | grep wget')
149 find = re.search("wget *:([0-9a-zA-Z\.\-]+)", result.output)
150 self.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output)
151
152 @testcase(1032)
153 def test_prefile(self):
154 preconf = os.path.join(self.builddir, 'conf/prefile.conf')
155 self.track_for_cleanup(preconf)
156 ftools.write_file(preconf ,"TEST_PREFILE=\"prefile\"")
157 result = runCmd('bitbake -r conf/prefile.conf -e | grep TEST_PREFILE=')
158 self.assertTrue('prefile' in result.output, "Preconfigure file \"prefile.conf\"was not taken into consideration. ")
159 self.append_config("TEST_PREFILE=\"localconf\"")
160 self.addCleanup(self.remove_config, "TEST_PREFILE=\"localconf\"")
161 result = runCmd('bitbake -r conf/prefile.conf -e | grep TEST_PREFILE=')
162 self.assertTrue('localconf' in result.output, "Preconfigure file \"prefile.conf\"was not taken into consideration.")
163
164 @testcase(1033)
165 def test_postfile(self):
166 postconf = os.path.join(self.builddir, 'conf/postfile.conf')
167 self.track_for_cleanup(postconf)
168 ftools.write_file(postconf , "TEST_POSTFILE=\"postfile\"")
169 self.append_config("TEST_POSTFILE=\"localconf\"")
170 self.addCleanup(self.remove_config, "TEST_POSTFILE=\"localconf\"")
171 result = runCmd('bitbake -R conf/postfile.conf -e | grep TEST_POSTFILE=')
172 self.assertTrue('postfile' in result.output, "Postconfigure file \"postfile.conf\"was not taken into consideration.")
173
174 @testcase(1034)
175 def test_checkuri(self):
176 result = runCmd('bitbake -c checkuri m4')
177 self.assertEqual(0, result.status, msg = "\"checkuri\" task was not executed. bitbake output: %s" % result.output)
178
179 @testcase(1035)
180 def test_continue(self):
181 self.write_config("""DL_DIR = \"${TOPDIR}/download-selftest\"
182SSTATE_DIR = \"${TOPDIR}/download-selftest\"
183""")
184 self.write_recipeinc('man',"\ndo_fail_task () {\nexit 1 \n}\n\naddtask do_fail_task before do_fetch\n" )
185 runCmd('bitbake -c cleanall man xcursor-transparent-theme')
186 result = runCmd('bitbake man xcursor-transparent-theme -k', ignore_status=True)
187 errorpos = result.output.find('ERROR: Function failed: do_fail_task')
188 manver = re.search("NOTE: recipe xcursor-transparent-theme-(.*?): task do_unpack: Started", result.output)
189 continuepos = result.output.find('NOTE: recipe xcursor-transparent-theme-%s: task do_unpack: Started' % manver.group(1))
190 self.assertLess(errorpos,continuepos, msg = "bitbake didn't pass do_fail_task. bitbake output: %s" % result.output)
191
192 @testcase(1119)
193 def test_non_gplv3(self):
194 data = 'INCOMPATIBLE_LICENSE = "GPLv3"'
195 conf = os.path.join(self.builddir, 'conf/local.conf')
196 ftools.append_file(conf ,data)
197 self.addCleanup(ftools.remove_from_file, conf ,data)
198 result = bitbake('readline', ignore_status=True)
199 self.assertEqual(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output))
200 self.assertFalse(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv3')))
201 self.assertTrue(os.path.isfile(os.path.join(self.builddir, 'tmp/deploy/licenses/readline/generic_GPLv2')))