1 # -*- coding: utf-8 -*-
2 # SPDX-License-Identifier: GPL-2.0+
4 # Copyright 2017 Google, Inc
20 @contextlib.contextmanager
23 from cStringIO import StringIO
24 oldout,olderr = sys.stdout, sys.stderr
26 out=[StringIO(), StringIO()]
27 sys.stdout,sys.stderr = out
30 sys.stdout,sys.stderr = oldout, olderr
31 out[0] = out[0].getvalue()
32 out[1] = out[1].getvalue()
35 class TestFunctional(unittest.TestCase):
37 self.tmpdir = tempfile.mkdtemp(prefix='patman.')
40 shutil.rmtree(self.tmpdir)
44 return os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])),
48 def GetText(self, fname):
49 return open(self.GetPath(fname)).read()
52 def GetPatchName(self, subject):
53 fname = re.sub('[ :]', '-', subject)
54 return fname.replace('--', '-')
56 def CreatePatchesForTest(self, series):
59 for i, commit in enumerate(series.commits):
60 clean_subject = self.GetPatchName(commit.subject)
61 src_fname = '%04d-%s.patch' % (i + 1, clean_subject[:52])
62 fname = os.path.join(self.tmpdir, src_fname)
63 shutil.copy(self.GetPath(src_fname), fname)
64 fname_list.append(fname)
65 if series.get('cover'):
66 src_fname = '0000-cover-letter.patch'
67 cover_fname = os.path.join(self.tmpdir, src_fname)
68 fname = os.path.join(self.tmpdir, src_fname)
69 shutil.copy(self.GetPath(src_fname), fname)
71 return cover_fname, fname_list
74 """Tests the basic flow of patman
76 This creates a series from some hard-coded patches build from a simple
77 tree with the following metadata in the top commit:
81 Series-cc: Stefan Brüns <stefan.bruens@rwth-aachen.de>
82 Cover-letter-cc: Lord Mëlchett <clergy@palace.gov>
88 test: A test patch series
89 This is a test of how the cover
94 and this in the first commit:
107 with the following commands:
109 git log -n2 --reverse >/path/to/tools/patman/test/test01.txt
110 git format-patch --subject-prefix RFC --cover-letter HEAD~2
111 mv 00* /path/to/tools/patman/test
113 It checks these aspects:
114 - git log can be processed by patchstream
115 - emailing patches uses the correct command
116 - CC file has information on each commit
117 - cover letter has the expected text and subject
118 - each patch has the correct subject
119 - dry-run information prints out correctly
120 - unicode is handled correctly
121 - Series-to, Series-cc, Series-prefix, Cover-letter
122 - Cover-letter-cc, Series-version, Series-changes, Series-notes
126 ignore_bad_tags = True
127 stefan = u'Stefan Brüns <stefan.bruens@rwth-aachen.de>'
128 rick = 'Richard III <richard@palace.gov>'
129 mel = u'Lord Mëlchett <clergy@palace.gov>'
130 ed = u'Lond Edmund Blackaddër <weasel@blackadder.org'
131 fred = 'Fred Bloggs <f.bloggs@napier.net>'
132 add_maintainers = [stefan, rick]
138 'u-boot': ['u-boot@lists.denx.de'],
143 text = self.GetText('test01.txt')
144 series = patchstream.GetMetaDataForTest(text)
145 cover_fname, args = self.CreatePatchesForTest(series)
146 with capture() as out:
147 patchstream.FixPatches(series, args)
148 if cover_fname and series.get('cover'):
149 patchstream.InsertCoverLetter(cover_fname, series, count)
151 cc_file = series.MakeCcFile(process_tags, cover_fname,
152 not ignore_bad_tags, add_maintainers,
154 cmd = gitutil.EmailPatches(series, cover_fname, args,
155 dry_run, not ignore_bad_tags, cc_file,
156 in_reply_to=in_reply_to, thread=None)
157 series.ShowActions(args, cmd, process_tags)
158 cc_lines = open(cc_file).read().splitlines()
161 lines = out[0].splitlines()
162 #print '\n'.join(lines)
163 self.assertEqual('Cleaned %s patches' % len(series.commits), lines[0])
164 self.assertEqual('Change log missing for v2', lines[1])
165 self.assertEqual('Change log missing for v3', lines[2])
166 self.assertEqual('Change log for unknown version v4', lines[3])
167 self.assertEqual("Alias 'pci' not found", lines[4])
168 self.assertIn('Dry run', lines[5])
169 self.assertIn('Send a total of %d patches' % count, lines[7])
171 for i, commit in enumerate(series.commits):
172 self.assertEqual(' %s' % args[i], lines[line + 0])
174 while 'Cc:' in lines[line]:
176 self.assertEqual('To: u-boot@lists.denx.de', lines[line])
177 self.assertEqual('Cc: %s' % stefan.encode('utf-8'), lines[line + 1])
178 self.assertEqual('Version: 3', lines[line + 2])
179 self.assertEqual('Prefix:\t RFC', lines[line + 3])
180 self.assertEqual('Cover: 4 lines', lines[line + 4])
182 self.assertEqual(' Cc: %s' % mel.encode('utf-8'), lines[line + 0])
183 self.assertEqual(' Cc: %s' % rick, lines[line + 1])
184 self.assertEqual(' Cc: %s' % fred, lines[line + 2])
185 self.assertEqual(' Cc: %s' % ed.encode('utf-8'), lines[line + 3])
186 expected = ('Git command: git send-email --annotate '
187 '--in-reply-to="%s" --to "u-boot@lists.denx.de" '
188 '--cc "%s" --cc-cmd "%s --cc-cmd %s" %s %s'
189 % (in_reply_to, stefan, sys.argv[0], cc_file, cover_fname,
190 ' '.join(args))).encode('utf-8')
192 self.assertEqual(expected, lines[line])
194 self.assertEqual(('%s %s, %s' % (args[0], rick, stefan))
195 .encode('utf-8'), cc_lines[0])
196 self.assertEqual(('%s %s, %s, %s, %s' % (args[1], fred, rick, stefan,
197 ed)).encode('utf-8'), cc_lines[1])
200 This is a test of how the cover
206 from the first commit
212 pci: Correct cast for sandbox
213 fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
217 lib/efi_loader/efi_memory.c | 1 +
219 4 files changed, 6 insertions(+), 2 deletions(-)
225 lines = open(cover_fname).read().splitlines()
226 #print '\n'.join(lines)
228 'Subject: [RFC PATCH v3 0/2] test: A test patch series',
230 self.assertEqual(expected.splitlines(), lines[7:])
232 for i, fname in enumerate(args):
233 lines = open(fname).read().splitlines()
234 #print '\n'.join(lines)
235 subject = [line for line in lines if line.startswith('Subject')]
236 self.assertEqual('Subject: [RFC %d/%d]' % (i + 1, count),
239 # Check that we got our commit notes
240 self.assertEqual('---', lines[17])
241 self.assertEqual('Some notes about', lines[18])
242 self.assertEqual('the first commit', lines[19])