summaryrefslogtreecommitdiffstats
path: root/meta/lib/patchtest/tests/test_mbox_bugzilla.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/patchtest/tests/test_mbox_bugzilla.py')
-rw-r--r--meta/lib/patchtest/tests/test_mbox_bugzilla.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/lib/patchtest/tests/test_mbox_bugzilla.py b/meta/lib/patchtest/tests/test_mbox_bugzilla.py
new file mode 100644
index 0000000000..e8de48bb8d
--- /dev/null
+++ b/meta/lib/patchtest/tests/test_mbox_bugzilla.py
@@ -0,0 +1,22 @@
1# Checks related to the patch's bugzilla tag
2#
3# Copyright (C) 2016 Intel Corporation
4#
5# SPDX-License-Identifier: GPL-2.0
6
7import re
8import base
9
10class Bugzilla(base.Base):
11 rexp_detect = re.compile("\[\s?YOCTO.*\]", re.IGNORECASE)
12 rexp_validation = re.compile("\[(\s?YOCTO\s?#\s?(\d+)\s?,?)+\]", re.IGNORECASE)
13
14 def test_bugzilla_entry_format(self):
15 for commit in Bugzilla.commits:
16 for line in commit.commit_message.splitlines():
17 if self.rexp_detect.match(line):
18 if not self.rexp_validation.match(line):
19 self.fail('Yocto Project bugzilla tag is not correctly formatted',
20 'Specify bugzilla ID in commit description with format: "[YOCTO #<bugzilla ID>]"',
21 commit)
22