Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: tests/git_footers_test.py

Issue 1915833003: tryserver recipe_module: Add get_tags. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Single quotes. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« tests/gclient_test.py ('K') | « tests/gclient_test.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 """Tests for git_footers.""" 3 """Tests for git_footers."""
4 4
5 import os 5 import os
6 import mock
7 import StringIO
6 import sys 8 import sys
7 import unittest 9 import unittest
8 10
9 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) 11 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
10 12
13 from testing_support.auto_stub import TestCase
14
11 import git_footers 15 import git_footers
12 16
13 class GitFootersTest(unittest.TestCase): 17 class GitFootersTest(TestCase):
14 _message = """ 18 _message = """
15 This is my commit message. There are many like it, but this one is mine. 19 This is my commit message. There are many like it, but this one is mine.
16 20
17 My commit message is my best friend. It is my life. I must master it. 21 My commit message is my best friend. It is my life. I must master it.
18 22
19 """ 23 """
20 24
21 _position = 'refs/heads/master@{#292272}' 25 _position = 'refs/heads/master@{#292272}'
22 26
23 _position_footer = 'Cr-Commit-Position: %s\n' % _position 27 _position_footer = 'Cr-Commit-Position: %s\n' % _position
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 101
98 self.assertEqual( 102 self.assertEqual(
99 git_footers.add_footer_change_id('header\n\nBUG: yy\n\nPos: 1', 'Ixxx'), 103 git_footers.add_footer_change_id('header\n\nBUG: yy\n\nPos: 1', 'Ixxx'),
100 'header\n\nBUG: yy\n\nChange-Id: Ixxx\nPos: 1') 104 'header\n\nBUG: yy\n\nChange-Id: Ixxx\nPos: 1')
101 105
102 # Special case: first line is never a footer, even if it looks line one. 106 # Special case: first line is never a footer, even if it looks line one.
103 self.assertEqual( 107 self.assertEqual(
104 git_footers.add_footer_change_id('header: like footer', 'Ixxx'), 108 git_footers.add_footer_change_id('header: like footer', 'Ixxx'),
105 'header: like footer\n\nChange-Id: Ixxx') 109 'header: like footer\n\nChange-Id: Ixxx')
106 110
111 def testReadStdin(self):
112 self.mock(git_footers.sys, 'stdin', StringIO.StringIO(
113 'line\r\notherline\r\n\r\n\r\nFoo: baz'))
114
115 stdout = StringIO.StringIO()
116 self.mock(git_footers.sys, 'stdout', stdout)
117
118 self.assertEqual(git_footers.main([]), 0)
119 self.assertEqual(stdout.getvalue(), "Foo: ['baz']\n")
120
121
107 122
108 if __name__ == '__main__': 123 if __name__ == '__main__':
109 unittest.main() 124 unittest.main()
OLDNEW
« tests/gclient_test.py ('K') | « tests/gclient_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698