Chromium Code Reviews

Side by Side Diff: tests/presubmit_unittest.py

Issue 6897005: presubmit_support: cache the result of ChangedContents. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: presubmit_support: cache the result of ChangedContents. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « presubmit_support.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 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 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 presubmit_support.py and presubmit_canned_checks.py.""" 6 """Unit tests for presubmit_support.py and presubmit_canned_checks.py."""
7 7
8 # pylint is too confused. 8 # pylint is too confused.
9 # pylint: disable=E1101,E1103,R0201,W0212,W0403 9 # pylint: disable=E1101,E1103,R0201,W0212,W0403
10 10
(...skipping 1197 matching lines...)
1208 1208
1209 def testAffectedFile(self): 1209 def testAffectedFile(self):
1210 path = presubmit.os.path.join('foo', 'blat.cc') 1210 path = presubmit.os.path.join('foo', 'blat.cc')
1211 presubmit.os.path.exists(path).AndReturn(True) 1211 presubmit.os.path.exists(path).AndReturn(True)
1212 presubmit.os.path.isdir(path).AndReturn(False) 1212 presubmit.os.path.isdir(path).AndReturn(False)
1213 presubmit.gclient_utils.FileRead(path, 'rU').AndReturn('whatever\ncookie') 1213 presubmit.gclient_utils.FileRead(path, 'rU').AndReturn('whatever\ncookie')
1214 presubmit.scm.SVN.CaptureInfo(path).AndReturn( 1214 presubmit.scm.SVN.CaptureInfo(path).AndReturn(
1215 {'URL': 'svn:/foo/foo/blat.cc'}) 1215 {'URL': 'svn:/foo/foo/blat.cc'})
1216 self.mox.ReplayAll() 1216 self.mox.ReplayAll()
1217 af = presubmit.SvnAffectedFile('foo/blat.cc', 'M') 1217 af = presubmit.SvnAffectedFile('foo/blat.cc', 'M')
1218 self.failUnless(af.ServerPath() == 'svn:/foo/foo/blat.cc') 1218 self.assertEquals('svn:/foo/foo/blat.cc', af.ServerPath())
1219 self.failUnless(af.LocalPath() == presubmit.normpath('foo/blat.cc')) 1219 self.assertEquals(presubmit.normpath('foo/blat.cc'), af.LocalPath())
1220 self.failUnless(af.Action() == 'M') 1220 self.assertEquals('M', af.Action())
1221 self.assertEquals(af.NewContents(), ['whatever', 'cookie']) 1221 self.assertEquals(['whatever', 'cookie'], af.NewContents())
1222
1223 def testAffectedFileNotExists(self):
1224 presubmit.os.path.exists('notfound.cc').AndReturn(False)
1225 presubmit.gclient_utils.FileRead('notfound.cc', 'rU').AndRaise(IOError)
1226 self.mox.ReplayAll()
1222 af = presubmit.AffectedFile('notfound.cc', 'A') 1227 af = presubmit.AffectedFile('notfound.cc', 'A')
1223 self.failUnless(af.ServerPath() == '') 1228 self.assertEquals('', af.ServerPath())
1229 self.assertEquals([], af.NewContents())
1224 1230
1225 def testProperty(self): 1231 def testProperty(self):
1226 presubmit.scm.SVN.GetFileProperty('foo.cc', 'svn:secret-property' 1232 presubmit.scm.SVN.GetFileProperty('foo.cc', 'svn:secret-property'
1227 ).AndReturn('secret-property-value') 1233 ).AndReturn('secret-property-value')
1228 self.mox.ReplayAll() 1234 self.mox.ReplayAll()
1229 affected_file = presubmit.SvnAffectedFile('foo.cc', 'A') 1235 affected_file = presubmit.SvnAffectedFile('foo.cc', 'A')
1230 # Verify cache coherency. 1236 # Verify cache coherency.
1231 self.failUnless(affected_file.Property('svn:secret-property') == 1237 self.assertEquals('secret-property-value',
1232 'secret-property-value') 1238 affected_file.Property('svn:secret-property'))
1233 self.failUnless(affected_file.Property('svn:secret-property') == 1239 self.assertEquals('secret-property-value',
1234 'secret-property-value') 1240 affected_file.Property('svn:secret-property'))
1235 1241
1236 def testIsDirectoryNotExists(self): 1242 def testIsDirectoryNotExists(self):
1237 presubmit.os.path.exists('foo.cc').AndReturn(False) 1243 presubmit.os.path.exists('foo.cc').AndReturn(False)
1238 presubmit.scm.SVN.CaptureInfo('foo.cc').AndReturn({}) 1244 presubmit.scm.SVN.CaptureInfo('foo.cc').AndReturn({})
1239 self.mox.ReplayAll() 1245 self.mox.ReplayAll()
1240 affected_file = presubmit.SvnAffectedFile('foo.cc', 'A') 1246 affected_file = presubmit.SvnAffectedFile('foo.cc', 'A')
1241 # Verify cache coherency. 1247 # Verify cache coherency.
1242 self.failIf(affected_file.IsDirectory()) 1248 self.failIf(affected_file.IsDirectory())
1243 self.failIf(affected_file.IsDirectory()) 1249 self.failIf(affected_file.IsDirectory())
1244 1250
(...skipping 15 matching lines...)
1260 presubmit.os.path.exists(blat).AndReturn(True) 1266 presubmit.os.path.exists(blat).AndReturn(True)
1261 presubmit.os.path.isdir(blat).AndReturn(False) 1267 presubmit.os.path.isdir(blat).AndReturn(False)
1262 presubmit.os.path.exists(blob).AndReturn(True) 1268 presubmit.os.path.exists(blob).AndReturn(True)
1263 presubmit.os.path.isdir(blob).AndReturn(False) 1269 presubmit.os.path.isdir(blob).AndReturn(False)
1264 presubmit.scm.SVN.GetFileProperty(blat, 'svn:mime-type').AndReturn(None) 1270 presubmit.scm.SVN.GetFileProperty(blat, 'svn:mime-type').AndReturn(None)
1265 presubmit.scm.SVN.GetFileProperty(blob, 'svn:mime-type' 1271 presubmit.scm.SVN.GetFileProperty(blob, 'svn:mime-type'
1266 ).AndReturn('application/octet-stream') 1272 ).AndReturn('application/octet-stream')
1267 self.mox.ReplayAll() 1273 self.mox.ReplayAll()
1268 1274
1269 output = filter(lambda x: x.IsTextFile(), files) 1275 output = filter(lambda x: x.IsTextFile(), files)
1270 self.failUnless(len(output) == 1) 1276 self.assertEquals(1, len(output))
1271 self.failUnless(files[0] == output[0]) 1277 self.assertEquals(files[0], output[0])
1272 1278
1273 1279
1274 class ChangeUnittest(PresubmitTestsBase): 1280 class ChangeUnittest(PresubmitTestsBase):
1275 def testMembersChanged(self): 1281 def testMembersChanged(self):
1276 members = [ 1282 members = [
1277 'AbsoluteLocalPaths', 'AffectedFiles', 'AffectedTextFiles', 1283 'AbsoluteLocalPaths', 'AffectedFiles', 'AffectedTextFiles',
1278 'DescriptionText', 'FullDescriptionText', 'LocalPaths', 'Name', 1284 'DescriptionText', 'FullDescriptionText', 'LocalPaths', 'Name',
1279 'RepositoryRoot', 'RightHandSideLines', 'ServerPaths', 1285 'RepositoryRoot', 'RightHandSideLines', 'ServerPaths',
1280 'author_email', 'issue', 'patchset', 'scm', 'tags', 1286 'author_email', 'issue', 'patchset', 'scm', 'tags',
1281 ] 1287 ]
(...skipping 856 matching lines...)
2138 whitelist=['^a$', '^b$'], 2144 whitelist=['^a$', '^b$'],
2139 blacklist=['a']) 2145 blacklist=['a'])
2140 self.assertEqual(results, []) 2146 self.assertEqual(results, [])
2141 self.checkstdout( 2147 self.checkstdout(
2142 'Running %s\n' % presubmit.os.path.join('random_directory', 'b')) 2148 'Running %s\n' % presubmit.os.path.join('random_directory', 'b'))
2143 2149
2144 2150
2145 if __name__ == '__main__': 2151 if __name__ == '__main__':
2146 import unittest 2152 import unittest
2147 unittest.main() 2153 unittest.main()
OLDNEW
« no previous file with comments | « presubmit_support.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine