diff options
Diffstat (limited to 'scripts/lib/checklayer/cases/common.py')
-rw-r--r-- | scripts/lib/checklayer/cases/common.py | 70 |
1 files changed, 67 insertions, 3 deletions
diff --git a/scripts/lib/checklayer/cases/common.py b/scripts/lib/checklayer/cases/common.py index fdfb5d18cd..ddead69a7b 100644 --- a/scripts/lib/checklayer/cases/common.py +++ b/scripts/lib/checklayer/cases/common.py | |||
@@ -7,11 +7,14 @@ import glob | |||
7 | import os | 7 | import os |
8 | import unittest | 8 | import unittest |
9 | import re | 9 | import re |
10 | from checklayer import get_signatures, LayerType, check_command, get_depgraph, compare_signatures | 10 | from checklayer import get_signatures, LayerType, check_command, compare_signatures, get_git_toplevel |
11 | from checklayer.case import OECheckLayerTestCase | 11 | from checklayer.case import OECheckLayerTestCase |
12 | 12 | ||
13 | class CommonCheckLayer(OECheckLayerTestCase): | 13 | class CommonCheckLayer(OECheckLayerTestCase): |
14 | def test_readme(self): | 14 | def test_readme(self): |
15 | if self.tc.layer['type'] == LayerType.CORE: | ||
16 | raise unittest.SkipTest("Core layer's README is top level") | ||
17 | |||
15 | # The top-level README file may have a suffix (like README.rst or README.txt). | 18 | # The top-level README file may have a suffix (like README.rst or README.txt). |
16 | readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*')) | 19 | readme_files = glob.glob(os.path.join(self.tc.layer['path'], '[Rr][Ee][Aa][Dd][Mm][Ee]*')) |
17 | self.assertTrue(len(readme_files) > 0, | 20 | self.assertTrue(len(readme_files) > 0, |
@@ -31,12 +34,44 @@ class CommonCheckLayer(OECheckLayerTestCase): | |||
31 | if re.search('README', data, re.IGNORECASE): | 34 | if re.search('README', data, re.IGNORECASE): |
32 | return | 35 | return |
33 | 36 | ||
34 | self.assertIn('maintainer', data) | 37 | self.assertIn('maintainer', data.lower()) |
35 | self.assertIn('patch',data) | 38 | self.assertIn('patch', data.lower()) |
36 | # Check that there is an email address in the README | 39 | # Check that there is an email address in the README |
37 | email_regex = re.compile(r"[^@]+@[^@]+") | 40 | email_regex = re.compile(r"[^@]+@[^@]+") |
38 | self.assertTrue(email_regex.match(data)) | 41 | self.assertTrue(email_regex.match(data)) |
39 | 42 | ||
43 | def find_file_by_name(self, globs): | ||
44 | """ | ||
45 | Utility function to find a file that matches the specified list of | ||
46 | globs, in either the layer directory itself or the repository top-level | ||
47 | directory. | ||
48 | """ | ||
49 | directories = [self.tc.layer["path"]] | ||
50 | toplevel = get_git_toplevel(directories[0]) | ||
51 | if toplevel: | ||
52 | directories.append(toplevel) | ||
53 | |||
54 | for path in directories: | ||
55 | for name in globs: | ||
56 | files = glob.glob(os.path.join(path, name)) | ||
57 | if files: | ||
58 | return sorted(files)[0] | ||
59 | return None | ||
60 | |||
61 | def test_security(self): | ||
62 | """ | ||
63 | Test that the layer has a SECURITY.md (or similar) file, either in the | ||
64 | layer itself or at the top of the containing git repository. | ||
65 | """ | ||
66 | if self.tc.layer["type"] == LayerType.CORE: | ||
67 | raise unittest.SkipTest("Core layer's SECURITY is top level") | ||
68 | |||
69 | filename = self.find_file_by_name(("SECURITY", "SECURITY.*")) | ||
70 | self.assertTrue(filename, msg="Layer doesn't contain a SECURITY.md file.") | ||
71 | |||
72 | size = os.path.getsize(filename) | ||
73 | self.assertGreater(size, 0, msg=f"{filename} has no content.") | ||
74 | |||
40 | def test_parse(self): | 75 | def test_parse(self): |
41 | check_command('Layer %s failed to parse.' % self.tc.layer['name'], | 76 | check_command('Layer %s failed to parse.' % self.tc.layer['name'], |
42 | 'bitbake -p') | 77 | 'bitbake -p') |
@@ -54,6 +89,35 @@ class CommonCheckLayer(OECheckLayerTestCase): | |||
54 | ''' | 89 | ''' |
55 | get_signatures(self.td['builddir'], failsafe=False) | 90 | get_signatures(self.td['builddir'], failsafe=False) |
56 | 91 | ||
92 | def test_world_inherit_class(self): | ||
93 | ''' | ||
94 | This also does "bitbake -S none world" along with inheriting "yocto-check-layer" | ||
95 | class, which can do additional per-recipe test cases. | ||
96 | ''' | ||
97 | msg = [] | ||
98 | try: | ||
99 | get_signatures(self.td['builddir'], failsafe=False, machine=None, extravars='BB_ENV_PASSTHROUGH_ADDITIONS="$BB_ENV_PASSTHROUGH_ADDITIONS INHERIT" INHERIT="yocto-check-layer"') | ||
100 | except RuntimeError as ex: | ||
101 | msg.append(str(ex)) | ||
102 | if msg: | ||
103 | msg.insert(0, 'Layer %s failed additional checks from yocto-check-layer.bbclass\nSee below log for specific recipe parsing errors:\n' % \ | ||
104 | self.tc.layer['name']) | ||
105 | self.fail('\n'.join(msg)) | ||
106 | |||
107 | def test_patches_upstream_status(self): | ||
108 | import sys | ||
109 | sys.path.append(os.path.join(sys.path[0], '../../../../meta/lib/')) | ||
110 | import oe.qa | ||
111 | patches = [] | ||
112 | for dirpath, dirs, files in os.walk(self.tc.layer['path']): | ||
113 | for filename in files: | ||
114 | if filename.endswith(".patch"): | ||
115 | ppath = os.path.join(dirpath, filename) | ||
116 | if oe.qa.check_upstream_status(ppath): | ||
117 | patches.append(ppath) | ||
118 | self.assertEqual(len(patches), 0 , \ | ||
119 | msg="Found following patches with malformed or missing upstream status:\n%s" % '\n'.join([str(patch) for patch in patches])) | ||
120 | |||
57 | def test_signatures(self): | 121 | def test_signatures(self): |
58 | if self.tc.layer['type'] == LayerType.SOFTWARE and \ | 122 | if self.tc.layer['type'] == LayerType.SOFTWARE and \ |
59 | not self.tc.test_software_layer_signatures: | 123 | not self.tc.test_software_layer_signatures: |