Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 3 | # |
| 4 | # Copyright 2017 Google, Inc |
| 5 | # |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 6 | |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 7 | """Functional tests for checking that patman behaves correctly""" |
| 8 | |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 9 | import os |
| 10 | import re |
| 11 | import shutil |
| 12 | import sys |
| 13 | import tempfile |
| 14 | import unittest |
| 15 | |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 16 | |
| 17 | from patman.commit import Commit |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 18 | from patman import control |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 19 | from patman import gitutil |
| 20 | from patman import patchstream |
Simon Glass | 47f6295 | 2020-10-29 21:46:26 -0600 | [diff] [blame] | 21 | from patman.patchstream import PatchStream |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 22 | from patman.series import Series |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 23 | from patman import settings |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 24 | from patman import terminal |
Simon Glass | bf77667 | 2020-04-17 18:09:04 -0600 | [diff] [blame] | 25 | from patman import tools |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 26 | from patman.test_util import capture_sys_output |
| 27 | |
| 28 | try: |
| 29 | import pygit2 |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 30 | HAVE_PYGIT2 = True |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 31 | from patman import status |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 32 | except ModuleNotFoundError: |
| 33 | HAVE_PYGIT2 = False |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 34 | |
| 35 | |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 36 | class TestFunctional(unittest.TestCase): |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 37 | """Functional tests for checking that patman behaves correctly""" |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 38 | leb = (b'Lord Edmund Blackadd\xc3\xabr <weasel@blackadder.org>'. |
| 39 | decode('utf-8')) |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 40 | fred = 'Fred Bloggs <f.bloggs@napier.net>' |
| 41 | joe = 'Joe Bloggs <joe@napierwallies.co.nz>' |
| 42 | mary = 'Mary Bloggs <mary@napierwallies.co.nz>' |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 43 | commits = None |
| 44 | patches = None |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 45 | |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 46 | def setUp(self): |
| 47 | self.tmpdir = tempfile.mkdtemp(prefix='patman.') |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 48 | self.gitdir = os.path.join(self.tmpdir, 'git') |
| 49 | self.repo = None |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 50 | |
| 51 | def tearDown(self): |
| 52 | shutil.rmtree(self.tmpdir) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 53 | terminal.SetPrintTestMode(False) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 54 | |
| 55 | @staticmethod |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 56 | def _get_path(fname): |
| 57 | """Get the path to a test file |
| 58 | |
| 59 | Args: |
| 60 | fname (str): Filename to obtain |
| 61 | |
| 62 | Returns: |
| 63 | str: Full path to file in the test directory |
| 64 | """ |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 65 | return os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), |
| 66 | 'test', fname) |
| 67 | |
| 68 | @classmethod |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 69 | def _get_text(cls, fname): |
| 70 | """Read a file as text |
| 71 | |
| 72 | Args: |
| 73 | fname (str): Filename to read |
| 74 | |
| 75 | Returns: |
| 76 | str: Contents of file |
| 77 | """ |
| 78 | return open(cls._get_path(fname), encoding='utf-8').read() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 79 | |
| 80 | @classmethod |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 81 | def _get_patch_name(cls, subject): |
| 82 | """Get the filename of a patch given its subject |
| 83 | |
| 84 | Args: |
| 85 | subject (str): Patch subject |
| 86 | |
| 87 | Returns: |
| 88 | str: Filename for that patch |
| 89 | """ |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 90 | fname = re.sub('[ :]', '-', subject) |
| 91 | return fname.replace('--', '-') |
| 92 | |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 93 | def _create_patches_for_test(self, series): |
| 94 | """Create patch files for use by tests |
| 95 | |
| 96 | This copies patch files from the test directory as needed by the series |
| 97 | |
| 98 | Args: |
| 99 | series (Series): Series containing commits to convert |
| 100 | |
| 101 | Returns: |
| 102 | tuple: |
| 103 | str: Cover-letter filename, or None if none |
| 104 | fname_list: list of str, each a patch filename |
| 105 | """ |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 106 | cover_fname = None |
| 107 | fname_list = [] |
| 108 | for i, commit in enumerate(series.commits): |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 109 | clean_subject = self._get_patch_name(commit.subject) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 110 | src_fname = '%04d-%s.patch' % (i + 1, clean_subject[:52]) |
| 111 | fname = os.path.join(self.tmpdir, src_fname) |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 112 | shutil.copy(self._get_path(src_fname), fname) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 113 | fname_list.append(fname) |
| 114 | if series.get('cover'): |
| 115 | src_fname = '0000-cover-letter.patch' |
| 116 | cover_fname = os.path.join(self.tmpdir, src_fname) |
| 117 | fname = os.path.join(self.tmpdir, src_fname) |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 118 | shutil.copy(self._get_path(src_fname), fname) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 119 | |
| 120 | return cover_fname, fname_list |
| 121 | |
| 122 | def testBasic(self): |
| 123 | """Tests the basic flow of patman |
| 124 | |
| 125 | This creates a series from some hard-coded patches build from a simple |
| 126 | tree with the following metadata in the top commit: |
| 127 | |
| 128 | Series-to: u-boot |
| 129 | Series-prefix: RFC |
| 130 | Series-cc: Stefan Brüns <stefan.bruens@rwth-aachen.de> |
| 131 | Cover-letter-cc: Lord Mëlchett <clergy@palace.gov> |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 132 | Series-version: 3 |
| 133 | Patch-cc: fred |
| 134 | Series-process-log: sort, uniq |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 135 | Series-changes: 4 |
| 136 | - Some changes |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 137 | - Multi |
| 138 | line |
| 139 | change |
| 140 | |
| 141 | Commit-changes: 2 |
| 142 | - Changes only for this commit |
| 143 | |
| 144 | Cover-changes: 4 |
| 145 | - Some notes for the cover letter |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 146 | |
| 147 | Cover-letter: |
| 148 | test: A test patch series |
| 149 | This is a test of how the cover |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 150 | letter |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 151 | works |
| 152 | END |
| 153 | |
| 154 | and this in the first commit: |
| 155 | |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 156 | Commit-changes: 2 |
| 157 | - second revision change |
| 158 | |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 159 | Series-notes: |
| 160 | some notes |
| 161 | about some things |
| 162 | from the first commit |
| 163 | END |
| 164 | |
| 165 | Commit-notes: |
| 166 | Some notes about |
| 167 | the first commit |
| 168 | END |
| 169 | |
| 170 | with the following commands: |
| 171 | |
| 172 | git log -n2 --reverse >/path/to/tools/patman/test/test01.txt |
| 173 | git format-patch --subject-prefix RFC --cover-letter HEAD~2 |
| 174 | mv 00* /path/to/tools/patman/test |
| 175 | |
| 176 | It checks these aspects: |
| 177 | - git log can be processed by patchstream |
| 178 | - emailing patches uses the correct command |
| 179 | - CC file has information on each commit |
| 180 | - cover letter has the expected text and subject |
| 181 | - each patch has the correct subject |
| 182 | - dry-run information prints out correctly |
| 183 | - unicode is handled correctly |
| 184 | - Series-to, Series-cc, Series-prefix, Cover-letter |
| 185 | - Cover-letter-cc, Series-version, Series-changes, Series-notes |
| 186 | - Commit-notes |
| 187 | """ |
| 188 | process_tags = True |
| 189 | ignore_bad_tags = True |
Simon Glass | e6dca5e | 2019-05-14 15:53:53 -0600 | [diff] [blame] | 190 | stefan = b'Stefan Br\xc3\xbcns <stefan.bruens@rwth-aachen.de>'.decode('utf-8') |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 191 | rick = 'Richard III <richard@palace.gov>' |
Simon Glass | e6dca5e | 2019-05-14 15:53:53 -0600 | [diff] [blame] | 192 | mel = b'Lord M\xc3\xablchett <clergy@palace.gov>'.decode('utf-8') |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 193 | add_maintainers = [stefan, rick] |
| 194 | dry_run = True |
| 195 | in_reply_to = mel |
| 196 | count = 2 |
| 197 | settings.alias = { |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 198 | 'fdt': ['simon'], |
| 199 | 'u-boot': ['u-boot@lists.denx.de'], |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 200 | 'simon': [self.leb], |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 201 | 'fred': [self.fred], |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 202 | } |
| 203 | |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 204 | text = self._get_text('test01.txt') |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 205 | series = patchstream.get_metadata_for_test(text) |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 206 | cover_fname, args = self._create_patches_for_test(series) |
Simon Glass | 366954f | 2020-10-29 21:46:14 -0600 | [diff] [blame] | 207 | with capture_sys_output() as out: |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 208 | patchstream.fix_patches(series, args) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 209 | if cover_fname and series.get('cover'): |
Simon Glass | d93720e | 2020-10-29 21:46:19 -0600 | [diff] [blame] | 210 | patchstream.insert_cover_letter(cover_fname, series, count) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 211 | series.DoChecks() |
| 212 | cc_file = series.MakeCcFile(process_tags, cover_fname, |
Chris Packham | 4fb3502 | 2018-06-07 20:45:06 +1200 | [diff] [blame] | 213 | not ignore_bad_tags, add_maintainers, |
| 214 | None) |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 215 | cmd = gitutil.EmailPatches( |
| 216 | series, cover_fname, args, dry_run, not ignore_bad_tags, |
| 217 | cc_file, in_reply_to=in_reply_to, thread=None) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 218 | series.ShowActions(args, cmd, process_tags) |
Simon Glass | 272cd85 | 2019-10-31 07:42:51 -0600 | [diff] [blame] | 219 | cc_lines = open(cc_file, encoding='utf-8').read().splitlines() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 220 | os.remove(cc_file) |
| 221 | |
Simon Glass | 8c17f8c | 2020-10-29 21:46:29 -0600 | [diff] [blame] | 222 | lines = iter(out[0].getvalue().splitlines()) |
| 223 | self.assertEqual('Cleaned %s patches' % len(series.commits), |
| 224 | next(lines)) |
| 225 | self.assertEqual('Change log missing for v2', next(lines)) |
| 226 | self.assertEqual('Change log missing for v3', next(lines)) |
| 227 | self.assertEqual('Change log for unknown version v4', next(lines)) |
| 228 | self.assertEqual("Alias 'pci' not found", next(lines)) |
| 229 | self.assertIn('Dry run', next(lines)) |
| 230 | self.assertEqual('', next(lines)) |
| 231 | self.assertIn('Send a total of %d patches' % count, next(lines)) |
| 232 | prev = next(lines) |
| 233 | for i, commit in enumerate(series.commits): |
| 234 | self.assertEqual(' %s' % args[i], prev) |
| 235 | while True: |
| 236 | prev = next(lines) |
| 237 | if 'Cc:' not in prev: |
| 238 | break |
| 239 | self.assertEqual('To: u-boot@lists.denx.de', prev) |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 240 | self.assertEqual('Cc: %s' % stefan, next(lines)) |
Simon Glass | 8c17f8c | 2020-10-29 21:46:29 -0600 | [diff] [blame] | 241 | self.assertEqual('Version: 3', next(lines)) |
| 242 | self.assertEqual('Prefix:\t RFC', next(lines)) |
| 243 | self.assertEqual('Cover: 4 lines', next(lines)) |
| 244 | self.assertEqual(' Cc: %s' % self.fred, next(lines)) |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 245 | self.assertEqual(' Cc: %s' % self.leb, |
Simon Glass | 8c17f8c | 2020-10-29 21:46:29 -0600 | [diff] [blame] | 246 | next(lines)) |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 247 | self.assertEqual(' Cc: %s' % mel, next(lines)) |
Simon Glass | 8c17f8c | 2020-10-29 21:46:29 -0600 | [diff] [blame] | 248 | self.assertEqual(' Cc: %s' % rick, next(lines)) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 249 | expected = ('Git command: git send-email --annotate ' |
| 250 | '--in-reply-to="%s" --to "u-boot@lists.denx.de" ' |
Simon Glass | 4600767 | 2020-11-03 13:54:10 -0700 | [diff] [blame] | 251 | '--cc "%s" --cc-cmd "%s send --cc-cmd %s" %s %s' |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 252 | % (in_reply_to, stefan, sys.argv[0], cc_file, cover_fname, |
Simon Glass | e6dca5e | 2019-05-14 15:53:53 -0600 | [diff] [blame] | 253 | ' '.join(args))) |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 254 | self.assertEqual(expected, next(lines)) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 255 | |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 256 | self.assertEqual(('%s %s\0%s' % (args[0], rick, stefan)), cc_lines[0]) |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 257 | self.assertEqual( |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 258 | '%s %s\0%s\0%s\0%s' % (args[1], self.fred, self.leb, rick, stefan), |
Simon Glass | fc0056e | 2020-11-08 20:36:18 -0700 | [diff] [blame^] | 259 | cc_lines[1]) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 260 | |
| 261 | expected = ''' |
| 262 | This is a test of how the cover |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 263 | letter |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 264 | works |
| 265 | |
| 266 | some notes |
| 267 | about some things |
| 268 | from the first commit |
| 269 | |
| 270 | Changes in v4: |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 271 | - Multi |
| 272 | line |
| 273 | change |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 274 | - Some changes |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 275 | - Some notes for the cover letter |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 276 | |
| 277 | Simon Glass (2): |
| 278 | pci: Correct cast for sandbox |
Siva Durga Prasad Paladugu | 12308b1 | 2018-07-16 15:56:11 +0530 | [diff] [blame] | 279 | fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 280 | |
| 281 | cmd/pci.c | 3 ++- |
| 282 | fs/fat/fat.c | 1 + |
| 283 | lib/efi_loader/efi_memory.c | 1 + |
| 284 | lib/fdtdec.c | 3 ++- |
| 285 | 4 files changed, 6 insertions(+), 2 deletions(-) |
| 286 | |
| 287 | --\x20 |
| 288 | 2.7.4 |
| 289 | |
| 290 | ''' |
Simon Glass | 272cd85 | 2019-10-31 07:42:51 -0600 | [diff] [blame] | 291 | lines = open(cover_fname, encoding='utf-8').read().splitlines() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 292 | self.assertEqual( |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 293 | 'Subject: [RFC PATCH v3 0/2] test: A test patch series', |
| 294 | lines[3]) |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 295 | self.assertEqual(expected.splitlines(), lines[7:]) |
| 296 | |
| 297 | for i, fname in enumerate(args): |
Simon Glass | 272cd85 | 2019-10-31 07:42:51 -0600 | [diff] [blame] | 298 | lines = open(fname, encoding='utf-8').read().splitlines() |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 299 | subject = [line for line in lines if line.startswith('Subject')] |
| 300 | self.assertEqual('Subject: [RFC %d/%d]' % (i + 1, count), |
| 301 | subject[0][:18]) |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 302 | |
| 303 | # Check that we got our commit notes |
| 304 | start = 0 |
| 305 | expected = '' |
| 306 | |
Simon Glass | 6e87ae1 | 2017-05-29 15:31:31 -0600 | [diff] [blame] | 307 | if i == 0: |
Sean Anderson | dc03ba4 | 2020-05-04 16:28:36 -0400 | [diff] [blame] | 308 | start = 17 |
| 309 | expected = '''--- |
| 310 | Some notes about |
| 311 | the first commit |
| 312 | |
| 313 | (no changes since v2) |
| 314 | |
| 315 | Changes in v2: |
| 316 | - second revision change''' |
| 317 | elif i == 1: |
| 318 | start = 17 |
| 319 | expected = '''--- |
| 320 | |
| 321 | Changes in v4: |
| 322 | - Multi |
| 323 | line |
| 324 | change |
| 325 | - Some changes |
| 326 | |
| 327 | Changes in v2: |
| 328 | - Changes only for this commit''' |
| 329 | |
| 330 | if expected: |
| 331 | expected = expected.splitlines() |
| 332 | self.assertEqual(expected, lines[start:(start+len(expected))]) |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 333 | |
| 334 | def make_commit_with_file(self, subject, body, fname, text): |
| 335 | """Create a file and add it to the git repo with a new commit |
| 336 | |
| 337 | Args: |
| 338 | subject (str): Subject for the commit |
| 339 | body (str): Body text of the commit |
| 340 | fname (str): Filename of file to create |
| 341 | text (str): Text to put into the file |
| 342 | """ |
| 343 | path = os.path.join(self.gitdir, fname) |
| 344 | tools.WriteFile(path, text, binary=False) |
| 345 | index = self.repo.index |
| 346 | index.add(fname) |
Simon Glass | 427b028 | 2020-10-29 21:46:13 -0600 | [diff] [blame] | 347 | author = pygit2.Signature('Test user', 'test@email.com') |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 348 | committer = author |
| 349 | tree = index.write_tree() |
| 350 | message = subject + '\n' + body |
| 351 | self.repo.create_commit('HEAD', author, committer, message, tree, |
| 352 | [self.repo.head.target]) |
| 353 | |
| 354 | def make_git_tree(self): |
| 355 | """Make a simple git tree suitable for testing |
| 356 | |
| 357 | It has three branches: |
| 358 | 'base' has two commits: PCI, main |
| 359 | 'first' has base as upstream and two more commits: I2C, SPI |
| 360 | 'second' has base as upstream and three more: video, serial, bootm |
| 361 | |
| 362 | Returns: |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 363 | pygit2.Repository: repository |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 364 | """ |
| 365 | repo = pygit2.init_repository(self.gitdir) |
| 366 | self.repo = repo |
| 367 | new_tree = repo.TreeBuilder().write() |
| 368 | |
| 369 | author = pygit2.Signature('Test user', 'test@email.com') |
| 370 | committer = author |
Simon Glass | fca9911 | 2020-10-29 21:46:15 -0600 | [diff] [blame] | 371 | _ = repo.create_commit('HEAD', author, committer, 'Created master', |
| 372 | new_tree, []) |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 373 | |
| 374 | self.make_commit_with_file('Initial commit', ''' |
| 375 | Add a README |
| 376 | |
| 377 | ''', 'README', '''This is the README file |
| 378 | describing this project |
| 379 | in very little detail''') |
| 380 | |
| 381 | self.make_commit_with_file('pci: PCI implementation', ''' |
| 382 | Here is a basic PCI implementation |
| 383 | |
| 384 | ''', 'pci.c', '''This is a file |
| 385 | it has some contents |
| 386 | and some more things''') |
| 387 | self.make_commit_with_file('main: Main program', ''' |
| 388 | Hello here is the second commit. |
| 389 | ''', 'main.c', '''This is the main file |
| 390 | there is very little here |
| 391 | but we can always add more later |
| 392 | if we want to |
| 393 | |
| 394 | Series-to: u-boot |
| 395 | Series-cc: Barry Crump <bcrump@whataroa.nz> |
| 396 | ''') |
| 397 | base_target = repo.revparse_single('HEAD') |
| 398 | self.make_commit_with_file('i2c: I2C things', ''' |
| 399 | This has some stuff to do with I2C |
| 400 | ''', 'i2c.c', '''And this is the file contents |
| 401 | with some I2C-related things in it''') |
| 402 | self.make_commit_with_file('spi: SPI fixes', ''' |
| 403 | SPI needs some fixes |
| 404 | and here they are |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 405 | |
| 406 | Signed-off-by: %s |
| 407 | |
| 408 | Series-to: u-boot |
| 409 | Commit-notes: |
| 410 | title of the series |
| 411 | This is the cover letter for the series |
| 412 | with various details |
| 413 | END |
| 414 | ''' % self.leb, 'spi.c', '''Some fixes for SPI in this |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 415 | file to make SPI work |
| 416 | better than before''') |
| 417 | first_target = repo.revparse_single('HEAD') |
| 418 | |
| 419 | target = repo.revparse_single('HEAD~2') |
| 420 | repo.reset(target.oid, pygit2.GIT_CHECKOUT_FORCE) |
| 421 | self.make_commit_with_file('video: Some video improvements', ''' |
| 422 | Fix up the video so that |
| 423 | it looks more purple. Purple is |
| 424 | a very nice colour. |
| 425 | ''', 'video.c', '''More purple here |
| 426 | Purple and purple |
| 427 | Even more purple |
| 428 | Could not be any more purple''') |
| 429 | self.make_commit_with_file('serial: Add a serial driver', ''' |
| 430 | Here is the serial driver |
| 431 | for my chip. |
| 432 | |
| 433 | Cover-letter: |
| 434 | Series for my board |
| 435 | This series implements support |
| 436 | for my glorious board. |
| 437 | END |
Simon Glass | f9e4284 | 2020-10-29 21:46:16 -0600 | [diff] [blame] | 438 | Series-links: 183237 |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 439 | ''', 'serial.c', '''The code for the |
| 440 | serial driver is here''') |
| 441 | self.make_commit_with_file('bootm: Make it boot', ''' |
| 442 | This makes my board boot |
| 443 | with a fix to the bootm |
| 444 | command |
| 445 | ''', 'bootm.c', '''Fix up the bootm |
| 446 | command to make the code as |
| 447 | complicated as possible''') |
| 448 | second_target = repo.revparse_single('HEAD') |
| 449 | |
| 450 | repo.branches.local.create('first', first_target) |
| 451 | repo.config.set_multivar('branch.first.remote', '', '.') |
| 452 | repo.config.set_multivar('branch.first.merge', '', 'refs/heads/base') |
| 453 | |
| 454 | repo.branches.local.create('second', second_target) |
| 455 | repo.config.set_multivar('branch.second.remote', '', '.') |
| 456 | repo.config.set_multivar('branch.second.merge', '', 'refs/heads/base') |
| 457 | |
| 458 | repo.branches.local.create('base', base_target) |
| 459 | return repo |
| 460 | |
| 461 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 462 | def testBranch(self): |
| 463 | """Test creating patches from a branch""" |
| 464 | repo = self.make_git_tree() |
| 465 | target = repo.lookup_reference('refs/heads/first') |
| 466 | self.repo.checkout(target, strategy=pygit2.GIT_CHECKOUT_FORCE) |
| 467 | control.setup() |
| 468 | try: |
| 469 | orig_dir = os.getcwd() |
| 470 | os.chdir(self.gitdir) |
| 471 | |
| 472 | # Check that it can detect the current branch |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 473 | self.assertEqual(2, gitutil.CountCommitsToBranch(None)) |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 474 | col = terminal.Color() |
| 475 | with capture_sys_output() as _: |
| 476 | _, cover_fname, patch_files = control.prepare_patches( |
Simon Glass | 137947e | 2020-07-05 21:41:52 -0600 | [diff] [blame] | 477 | col, branch=None, count=-1, start=0, end=0, |
| 478 | ignore_binary=False) |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 479 | self.assertIsNone(cover_fname) |
| 480 | self.assertEqual(2, len(patch_files)) |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 481 | |
| 482 | # Check that it can detect a different branch |
| 483 | self.assertEqual(3, gitutil.CountCommitsToBranch('second')) |
| 484 | with capture_sys_output() as _: |
| 485 | _, cover_fname, patch_files = control.prepare_patches( |
Simon Glass | 137947e | 2020-07-05 21:41:52 -0600 | [diff] [blame] | 486 | col, branch='second', count=-1, start=0, end=0, |
Simon Glass | 262130f | 2020-07-05 21:41:51 -0600 | [diff] [blame] | 487 | ignore_binary=False) |
| 488 | self.assertIsNotNone(cover_fname) |
| 489 | self.assertEqual(3, len(patch_files)) |
Simon Glass | 137947e | 2020-07-05 21:41:52 -0600 | [diff] [blame] | 490 | |
| 491 | # Check that it can skip patches at the end |
| 492 | with capture_sys_output() as _: |
| 493 | _, cover_fname, patch_files = control.prepare_patches( |
| 494 | col, branch='second', count=-1, start=0, end=1, |
| 495 | ignore_binary=False) |
| 496 | self.assertIsNotNone(cover_fname) |
| 497 | self.assertEqual(2, len(patch_files)) |
Simon Glass | fd70986 | 2020-07-05 21:41:50 -0600 | [diff] [blame] | 498 | finally: |
| 499 | os.chdir(orig_dir) |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 500 | |
| 501 | def testTags(self): |
| 502 | """Test collection of tags in a patchstream""" |
| 503 | text = '''This is a patch |
| 504 | |
| 505 | Signed-off-by: Terminator |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 506 | Reviewed-by: %s |
| 507 | Reviewed-by: %s |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 508 | Tested-by: %s |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 509 | ''' % (self.joe, self.mary, self.leb) |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 510 | pstrm = PatchStream.process_text(text) |
| 511 | self.assertEqual(pstrm.commit.rtags, { |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 512 | 'Reviewed-by': {self.joe, self.mary}, |
Simon Glass | 7457051 | 2020-10-29 21:46:27 -0600 | [diff] [blame] | 513 | 'Tested-by': {self.leb}}) |
Simon Glass | 4af9987 | 2020-10-29 21:46:28 -0600 | [diff] [blame] | 514 | |
| 515 | def testMissingEnd(self): |
| 516 | """Test a missing END tag""" |
| 517 | text = '''This is a patch |
| 518 | |
| 519 | Cover-letter: |
| 520 | This is the title |
| 521 | missing END after this line |
| 522 | Signed-off-by: Fred |
| 523 | ''' |
| 524 | pstrm = PatchStream.process_text(text) |
| 525 | self.assertEqual(["Missing 'END' in section 'cover'"], |
| 526 | pstrm.commit.warn) |
| 527 | |
| 528 | def testMissingBlankLine(self): |
| 529 | """Test a missing blank line after a tag""" |
| 530 | text = '''This is a patch |
| 531 | |
| 532 | Series-changes: 2 |
| 533 | - First line of changes |
| 534 | - Missing blank line after this line |
| 535 | Signed-off-by: Fred |
| 536 | ''' |
| 537 | pstrm = PatchStream.process_text(text) |
| 538 | self.assertEqual(["Missing 'blank line' in section 'Series-changes'"], |
| 539 | pstrm.commit.warn) |
| 540 | |
| 541 | def testInvalidCommitTag(self): |
| 542 | """Test an invalid Commit-xxx tag""" |
| 543 | text = '''This is a patch |
| 544 | |
| 545 | Commit-fred: testing |
| 546 | ''' |
| 547 | pstrm = PatchStream.process_text(text) |
| 548 | self.assertEqual(["Line 3: Ignoring Commit-fred"], pstrm.commit.warn) |
| 549 | |
| 550 | def testSelfTest(self): |
| 551 | """Test a tested by tag by this user""" |
| 552 | test_line = 'Tested-by: %s@napier.com' % os.getenv('USER') |
| 553 | text = '''This is a patch |
| 554 | |
| 555 | %s |
| 556 | ''' % test_line |
| 557 | pstrm = PatchStream.process_text(text) |
| 558 | self.assertEqual(["Ignoring '%s'" % test_line], pstrm.commit.warn) |
| 559 | |
| 560 | def testSpaceBeforeTab(self): |
| 561 | """Test a space before a tab""" |
| 562 | text = '''This is a patch |
| 563 | |
| 564 | + \tSomething |
| 565 | ''' |
| 566 | pstrm = PatchStream.process_text(text) |
| 567 | self.assertEqual(["Line 3/0 has space before tab"], pstrm.commit.warn) |
| 568 | |
| 569 | def testLinesAfterTest(self): |
| 570 | """Test detecting lines after TEST= line""" |
| 571 | text = '''This is a patch |
| 572 | |
| 573 | TEST=sometest |
| 574 | more lines |
| 575 | here |
| 576 | ''' |
| 577 | pstrm = PatchStream.process_text(text) |
| 578 | self.assertEqual(["Found 2 lines after TEST="], pstrm.commit.warn) |
| 579 | |
| 580 | def testBlankLineAtEnd(self): |
| 581 | """Test detecting a blank line at the end of a file""" |
| 582 | text = '''This is a patch |
| 583 | |
| 584 | diff --git a/lib/fdtdec.c b/lib/fdtdec.c |
| 585 | index c072e54..942244f 100644 |
| 586 | --- a/lib/fdtdec.c |
| 587 | +++ b/lib/fdtdec.c |
| 588 | @@ -1200,7 +1200,8 @@ int fdtdec_setup_mem_size_base(void) |
| 589 | } |
| 590 | |
| 591 | gd->ram_size = (phys_size_t)(res.end - res.start + 1); |
| 592 | - debug("%s: Initial DRAM size %llx\n", __func__, (u64)gd->ram_size); |
| 593 | + debug("%s: Initial DRAM size %llx\n", __func__, |
| 594 | + (unsigned long long)gd->ram_size); |
| 595 | + |
| 596 | diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c |
| 597 | |
| 598 | -- |
| 599 | 2.7.4 |
| 600 | |
| 601 | ''' |
| 602 | pstrm = PatchStream.process_text(text) |
| 603 | self.assertEqual( |
| 604 | ["Found possible blank line(s) at end of file 'lib/fdtdec.c'"], |
| 605 | pstrm.commit.warn) |
Simon Glass | be051c0 | 2020-10-29 21:46:34 -0600 | [diff] [blame] | 606 | |
| 607 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 608 | def testNoUpstream(self): |
| 609 | """Test CountCommitsToBranch when there is no upstream""" |
| 610 | repo = self.make_git_tree() |
| 611 | target = repo.lookup_reference('refs/heads/base') |
| 612 | self.repo.checkout(target, strategy=pygit2.GIT_CHECKOUT_FORCE) |
| 613 | |
| 614 | # Check that it can detect the current branch |
| 615 | try: |
| 616 | orig_dir = os.getcwd() |
| 617 | os.chdir(self.gitdir) |
| 618 | with self.assertRaises(ValueError) as exc: |
| 619 | gitutil.CountCommitsToBranch(None) |
| 620 | self.assertIn( |
| 621 | "Failed to determine upstream: fatal: no upstream configured for branch 'base'", |
| 622 | str(exc.exception)) |
| 623 | finally: |
| 624 | os.chdir(orig_dir) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 625 | |
| 626 | @staticmethod |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 627 | def _fake_patchwork(url, subpath): |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 628 | """Fake Patchwork server for the function below |
| 629 | |
| 630 | This handles accessing a series, providing a list consisting of a |
| 631 | single patch |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 632 | |
| 633 | Args: |
| 634 | url (str): URL of patchwork server |
| 635 | subpath (str): URL subpath to use |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 636 | """ |
| 637 | re_series = re.match(r'series/(\d*)/$', subpath) |
| 638 | if re_series: |
| 639 | series_num = re_series.group(1) |
| 640 | if series_num == '1234': |
| 641 | return {'patches': [ |
| 642 | {'id': '1', 'name': 'Some patch'}]} |
| 643 | raise ValueError('Fake Patchwork does not understand: %s' % subpath) |
| 644 | |
| 645 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 646 | def testStatusMismatch(self): |
| 647 | """Test Patchwork patches not matching the series""" |
| 648 | series = Series() |
| 649 | |
| 650 | with capture_sys_output() as (_, err): |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 651 | status.collect_patches(series, 1234, None, self._fake_patchwork) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 652 | self.assertIn('Warning: Patchwork reports 1 patches, series has 0', |
| 653 | err.getvalue()) |
| 654 | |
| 655 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 656 | def testStatusReadPatch(self): |
| 657 | """Test handling a single patch in Patchwork""" |
| 658 | series = Series() |
| 659 | series.commits = [Commit('abcd')] |
| 660 | |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 661 | patches = status.collect_patches(series, 1234, None, |
| 662 | self._fake_patchwork) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 663 | self.assertEqual(1, len(patches)) |
| 664 | patch = patches[0] |
| 665 | self.assertEqual('1', patch.id) |
| 666 | self.assertEqual('Some patch', patch.raw_subject) |
| 667 | |
| 668 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 669 | def testParseSubject(self): |
| 670 | """Test parsing of the patch subject""" |
| 671 | patch = status.Patch('1') |
| 672 | |
| 673 | # Simple patch not in a series |
| 674 | patch.parse_subject('Testing') |
| 675 | self.assertEqual('Testing', patch.raw_subject) |
| 676 | self.assertEqual('Testing', patch.subject) |
| 677 | self.assertEqual(1, patch.seq) |
| 678 | self.assertEqual(1, patch.count) |
| 679 | self.assertEqual(None, patch.prefix) |
| 680 | self.assertEqual(None, patch.version) |
| 681 | |
| 682 | # First patch in a series |
| 683 | patch.parse_subject('[1/2] Testing') |
| 684 | self.assertEqual('[1/2] Testing', patch.raw_subject) |
| 685 | self.assertEqual('Testing', patch.subject) |
| 686 | self.assertEqual(1, patch.seq) |
| 687 | self.assertEqual(2, patch.count) |
| 688 | self.assertEqual(None, patch.prefix) |
| 689 | self.assertEqual(None, patch.version) |
| 690 | |
| 691 | # Second patch in a series |
| 692 | patch.parse_subject('[2/2] Testing') |
| 693 | self.assertEqual('Testing', patch.subject) |
| 694 | self.assertEqual(2, patch.seq) |
| 695 | self.assertEqual(2, patch.count) |
| 696 | self.assertEqual(None, patch.prefix) |
| 697 | self.assertEqual(None, patch.version) |
| 698 | |
| 699 | # RFC patch |
| 700 | patch.parse_subject('[RFC,3/7] Testing') |
| 701 | self.assertEqual('Testing', patch.subject) |
| 702 | self.assertEqual(3, patch.seq) |
| 703 | self.assertEqual(7, patch.count) |
| 704 | self.assertEqual('RFC', patch.prefix) |
| 705 | self.assertEqual(None, patch.version) |
| 706 | |
| 707 | # Version patch |
| 708 | patch.parse_subject('[v2,3/7] Testing') |
| 709 | self.assertEqual('Testing', patch.subject) |
| 710 | self.assertEqual(3, patch.seq) |
| 711 | self.assertEqual(7, patch.count) |
| 712 | self.assertEqual(None, patch.prefix) |
| 713 | self.assertEqual('v2', patch.version) |
| 714 | |
| 715 | # All fields |
| 716 | patch.parse_subject('[RESEND,v2,3/7] Testing') |
| 717 | self.assertEqual('Testing', patch.subject) |
| 718 | self.assertEqual(3, patch.seq) |
| 719 | self.assertEqual(7, patch.count) |
| 720 | self.assertEqual('RESEND', patch.prefix) |
| 721 | self.assertEqual('v2', patch.version) |
| 722 | |
| 723 | # RFC only |
| 724 | patch.parse_subject('[RESEND] Testing') |
| 725 | self.assertEqual('Testing', patch.subject) |
| 726 | self.assertEqual(1, patch.seq) |
| 727 | self.assertEqual(1, patch.count) |
| 728 | self.assertEqual('RESEND', patch.prefix) |
| 729 | self.assertEqual(None, patch.version) |
| 730 | |
| 731 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 732 | def testCompareSeries(self): |
| 733 | """Test operation of compare_with_series()""" |
| 734 | commit1 = Commit('abcd') |
| 735 | commit1.subject = 'Subject 1' |
| 736 | commit2 = Commit('ef12') |
| 737 | commit2.subject = 'Subject 2' |
| 738 | commit3 = Commit('3456') |
| 739 | commit3.subject = 'Subject 2' |
| 740 | |
| 741 | patch1 = status.Patch('1') |
| 742 | patch1.subject = 'Subject 1' |
| 743 | patch2 = status.Patch('2') |
| 744 | patch2.subject = 'Subject 2' |
| 745 | patch3 = status.Patch('3') |
| 746 | patch3.subject = 'Subject 2' |
| 747 | |
| 748 | series = Series() |
| 749 | series.commits = [commit1] |
| 750 | patches = [patch1] |
| 751 | patch_for_commit, commit_for_patch, warnings = ( |
| 752 | status.compare_with_series(series, patches)) |
| 753 | self.assertEqual(1, len(patch_for_commit)) |
| 754 | self.assertEqual(patch1, patch_for_commit[0]) |
| 755 | self.assertEqual(1, len(commit_for_patch)) |
| 756 | self.assertEqual(commit1, commit_for_patch[0]) |
| 757 | |
| 758 | series.commits = [commit1] |
| 759 | patches = [patch1, patch2] |
| 760 | patch_for_commit, commit_for_patch, warnings = ( |
| 761 | status.compare_with_series(series, patches)) |
| 762 | self.assertEqual(1, len(patch_for_commit)) |
| 763 | self.assertEqual(patch1, patch_for_commit[0]) |
| 764 | self.assertEqual(1, len(commit_for_patch)) |
| 765 | self.assertEqual(commit1, commit_for_patch[0]) |
| 766 | self.assertEqual(["Cannot find commit for patch 2 ('Subject 2')"], |
| 767 | warnings) |
| 768 | |
| 769 | series.commits = [commit1, commit2] |
| 770 | patches = [patch1] |
| 771 | patch_for_commit, commit_for_patch, warnings = ( |
| 772 | status.compare_with_series(series, patches)) |
| 773 | self.assertEqual(1, len(patch_for_commit)) |
| 774 | self.assertEqual(patch1, patch_for_commit[0]) |
| 775 | self.assertEqual(1, len(commit_for_patch)) |
| 776 | self.assertEqual(commit1, commit_for_patch[0]) |
| 777 | self.assertEqual(["Cannot find patch for commit 2 ('Subject 2')"], |
| 778 | warnings) |
| 779 | |
| 780 | series.commits = [commit1, commit2, commit3] |
| 781 | patches = [patch1, patch2] |
| 782 | patch_for_commit, commit_for_patch, warnings = ( |
| 783 | status.compare_with_series(series, patches)) |
| 784 | self.assertEqual(2, len(patch_for_commit)) |
| 785 | self.assertEqual(patch1, patch_for_commit[0]) |
| 786 | self.assertEqual(patch2, patch_for_commit[1]) |
| 787 | self.assertEqual(1, len(commit_for_patch)) |
| 788 | self.assertEqual(commit1, commit_for_patch[0]) |
| 789 | self.assertEqual(["Cannot find patch for commit 3 ('Subject 2')", |
| 790 | "Multiple commits match patch 2 ('Subject 2'):\n" |
| 791 | ' Subject 2\n Subject 2'], |
| 792 | warnings) |
| 793 | |
| 794 | series.commits = [commit1, commit2] |
| 795 | patches = [patch1, patch2, patch3] |
| 796 | patch_for_commit, commit_for_patch, warnings = ( |
| 797 | status.compare_with_series(series, patches)) |
| 798 | self.assertEqual(1, len(patch_for_commit)) |
| 799 | self.assertEqual(patch1, patch_for_commit[0]) |
| 800 | self.assertEqual(2, len(commit_for_patch)) |
| 801 | self.assertEqual(commit1, commit_for_patch[0]) |
| 802 | self.assertEqual(["Multiple patches match commit 2 ('Subject 2'):\n" |
| 803 | ' Subject 2\n Subject 2', |
| 804 | "Cannot find commit for patch 3 ('Subject 2')"], |
| 805 | warnings) |
| 806 | |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 807 | def _fake_patchwork2(self, url, subpath): |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 808 | """Fake Patchwork server for the function below |
| 809 | |
| 810 | This handles accessing series, patches and comments, providing the data |
| 811 | in self.patches to the caller |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 812 | |
| 813 | Args: |
| 814 | url (str): URL of patchwork server |
| 815 | subpath (str): URL subpath to use |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 816 | """ |
| 817 | re_series = re.match(r'series/(\d*)/$', subpath) |
| 818 | re_patch = re.match(r'patches/(\d*)/$', subpath) |
| 819 | re_comments = re.match(r'patches/(\d*)/comments/$', subpath) |
| 820 | if re_series: |
| 821 | series_num = re_series.group(1) |
| 822 | if series_num == '1234': |
| 823 | return {'patches': self.patches} |
| 824 | elif re_patch: |
| 825 | patch_num = int(re_patch.group(1)) |
| 826 | patch = self.patches[patch_num - 1] |
| 827 | return patch |
| 828 | elif re_comments: |
| 829 | patch_num = int(re_comments.group(1)) |
| 830 | patch = self.patches[patch_num - 1] |
| 831 | return patch.comments |
| 832 | raise ValueError('Fake Patchwork does not understand: %s' % subpath) |
| 833 | |
| 834 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 835 | def testFindNewResponses(self): |
| 836 | """Test operation of find_new_responses()""" |
| 837 | commit1 = Commit('abcd') |
| 838 | commit1.subject = 'Subject 1' |
| 839 | commit2 = Commit('ef12') |
| 840 | commit2.subject = 'Subject 2' |
| 841 | |
| 842 | patch1 = status.Patch('1') |
| 843 | patch1.parse_subject('[1/2] Subject 1') |
| 844 | patch1.name = patch1.raw_subject |
| 845 | patch1.content = 'This is my patch content' |
| 846 | comment1a = {'content': 'Reviewed-by: %s\n' % self.joe} |
| 847 | |
| 848 | patch1.comments = [comment1a] |
| 849 | |
| 850 | patch2 = status.Patch('2') |
| 851 | patch2.parse_subject('[2/2] Subject 2') |
| 852 | patch2.name = patch2.raw_subject |
| 853 | patch2.content = 'Some other patch content' |
| 854 | comment2a = { |
| 855 | 'content': 'Reviewed-by: %s\nTested-by: %s\n' % |
| 856 | (self.mary, self.leb)} |
| 857 | comment2b = {'content': 'Reviewed-by: %s' % self.fred} |
| 858 | patch2.comments = [comment2a, comment2b] |
| 859 | |
| 860 | # This test works by setting up commits and patch for use by the fake |
| 861 | # Rest API function _fake_patchwork2(). It calls various functions in |
| 862 | # the status module after setting up tags in the commits, checking that |
| 863 | # things behaves as expected |
| 864 | self.commits = [commit1, commit2] |
| 865 | self.patches = [patch1, patch2] |
| 866 | count = 2 |
| 867 | new_rtag_list = [None] * count |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 868 | review_list = [None, None] |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 869 | |
| 870 | # Check that the tags are picked up on the first patch |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 871 | status.find_new_responses(new_rtag_list, review_list, 0, commit1, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 872 | patch1, None, self._fake_patchwork2) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 873 | self.assertEqual(new_rtag_list[0], {'Reviewed-by': {self.joe}}) |
| 874 | |
| 875 | # Now the second patch |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 876 | status.find_new_responses(new_rtag_list, review_list, 1, commit2, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 877 | patch2, None, self._fake_patchwork2) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 878 | self.assertEqual(new_rtag_list[1], { |
| 879 | 'Reviewed-by': {self.mary, self.fred}, |
| 880 | 'Tested-by': {self.leb}}) |
| 881 | |
| 882 | # Now add some tags to the commit, which means they should not appear as |
| 883 | # 'new' tags when scanning comments |
| 884 | new_rtag_list = [None] * count |
| 885 | commit1.rtags = {'Reviewed-by': {self.joe}} |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 886 | status.find_new_responses(new_rtag_list, review_list, 0, commit1, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 887 | patch1, None, self._fake_patchwork2) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 888 | self.assertEqual(new_rtag_list[0], {}) |
| 889 | |
| 890 | # For the second commit, add Ed and Fred, so only Mary should be left |
| 891 | commit2.rtags = { |
| 892 | 'Tested-by': {self.leb}, |
| 893 | 'Reviewed-by': {self.fred}} |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 894 | status.find_new_responses(new_rtag_list, review_list, 1, commit2, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 895 | patch2, None, self._fake_patchwork2) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 896 | self.assertEqual(new_rtag_list[1], {'Reviewed-by': {self.mary}}) |
| 897 | |
| 898 | # Check that the output patches expectations: |
| 899 | # 1 Subject 1 |
| 900 | # Reviewed-by: Joe Bloggs <joe@napierwallies.co.nz> |
| 901 | # 2 Subject 2 |
| 902 | # Tested-by: Lord Edmund Blackaddër <weasel@blackadder.org> |
| 903 | # Reviewed-by: Fred Bloggs <f.bloggs@napier.net> |
| 904 | # + Reviewed-by: Mary Bloggs <mary@napierwallies.co.nz> |
| 905 | # 1 new response available in patchwork |
| 906 | |
| 907 | series = Series() |
| 908 | series.commits = [commit1, commit2] |
| 909 | terminal.SetPrintTestMode() |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 910 | status.check_patchwork_status(series, '1234', None, None, False, False, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 911 | None, self._fake_patchwork2) |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 912 | lines = iter(terminal.GetPrintTestLines()) |
| 913 | col = terminal.Color() |
| 914 | self.assertEqual(terminal.PrintLine(' 1 Subject 1', col.BLUE), |
| 915 | next(lines)) |
| 916 | self.assertEqual( |
| 917 | terminal.PrintLine(' Reviewed-by: ', col.GREEN, newline=False, |
| 918 | bright=False), |
| 919 | next(lines)) |
| 920 | self.assertEqual(terminal.PrintLine(self.joe, col.WHITE, bright=False), |
| 921 | next(lines)) |
| 922 | |
| 923 | self.assertEqual(terminal.PrintLine(' 2 Subject 2', col.BLUE), |
| 924 | next(lines)) |
| 925 | self.assertEqual( |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 926 | terminal.PrintLine(' Reviewed-by: ', col.GREEN, newline=False, |
| 927 | bright=False), |
| 928 | next(lines)) |
| 929 | self.assertEqual(terminal.PrintLine(self.fred, col.WHITE, bright=False), |
| 930 | next(lines)) |
| 931 | self.assertEqual( |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 932 | terminal.PrintLine(' Tested-by: ', col.GREEN, newline=False, |
| 933 | bright=False), |
| 934 | next(lines)) |
| 935 | self.assertEqual(terminal.PrintLine(self.leb, col.WHITE, bright=False), |
| 936 | next(lines)) |
| 937 | self.assertEqual( |
Simon Glass | dc6df97 | 2020-10-29 21:46:35 -0600 | [diff] [blame] | 938 | terminal.PrintLine(' + Reviewed-by: ', col.GREEN, newline=False), |
| 939 | next(lines)) |
| 940 | self.assertEqual(terminal.PrintLine(self.mary, col.WHITE), |
| 941 | next(lines)) |
| 942 | self.assertEqual(terminal.PrintLine( |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 943 | '1 new response available in patchwork (use -d to write them to a new branch)', |
| 944 | None), next(lines)) |
| 945 | |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 946 | def _fake_patchwork3(self, url, subpath): |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 947 | """Fake Patchwork server for the function below |
| 948 | |
| 949 | This handles accessing series, patches and comments, providing the data |
| 950 | in self.patches to the caller |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 951 | |
| 952 | Args: |
| 953 | url (str): URL of patchwork server |
| 954 | subpath (str): URL subpath to use |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 955 | """ |
| 956 | re_series = re.match(r'series/(\d*)/$', subpath) |
| 957 | re_patch = re.match(r'patches/(\d*)/$', subpath) |
| 958 | re_comments = re.match(r'patches/(\d*)/comments/$', subpath) |
| 959 | if re_series: |
| 960 | series_num = re_series.group(1) |
| 961 | if series_num == '1234': |
| 962 | return {'patches': self.patches} |
| 963 | elif re_patch: |
| 964 | patch_num = int(re_patch.group(1)) |
| 965 | patch = self.patches[patch_num - 1] |
| 966 | return patch |
| 967 | elif re_comments: |
| 968 | patch_num = int(re_comments.group(1)) |
| 969 | patch = self.patches[patch_num - 1] |
| 970 | return patch.comments |
| 971 | raise ValueError('Fake Patchwork does not understand: %s' % subpath) |
| 972 | |
| 973 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 974 | def testCreateBranch(self): |
| 975 | """Test operation of create_branch()""" |
| 976 | repo = self.make_git_tree() |
| 977 | branch = 'first' |
| 978 | dest_branch = 'first2' |
| 979 | count = 2 |
| 980 | gitdir = os.path.join(self.gitdir, '.git') |
| 981 | |
| 982 | # Set up the test git tree. We use branch 'first' which has two commits |
| 983 | # in it |
| 984 | series = patchstream.get_metadata_for_list(branch, gitdir, count) |
| 985 | self.assertEqual(2, len(series.commits)) |
| 986 | |
| 987 | patch1 = status.Patch('1') |
| 988 | patch1.parse_subject('[1/2] %s' % series.commits[0].subject) |
| 989 | patch1.name = patch1.raw_subject |
| 990 | patch1.content = 'This is my patch content' |
| 991 | comment1a = {'content': 'Reviewed-by: %s\n' % self.joe} |
| 992 | |
| 993 | patch1.comments = [comment1a] |
| 994 | |
| 995 | patch2 = status.Patch('2') |
| 996 | patch2.parse_subject('[2/2] %s' % series.commits[1].subject) |
| 997 | patch2.name = patch2.raw_subject |
| 998 | patch2.content = 'Some other patch content' |
| 999 | comment2a = { |
| 1000 | 'content': 'Reviewed-by: %s\nTested-by: %s\n' % |
| 1001 | (self.mary, self.leb)} |
| 1002 | comment2b = { |
| 1003 | 'content': 'Reviewed-by: %s' % self.fred} |
| 1004 | patch2.comments = [comment2a, comment2b] |
| 1005 | |
| 1006 | # This test works by setting up patches for use by the fake Rest API |
| 1007 | # function _fake_patchwork3(). The fake patch comments above should |
| 1008 | # result in new review tags that are collected and added to the commits |
| 1009 | # created in the destination branch. |
| 1010 | self.patches = [patch1, patch2] |
| 1011 | count = 2 |
| 1012 | |
| 1013 | # Expected output: |
| 1014 | # 1 i2c: I2C things |
| 1015 | # + Reviewed-by: Joe Bloggs <joe@napierwallies.co.nz> |
| 1016 | # 2 spi: SPI fixes |
| 1017 | # + Reviewed-by: Fred Bloggs <f.bloggs@napier.net> |
| 1018 | # + Reviewed-by: Mary Bloggs <mary@napierwallies.co.nz> |
| 1019 | # + Tested-by: Lord Edmund Blackaddër <weasel@blackadder.org> |
| 1020 | # 4 new responses available in patchwork |
| 1021 | # 4 responses added from patchwork into new branch 'first2' |
| 1022 | # <unittest.result.TestResult run=8 errors=0 failures=0> |
| 1023 | |
| 1024 | terminal.SetPrintTestMode() |
| 1025 | status.check_patchwork_status(series, '1234', branch, dest_branch, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 1026 | False, False, None, self._fake_patchwork3, |
| 1027 | repo) |
Simon Glass | 8f9ba3a | 2020-10-29 21:46:36 -0600 | [diff] [blame] | 1028 | lines = terminal.GetPrintTestLines() |
| 1029 | self.assertEqual(12, len(lines)) |
| 1030 | self.assertEqual( |
| 1031 | "4 responses added from patchwork into new branch 'first2'", |
| 1032 | lines[11].text) |
| 1033 | |
| 1034 | # Check that the destination branch has the new tags |
| 1035 | new_series = patchstream.get_metadata_for_list(dest_branch, gitdir, |
| 1036 | count) |
| 1037 | self.assertEqual( |
| 1038 | {'Reviewed-by': {self.joe}}, |
| 1039 | new_series.commits[0].rtags) |
| 1040 | self.assertEqual( |
| 1041 | {'Tested-by': {self.leb}, |
| 1042 | 'Reviewed-by': {self.fred, self.mary}}, |
| 1043 | new_series.commits[1].rtags) |
| 1044 | |
| 1045 | # Now check the actual test of the first commit message. We expect to |
| 1046 | # see the new tags immediately below the old ones. |
| 1047 | stdout = patchstream.get_list(dest_branch, count=count, git_dir=gitdir) |
| 1048 | lines = iter([line.strip() for line in stdout.splitlines() |
| 1049 | if '-by:' in line]) |
| 1050 | |
| 1051 | # First patch should have the review tag |
| 1052 | self.assertEqual('Reviewed-by: %s' % self.joe, next(lines)) |
| 1053 | |
| 1054 | # Second patch should have the sign-off then the tested-by and two |
| 1055 | # reviewed-by tags |
| 1056 | self.assertEqual('Signed-off-by: %s' % self.leb, next(lines)) |
| 1057 | self.assertEqual('Reviewed-by: %s' % self.fred, next(lines)) |
| 1058 | self.assertEqual('Reviewed-by: %s' % self.mary, next(lines)) |
| 1059 | self.assertEqual('Tested-by: %s' % self.leb, next(lines)) |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 1060 | |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 1061 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
Simon Glass | 6b3252e | 2020-10-29 21:46:37 -0600 | [diff] [blame] | 1062 | def testParseSnippets(self): |
| 1063 | """Test parsing of review snippets""" |
| 1064 | text = '''Hi Fred, |
| 1065 | |
| 1066 | This is a comment from someone. |
| 1067 | |
| 1068 | Something else |
| 1069 | |
| 1070 | On some recent date, Fred wrote: |
| 1071 | > This is why I wrote the patch |
| 1072 | > so here it is |
| 1073 | |
| 1074 | Now a comment about the commit message |
| 1075 | A little more to say |
| 1076 | |
| 1077 | Even more |
| 1078 | |
| 1079 | > diff --git a/file.c b/file.c |
| 1080 | > Some more code |
| 1081 | > Code line 2 |
| 1082 | > Code line 3 |
| 1083 | > Code line 4 |
| 1084 | > Code line 5 |
| 1085 | > Code line 6 |
| 1086 | > Code line 7 |
| 1087 | > Code line 8 |
| 1088 | > Code line 9 |
| 1089 | |
| 1090 | And another comment |
| 1091 | |
| 1092 | > @@ -153,8 +143,13 @@ def CheckPatch(fname, show_types=False): |
| 1093 | > further down on the file |
| 1094 | > and more code |
| 1095 | > +Addition here |
| 1096 | > +Another addition here |
| 1097 | > codey |
| 1098 | > more codey |
| 1099 | |
| 1100 | and another thing in same file |
| 1101 | |
| 1102 | > @@ -253,8 +243,13 @@ |
| 1103 | > with no function context |
| 1104 | |
| 1105 | one more thing |
| 1106 | |
| 1107 | > diff --git a/tools/patman/main.py b/tools/patman/main.py |
| 1108 | > +line of code |
| 1109 | now a very long comment in a different file |
| 1110 | line2 |
| 1111 | line3 |
| 1112 | line4 |
| 1113 | line5 |
| 1114 | line6 |
| 1115 | line7 |
| 1116 | line8 |
| 1117 | ''' |
| 1118 | pstrm = PatchStream.process_text(text, True) |
| 1119 | self.assertEqual([], pstrm.commit.warn) |
| 1120 | |
| 1121 | # We expect to the filename and up to 5 lines of code context before |
| 1122 | # each comment. The 'On xxx wrote:' bit should be removed. |
| 1123 | self.assertEqual( |
| 1124 | [['Hi Fred,', |
| 1125 | 'This is a comment from someone.', |
| 1126 | 'Something else'], |
| 1127 | ['> This is why I wrote the patch', |
| 1128 | '> so here it is', |
| 1129 | 'Now a comment about the commit message', |
| 1130 | 'A little more to say', 'Even more'], |
| 1131 | ['> File: file.c', '> Code line 5', '> Code line 6', |
| 1132 | '> Code line 7', '> Code line 8', '> Code line 9', |
| 1133 | 'And another comment'], |
| 1134 | ['> File: file.c', |
| 1135 | '> Line: 153 / 143: def CheckPatch(fname, show_types=False):', |
| 1136 | '> and more code', '> +Addition here', '> +Another addition here', |
| 1137 | '> codey', '> more codey', 'and another thing in same file'], |
| 1138 | ['> File: file.c', '> Line: 253 / 243', |
| 1139 | '> with no function context', 'one more thing'], |
| 1140 | ['> File: tools/patman/main.py', '> +line of code', |
| 1141 | 'now a very long comment in a different file', |
| 1142 | 'line2', 'line3', 'line4', 'line5', 'line6', 'line7', 'line8']], |
| 1143 | pstrm.snippets) |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 1144 | |
| 1145 | @unittest.skipIf(not HAVE_PYGIT2, 'Missing python3-pygit2') |
| 1146 | def testReviewSnippets(self): |
| 1147 | """Test showing of review snippets""" |
| 1148 | def _to_submitter(who): |
| 1149 | m_who = re.match('(.*) <(.*)>', who) |
| 1150 | return { |
| 1151 | 'name': m_who.group(1), |
| 1152 | 'email': m_who.group(2) |
| 1153 | } |
| 1154 | |
| 1155 | commit1 = Commit('abcd') |
| 1156 | commit1.subject = 'Subject 1' |
| 1157 | commit2 = Commit('ef12') |
| 1158 | commit2.subject = 'Subject 2' |
| 1159 | |
| 1160 | patch1 = status.Patch('1') |
| 1161 | patch1.parse_subject('[1/2] Subject 1') |
| 1162 | patch1.name = patch1.raw_subject |
| 1163 | patch1.content = 'This is my patch content' |
| 1164 | comment1a = {'submitter': _to_submitter(self.joe), |
| 1165 | 'content': '''Hi Fred, |
| 1166 | |
| 1167 | On some date Fred wrote: |
| 1168 | |
| 1169 | > diff --git a/file.c b/file.c |
| 1170 | > Some code |
| 1171 | > and more code |
| 1172 | |
| 1173 | Here is my comment above the above... |
| 1174 | |
| 1175 | |
| 1176 | Reviewed-by: %s |
| 1177 | ''' % self.joe} |
| 1178 | |
| 1179 | patch1.comments = [comment1a] |
| 1180 | |
| 1181 | patch2 = status.Patch('2') |
| 1182 | patch2.parse_subject('[2/2] Subject 2') |
| 1183 | patch2.name = patch2.raw_subject |
| 1184 | patch2.content = 'Some other patch content' |
| 1185 | comment2a = { |
| 1186 | 'content': 'Reviewed-by: %s\nTested-by: %s\n' % |
| 1187 | (self.mary, self.leb)} |
| 1188 | comment2b = {'submitter': _to_submitter(self.fred), |
| 1189 | 'content': '''Hi Fred, |
| 1190 | |
| 1191 | On some date Fred wrote: |
| 1192 | |
| 1193 | > diff --git a/tools/patman/commit.py b/tools/patman/commit.py |
| 1194 | > @@ -41,6 +41,9 @@ class Commit: |
| 1195 | > self.rtags = collections.defaultdict(set) |
| 1196 | > self.warn = [] |
| 1197 | > |
| 1198 | > + def __str__(self): |
| 1199 | > + return self.subject |
| 1200 | > + |
| 1201 | > def AddChange(self, version, info): |
| 1202 | > """Add a new change line to the change list for a version. |
| 1203 | > |
| 1204 | A comment |
| 1205 | |
| 1206 | Reviewed-by: %s |
| 1207 | ''' % self.fred} |
| 1208 | patch2.comments = [comment2a, comment2b] |
| 1209 | |
| 1210 | # This test works by setting up commits and patch for use by the fake |
| 1211 | # Rest API function _fake_patchwork2(). It calls various functions in |
| 1212 | # the status module after setting up tags in the commits, checking that |
| 1213 | # things behaves as expected |
| 1214 | self.commits = [commit1, commit2] |
| 1215 | self.patches = [patch1, patch2] |
| 1216 | |
| 1217 | # Check that the output patches expectations: |
| 1218 | # 1 Subject 1 |
| 1219 | # Reviewed-by: Joe Bloggs <joe@napierwallies.co.nz> |
| 1220 | # 2 Subject 2 |
| 1221 | # Tested-by: Lord Edmund Blackaddër <weasel@blackadder.org> |
| 1222 | # Reviewed-by: Fred Bloggs <f.bloggs@napier.net> |
| 1223 | # + Reviewed-by: Mary Bloggs <mary@napierwallies.co.nz> |
| 1224 | # 1 new response available in patchwork |
| 1225 | |
| 1226 | series = Series() |
| 1227 | series.commits = [commit1, commit2] |
| 1228 | terminal.SetPrintTestMode() |
| 1229 | status.check_patchwork_status(series, '1234', None, None, False, True, |
Simon Glass | 7cbf02e | 2020-11-03 13:54:14 -0700 | [diff] [blame] | 1230 | None, self._fake_patchwork2) |
Simon Glass | dc4b2a9 | 2020-10-29 21:46:38 -0600 | [diff] [blame] | 1231 | lines = iter(terminal.GetPrintTestLines()) |
| 1232 | col = terminal.Color() |
| 1233 | self.assertEqual(terminal.PrintLine(' 1 Subject 1', col.BLUE), |
| 1234 | next(lines)) |
| 1235 | self.assertEqual( |
| 1236 | terminal.PrintLine(' + Reviewed-by: ', col.GREEN, newline=False), |
| 1237 | next(lines)) |
| 1238 | self.assertEqual(terminal.PrintLine(self.joe, col.WHITE), next(lines)) |
| 1239 | |
| 1240 | self.assertEqual(terminal.PrintLine('Review: %s' % self.joe, col.RED), |
| 1241 | next(lines)) |
| 1242 | self.assertEqual(terminal.PrintLine(' Hi Fred,', None), next(lines)) |
| 1243 | self.assertEqual(terminal.PrintLine('', None), next(lines)) |
| 1244 | self.assertEqual(terminal.PrintLine(' > File: file.c', col.MAGENTA), |
| 1245 | next(lines)) |
| 1246 | self.assertEqual(terminal.PrintLine(' > Some code', col.MAGENTA), |
| 1247 | next(lines)) |
| 1248 | self.assertEqual(terminal.PrintLine(' > and more code', col.MAGENTA), |
| 1249 | next(lines)) |
| 1250 | self.assertEqual(terminal.PrintLine( |
| 1251 | ' Here is my comment above the above...', None), next(lines)) |
| 1252 | self.assertEqual(terminal.PrintLine('', None), next(lines)) |
| 1253 | |
| 1254 | self.assertEqual(terminal.PrintLine(' 2 Subject 2', col.BLUE), |
| 1255 | next(lines)) |
| 1256 | self.assertEqual( |
| 1257 | terminal.PrintLine(' + Reviewed-by: ', col.GREEN, newline=False), |
| 1258 | next(lines)) |
| 1259 | self.assertEqual(terminal.PrintLine(self.fred, col.WHITE), |
| 1260 | next(lines)) |
| 1261 | self.assertEqual( |
| 1262 | terminal.PrintLine(' + Reviewed-by: ', col.GREEN, newline=False), |
| 1263 | next(lines)) |
| 1264 | self.assertEqual(terminal.PrintLine(self.mary, col.WHITE), |
| 1265 | next(lines)) |
| 1266 | self.assertEqual( |
| 1267 | terminal.PrintLine(' + Tested-by: ', col.GREEN, newline=False), |
| 1268 | next(lines)) |
| 1269 | self.assertEqual(terminal.PrintLine(self.leb, col.WHITE), |
| 1270 | next(lines)) |
| 1271 | |
| 1272 | self.assertEqual(terminal.PrintLine('Review: %s' % self.fred, col.RED), |
| 1273 | next(lines)) |
| 1274 | self.assertEqual(terminal.PrintLine(' Hi Fred,', None), next(lines)) |
| 1275 | self.assertEqual(terminal.PrintLine('', None), next(lines)) |
| 1276 | self.assertEqual(terminal.PrintLine( |
| 1277 | ' > File: tools/patman/commit.py', col.MAGENTA), next(lines)) |
| 1278 | self.assertEqual(terminal.PrintLine( |
| 1279 | ' > Line: 41 / 41: class Commit:', col.MAGENTA), next(lines)) |
| 1280 | self.assertEqual(terminal.PrintLine( |
| 1281 | ' > + return self.subject', col.MAGENTA), next(lines)) |
| 1282 | self.assertEqual(terminal.PrintLine( |
| 1283 | ' > +', col.MAGENTA), next(lines)) |
| 1284 | self.assertEqual( |
| 1285 | terminal.PrintLine(' > def AddChange(self, version, info):', |
| 1286 | col.MAGENTA), |
| 1287 | next(lines)) |
| 1288 | self.assertEqual(terminal.PrintLine( |
| 1289 | ' > """Add a new change line to the change list for a version.', |
| 1290 | col.MAGENTA), next(lines)) |
| 1291 | self.assertEqual(terminal.PrintLine( |
| 1292 | ' >', col.MAGENTA), next(lines)) |
| 1293 | self.assertEqual(terminal.PrintLine( |
| 1294 | ' A comment', None), next(lines)) |
| 1295 | self.assertEqual(terminal.PrintLine('', None), next(lines)) |
| 1296 | |
| 1297 | self.assertEqual(terminal.PrintLine( |
| 1298 | '4 new responses available in patchwork (use -d to write them to a new branch)', |
| 1299 | None), next(lines)) |