OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Unit tests for git_cl.py.""" | 6 """Unit tests for git_cl.py.""" |
7 | 7 |
8 import os | 8 import os |
9 import StringIO | 9 import StringIO |
10 import stat | 10 import stat |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 self.fail(msg) | 107 self.fail(msg) |
108 self._calls_done += 1 | 108 self._calls_done += 1 |
109 return result | 109 return result |
110 | 110 |
111 @classmethod | 111 @classmethod |
112 def _upload_calls(cls, similarity, find_copies): | 112 def _upload_calls(cls, similarity, find_copies): |
113 return (cls._git_base_calls(similarity, find_copies) + | 113 return (cls._git_base_calls(similarity, find_copies) + |
114 cls._git_upload_calls()) | 114 cls._git_upload_calls()) |
115 | 115 |
116 @classmethod | 116 @classmethod |
| 117 def _upload_no_rev_calls(cls, similarity, find_copies): |
| 118 return (cls._git_base_calls(similarity, find_copies) + |
| 119 cls._git_upload_no_rev_calls()) |
| 120 |
| 121 @classmethod |
117 def _git_base_calls(cls, similarity, find_copies): | 122 def _git_base_calls(cls, similarity, find_copies): |
118 if similarity is None: | 123 if similarity is None: |
119 similarity = '50' | 124 similarity = '50' |
120 similarity_call = ((['git', 'config', '--int', '--get', | 125 similarity_call = ((['git', 'config', '--int', '--get', |
121 'branch.master.git-cl-similarity'],), '') | 126 'branch.master.git-cl-similarity'],), '') |
122 else: | 127 else: |
123 similarity_call = ((['git', 'config', '--int', | 128 similarity_call = ((['git', 'config', '--int', |
124 'branch.master.git-cl-similarity', similarity],), '') | 129 'branch.master.git-cl-similarity', similarity],), '') |
125 | 130 |
126 if find_copies is None: | 131 if find_copies is None: |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 ((['git', 'log', '--pretty=format:%s%n%n%b', 'fake_ancestor_sha...'],), | 167 ((['git', 'log', '--pretty=format:%s%n%n%b', 'fake_ancestor_sha...'],), |
163 'foo'), | 168 'foo'), |
164 ((['git', 'config', 'user.email'],), 'me@example.com'), | 169 ((['git', 'config', 'user.email'],), 'me@example.com'), |
165 stat_call, | 170 stat_call, |
166 ((['git', 'config', 'gerrit.host'],), ''), | 171 ((['git', 'config', 'gerrit.host'],), ''), |
167 ((['git', 'log', '--pretty=format:%s\n\n%b', 'fake_ancestor_sha..HEAD'],), | 172 ((['git', 'log', '--pretty=format:%s\n\n%b', 'fake_ancestor_sha..HEAD'],), |
168 'desc\n'), | 173 'desc\n'), |
169 ] | 174 ] |
170 | 175 |
171 @classmethod | 176 @classmethod |
| 177 def _git_upload_no_rev_calls(cls): |
| 178 return [ |
| 179 ((['git', 'config', 'core.editor'],), ''), |
| 180 ] |
| 181 |
| 182 @classmethod |
172 def _git_upload_calls(cls): | 183 def _git_upload_calls(cls): |
173 return [ | 184 return [ |
| 185 ((['git', 'config', 'core.editor'],), ''), |
174 ((['git', 'config', 'rietveld.cc'],), ''), | 186 ((['git', 'config', 'rietveld.cc'],), ''), |
175 ((['git', 'config', 'branch.master.base-url'],), ''), | 187 ((['git', 'config', 'branch.master.base-url'],), ''), |
176 ((['git', 'config', '--local', '--get-regexp', '^svn-remote\\.'],), | 188 ((['git', 'config', '--local', '--get-regexp', '^svn-remote\\.'],), |
177 (('', None), 0)), | 189 (('', None), 0)), |
178 ((['git', 'rev-parse', '--show-cdup'],), ''), | 190 ((['git', 'rev-parse', '--show-cdup'],), ''), |
179 ((['git', 'svn', 'info'],), ''), | 191 ((['git', 'svn', 'info'],), ''), |
180 ((['git', 'config', 'branch.master.rietveldissue', '1'],), ''), | 192 ((['git', 'config', 'branch.master.rietveldissue', '1'],), ''), |
181 ((['git', 'config', 'branch.master.rietveldserver', | 193 ((['git', 'config', 'branch.master.rietveldserver', |
182 'https://codereview.example.com'],), ''), | 194 'https://codereview.example.com'],), ''), |
183 ((['git', 'config', 'branch.master.rietveldpatchset', '2'],), ''), | 195 ((['git', 'config', 'branch.master.rietveldpatchset', '2'],), ''), |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 similarity = None | 335 similarity = None |
324 | 336 |
325 if '--find-copies' in upload_args: | 337 if '--find-copies' in upload_args: |
326 find_copies = True | 338 find_copies = True |
327 elif '--no-find-copies' in upload_args: | 339 elif '--no-find-copies' in upload_args: |
328 find_copies = False | 340 find_copies = False |
329 else: | 341 else: |
330 find_copies = None | 342 find_copies = None |
331 | 343 |
332 self.calls = self._upload_calls(similarity, find_copies) | 344 self.calls = self._upload_calls(similarity, find_copies) |
333 def RunEditor(desc, _): | 345 def RunEditor(desc, _, **kwargs): |
334 self.assertEquals( | 346 self.assertEquals( |
335 '# Enter a description of the change.\n' | 347 '# Enter a description of the change.\n' |
336 '# This will be displayed on the codereview site.\n' | 348 '# This will be displayed on the codereview site.\n' |
337 '# The first line will also be used as the subject of the review.\n' + | 349 '# The first line will also be used as the subject of the review.\n' + |
338 expected_description, | 350 expected_description, |
339 desc) | 351 desc) |
340 return returned_description | 352 return returned_description |
341 self.mock(git_cl.gclient_utils, 'RunEditor', RunEditor) | 353 self.mock(git_cl.gclient_utils, 'RunEditor', RunEditor) |
342 def check_upload(args): | 354 def check_upload(args): |
343 cmd_line = self._cmd_line(final_description, reviewers, similarity, | 355 cmd_line = self._cmd_line(final_description, reviewers, similarity, |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 | 427 |
416 def test_reviewer_send_mail_no_rev(self): | 428 def test_reviewer_send_mail_no_rev(self): |
417 # Fails without a reviewer. | 429 # Fails without a reviewer. |
418 class FileMock(object): | 430 class FileMock(object): |
419 buf = StringIO.StringIO() | 431 buf = StringIO.StringIO() |
420 def write(self, content): | 432 def write(self, content): |
421 self.buf.write(content) | 433 self.buf.write(content) |
422 | 434 |
423 mock = FileMock() | 435 mock = FileMock() |
424 try: | 436 try: |
425 self.calls = self._git_base_calls(None, None) | 437 self.calls = self._upload_no_rev_calls(None, None) |
426 def RunEditor(desc, _): | 438 def RunEditor(desc, _, **kwargs): |
427 return desc | 439 return desc |
428 self.mock(git_cl.gclient_utils, 'RunEditor', RunEditor) | 440 self.mock(git_cl.gclient_utils, 'RunEditor', RunEditor) |
429 self.mock(sys, 'stderr', mock) | 441 self.mock(sys, 'stderr', mock) |
430 git_cl.main(['upload', '--send-mail']) | 442 git_cl.main(['upload', '--send-mail']) |
431 self.fail() | 443 self.fail() |
432 except SystemExit: | 444 except SystemExit: |
433 self.assertEquals( | 445 self.assertEquals( |
434 'Must specify reviewers to send email.\n', mock.buf.getvalue()) | 446 'Must specify reviewers to send email.\n', mock.buf.getvalue()) |
435 | 447 |
436 def test_dcommit(self): | 448 def test_dcommit(self): |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 obj = git_cl.ChangeDescription(orig) | 642 obj = git_cl.ChangeDescription(orig) |
631 obj.update_reviewers(reviewers) | 643 obj.update_reviewers(reviewers) |
632 actual.append(obj.description) | 644 actual.append(obj.description) |
633 self.assertEqual(expected, actual) | 645 self.assertEqual(expected, actual) |
634 | 646 |
635 | 647 |
636 if __name__ == '__main__': | 648 if __name__ == '__main__': |
637 git_cl.logging.basicConfig( | 649 git_cl.logging.basicConfig( |
638 level=git_cl.logging.DEBUG if '-v' in sys.argv else git_cl.logging.ERROR) | 650 level=git_cl.logging.DEBUG if '-v' in sys.argv else git_cl.logging.ERROR) |
639 unittest.main() | 651 unittest.main() |
OLD | NEW |