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.""" |
tandrii(chromium)
2016/04/29 19:04:43
i think that's another CL.
martiniss
2016/04/29 19:26:48
Yeah, I goofed :)
| |
7 | 7 |
8 import os | 8 import os |
9 import StringIO | 9 import StringIO |
10 import stat | 10 import stat |
11 import sys | 11 import sys |
12 import unittest | 12 import unittest |
13 import urlparse | 13 import urlparse |
14 | 14 |
15 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | 15 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
16 | 16 |
17 from testing_support.auto_stub import TestCase | 17 from testing_support.auto_stub import TestCase |
18 | 18 |
19 import git_cl | 19 import git_cl |
20 import git_common | 20 import git_common |
21 import git_footers | 21 import git_footers |
22 import subprocess2 | 22 import subprocess2 |
23 | 23 |
24 class ChangelistMock(): | 24 class ChangelistMock(object): |
25 # A class variable so we can access it when we don't have access to the | 25 # A class variable so we can access it when we don't have access to the |
26 # instance that's being set. | 26 # instance that's being set. |
27 desc = "" | 27 desc = "" |
28 def __init__(self, **kwargs): | 28 def __init__(self, **kwargs): |
29 pass | 29 pass |
30 def GetIssue(self): | 30 def GetIssue(self): |
31 return 1 | 31 return 1 |
32 def GetDescription(self): | 32 def GetDescription(self): |
33 return ChangelistMock.desc | 33 return ChangelistMock.desc |
34 def UpdateDescription(self, desc): | 34 def UpdateDescription(self, desc): |
(...skipping 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1427 | 1427 |
1428 self.assertEqual(0, git_cl.main([ | 1428 self.assertEqual(0, git_cl.main([ |
1429 'description', 'https://code.review.org/123123', '-d', '--gerrit'])) | 1429 'description', 'https://code.review.org/123123', '-d', '--gerrit'])) |
1430 self.assertEqual('foobar\n', out.getvalue()) | 1430 self.assertEqual('foobar\n', out.getvalue()) |
1431 | 1431 |
1432 def test_description_set_raw(self): | 1432 def test_description_set_raw(self): |
1433 out = StringIO.StringIO() | 1433 out = StringIO.StringIO() |
1434 self.mock(git_cl.sys, 'stdout', out) | 1434 self.mock(git_cl.sys, 'stdout', out) |
1435 | 1435 |
1436 self.mock(git_cl, 'Changelist', ChangelistMock) | 1436 self.mock(git_cl, 'Changelist', ChangelistMock) |
1437 class TMP(): | 1437 class StdinMock(): |
1438 def splitlines(self): | 1438 def splitlines(self): |
1439 return ['hihi'] | 1439 return ['hihi'] |
1440 | 1440 |
1441 self.mock(git_cl.sys, 'stdin', TMP()) | 1441 self.mock(git_cl.sys, 'stdin', StdinMock()) |
1442 | 1442 |
1443 self.assertEqual(0, git_cl.main(['description', '-n', 'hihi'])) | 1443 self.assertEqual(0, git_cl.main(['description', '-n', 'hihi'])) |
1444 self.assertEqual('hihi', ChangelistMock.desc) | 1444 self.assertEqual('hihi', ChangelistMock.desc) |
1445 | 1445 |
1446 def test_description_set_stdin(self): | 1446 def test_description_set_stdin(self): |
1447 out = StringIO.StringIO() | 1447 out = StringIO.StringIO() |
1448 self.mock(git_cl.sys, 'stdout', out) | 1448 self.mock(git_cl.sys, 'stdout', out) |
1449 | 1449 |
1450 self.mock(git_cl, 'Changelist', ChangelistMock) | 1450 self.mock(git_cl, 'Changelist', ChangelistMock) |
1451 class TMP(): | 1451 class StdinMock(object): |
1452 def splitlines(self): | 1452 def splitlines(self): |
1453 return ['hi', 'there'] | 1453 return ['hi', 'there'] |
1454 | 1454 |
1455 self.mock(git_cl.sys, 'stdin', TMP()) | 1455 self.mock(git_cl.sys, 'stdin', StdinMock()) |
1456 | 1456 |
1457 self.assertEqual(0, git_cl.main(['description', '-n', '-'])) | 1457 self.assertEqual(0, git_cl.main(['description', '-n', '-'])) |
1458 self.assertEqual('hi\nthere', ChangelistMock.desc) | 1458 self.assertEqual('hi\nthere', ChangelistMock.desc) |
1459 | 1459 |
1460 | 1460 |
1461 if __name__ == '__main__': | 1461 if __name__ == '__main__': |
1462 git_cl.logging.basicConfig( | 1462 git_cl.logging.basicConfig( |
1463 level=git_cl.logging.DEBUG if '-v' in sys.argv else git_cl.logging.ERROR) | 1463 level=git_cl.logging.DEBUG if '-v' in sys.argv else git_cl.logging.ERROR) |
1464 unittest.main() | 1464 unittest.main() |
OLD | NEW |