blob: 722d3cf6383f854f64cb2984cf5959bd045e4e82 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001# Copyright (C) 2017 Intel Corporation
Brad Bishopc342db32019-05-15 21:57:59 -04002#
3# SPDX-License-Identifier: MIT
4#
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6import glob
7import os
8import unittest
Andrew Geissler595f6302022-01-24 19:11:47 +00009import re
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010from checklayer import get_signatures, LayerType, check_command, get_depgraph, compare_signatures
11from checklayer.case import OECheckLayerTestCase
12
13class CommonCheckLayer(OECheckLayerTestCase):
14 def test_readme(self):
Andrew Geissler517393d2023-01-13 08:55:19 -060015 if self.tc.layer['type'] == LayerType.CORE:
16 raise unittest.SkipTest("Core layer's README is top level")
17
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018 # The top-level README file may have a suffix (like README.rst or README.txt).
Brad Bishop79641f22019-09-10 07:20:22 -040019 readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*'))
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020 self.assertTrue(len(readme_files) > 0,
Andrew Geissler595f6302022-01-24 19:11:47 +000021 msg="Layer doesn't contain a README file.")
Brad Bishopd7bf8c12018-02-25 22:55:05 -050022
23 # There might be more than one file matching the file pattern above
24 # (for example, README.rst and README-COPYING.rst). The one with the shortest
25 # name is considered the "main" one.
26 readme_file = sorted(readme_files)[0]
27 data = ''
28 with open(readme_file, 'r') as f:
29 data = f.read()
30 self.assertTrue(data,
31 msg="Layer contains a README file but it is empty.")
32
Andrew Geissler595f6302022-01-24 19:11:47 +000033 # If a layer's README references another README, then the checks below are not valid
34 if re.search('README', data, re.IGNORECASE):
35 return
36
37 self.assertIn('maintainer', data.lower())
38 self.assertIn('patch', data.lower())
39 # Check that there is an email address in the README
40 email_regex = re.compile(r"[^@]+@[^@]+")
41 self.assertTrue(email_regex.match(data))
42
Brad Bishopd7bf8c12018-02-25 22:55:05 -050043 def test_parse(self):
44 check_command('Layer %s failed to parse.' % self.tc.layer['name'],
45 'bitbake -p')
46
47 def test_show_environment(self):
48 check_command('Layer %s failed to show environment.' % self.tc.layer['name'],
49 'bitbake -e')
50
51 def test_world(self):
52 '''
53 "bitbake world" is expected to work. test_signatures does not cover that
54 because it is more lenient and ignores recipes in a world build that
55 are not actually buildable, so here we fail when "bitbake -S none world"
56 fails.
57 '''
58 get_signatures(self.td['builddir'], failsafe=False)
59
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000060 def test_world_inherit_class(self):
61 '''
62 This also does "bitbake -S none world" along with inheriting "yocto-check-layer"
63 class, which can do additional per-recipe test cases.
64 '''
65 msg = []
66 try:
67 get_signatures(self.td['builddir'], failsafe=False, machine=None, extravars='BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS INHERIT" INHERIT="yocto-check-layer"')
68 except RuntimeError as ex:
69 msg.append(str(ex))
70 if msg:
71 msg.insert(0, 'Layer %s failed additional checks from yocto-check-layer.bbclass\nSee below log for specific recipe parsing errors:\n' % \
72 self.tc.layer['name'])
73 self.fail('\n'.join(msg))
74
Brad Bishopd7bf8c12018-02-25 22:55:05 -050075 def test_signatures(self):
76 if self.tc.layer['type'] == LayerType.SOFTWARE and \
77 not self.tc.test_software_layer_signatures:
78 raise unittest.SkipTest("Not testing for signature changes in a software layer %s." \
79 % self.tc.layer['name'])
80
81 curr_sigs, _ = get_signatures(self.td['builddir'], failsafe=True)
82 msg = compare_signatures(self.td['sigs'], curr_sigs)
83 if msg is not None:
84 self.fail('Adding layer %s changed signatures.\n%s' % (self.tc.layer['name'], msg))
Brad Bishop316dfdd2018-06-25 12:45:53 -040085
86 def test_layerseries_compat(self):
87 for collection_name, collection_data in self.tc.layer['collections'].items():
88 self.assertTrue(collection_data['compat'], "Collection %s from layer %s does not set compatible oe-core versions via LAYERSERIES_COMPAT_collection." \
89 % (collection_name, self.tc.layer['name']))