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

Side by Side Diff: tests/gclient_scm_test.py

Issue 328843005: Consolidated 'git' refish parsing into a class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« gclient_scm.py ('K') | « gclient_scm.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) 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 gclient_scm.py.""" 6 """Unit tests for gclient_scm.py."""
7 7
8 # pylint: disable=E1103 8 # pylint: disable=E1103
9 9
10 # Import before super_mox to keep valid references. 10 # Import before super_mox to keep valid references.
(...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True) 1267 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True)
1268 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], 1268 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'],
1269 cwd=self.base_path).AndReturn('blah') 1269 cwd=self.base_path).AndReturn('blah')
1270 # pylint: disable=E1120 1270 # pylint: disable=E1120
1271 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) 1271 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path)
1272 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr') 1272 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr')
1273 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], 1273 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'],
1274 cwd=self.base_path).AndRaise(error) 1274 cwd=self.base_path).AndRaise(error)
1275 gclient_scm.GitWrapper._Fetch(options) 1275 gclient_scm.GitWrapper._Fetch(options)
1276 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) 1276 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path)
1277 gclient_scm.GitWrapper._Fetch(options)
1278 1277
1279 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True) 1278 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True)
1280 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes( 1279 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes(
1281 ).AndReturn(True) 1280 ).AndReturn(True)
1282 1281
1283 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True) 1282 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True)
1284 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1 1283 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1
1285 ).AndReturn(True) 1284 ).AndReturn(True)
1286 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big 1285 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big
1287 ).MultipleTimes(2).AndReturn(False) 1286 ).MultipleTimes(2).AndReturn(False)
1287 # pylint: disable=E1120
1288 gclient_scm.GitWrapper._Fetch(options)
1288 1289
1289 gclient_scm.os.path.isdir(self.base_path).AndReturn(False) 1290 gclient_scm.os.path.isdir(self.base_path).AndReturn(False)
1290 gclient_scm.os.path.isdir(self.base_path).MultipleTimes().AndReturn(True) 1291 gclient_scm.os.path.isdir(self.base_path).MultipleTimes().AndReturn(True)
1291 1292
1292 self.mox.ReplayAll() 1293 self.mox.ReplayAll()
1293 1294
1294 git_svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, 1295 git_svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir,
1295 relpath=self.relpath) 1296 relpath=self.relpath)
1296 # Without an existing checkout, this should fail. 1297 # Without an existing checkout, this should fail.
1297 # TODO(dbeam) Fix this. http://crbug.com/109184 1298 # TODO(dbeam) Fix this. http://crbug.com/109184
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 relpath=self.relpath) 1566 relpath=self.relpath)
1566 file_list = [] 1567 file_list = []
1567 options.revision = 'unmanaged' 1568 options.revision = 'unmanaged'
1568 scm.update(options, (), file_list) 1569 scm.update(options, (), file_list)
1569 self.assertEquals(file_list, expected_file_list) 1570 self.assertEquals(file_list, expected_file_list)
1570 self.assertEquals(scm.revinfo(options, (), None), 1571 self.assertEquals(scm.revinfo(options, (), None),
1571 '069c602044c5388d2d15c3f875b057c852003458') 1572 '069c602044c5388d2d15c3f875b057c852003458')
1572 self.checkstdout('________ unmanaged solution; skipping .\n') 1573 self.checkstdout('________ unmanaged solution; skipping .\n')
1573 1574
1574 1575
1576 class GitRefishTestCase(unittest.TestCase):
1577
1578 @staticmethod
1579 def parse(revision, **kwargs):
1580 kwargs.setdefault('remote', 'origin')
1581 kwargs.setdefault('other_remotes', ('server', 'backup'))
1582 return gclient_scm.GitRefish.Parse(revision, **kwargs)
1583
1584 def testParse(self):
1585 self.assertEquals(
M-A Ruel 2014/06/24 21:18:11 Use assertEqual instead This test would maybe ben
1586 self.parse('refs/heads/master'),
1587 gclient_scm.GitRefish(
1588 source='refs/heads/master',
1589 is_branch=True,
1590 local_ref='master',
1591 remote='origin',
1592 remote_ref='master',
1593 remote_refspec='origin/master',
1594 upstream_branch='refs/remotes/origin/master',
1595 )
1596 )
1597
1598 self.assertEquals(
1599 self.parse('origin/foo/bar'),
1600 gclient_scm.GitRefish(
1601 source='origin/foo/bar',
1602 is_branch=True,
1603 local_ref='refs/remotes/origin/foo/bar',
1604 remote='origin',
1605 remote_ref='foo/bar',
1606 remote_refspec='origin/foo/bar',
1607 upstream_branch='origin/foo/bar',
1608 )
1609 )
1610
1611 self.assertEquals(
1612 self.parse('server/foo/bar'),
1613 gclient_scm.GitRefish(
1614 source='server/foo/bar',
1615 is_branch=True,
1616 local_ref='refs/remotes/server/foo/bar',
1617 remote='server',
1618 remote_ref='foo/bar',
1619 remote_refspec='server/foo/bar',
1620 upstream_branch='server/foo/bar',
1621 )
1622 )
1623
1624 self.assertEquals(
1625 self.parse('refs/remotes/foo/bar/baz'),
1626 gclient_scm.GitRefish(
1627 source='refs/remotes/foo/bar/baz',
1628 is_branch=True,
1629 local_ref='refs/remotes/foo/bar/baz',
1630 remote='foo',
1631 remote_ref='bar/baz',
1632 remote_refspec='foo/bar/baz',
1633 upstream_branch='refs/remotes/foo/bar/baz',
1634 )
1635 )
1636
1637 hash_value = '0c745b5ff533cf50a8731e168908644a9d9be4cf'
1638 self.assertEquals(
1639 self.parse(hash_value),
1640 gclient_scm.GitRefish(
1641 source=hash_value,
1642 is_branch=False,
1643 local_ref=hash_value,
1644 remote='origin',
1645 remote_ref=hash_value,
1646 remote_refspec=hash_value,
1647 upstream_branch=None,
1648 )
1649 )
1650
1651 # Short hash (consider it a hash)
1652 hash_value = '0c745b5'
1653 self.assertEquals(
1654 self.parse(
1655 hash_value,
1656 ),
1657 gclient_scm.GitRefish(
1658 source=hash_value,
1659 is_branch=False,
1660 local_ref=hash_value,
1661 remote='origin',
1662 remote_ref=hash_value,
1663 remote_refspec=hash_value,
1664 upstream_branch=None,
1665 )
1666 )
1667
1668
1575 if __name__ == '__main__': 1669 if __name__ == '__main__':
1576 if '-v' in sys.argv: 1670 if '-v' in sys.argv:
1577 logging.basicConfig( 1671 logging.basicConfig(
1578 level=logging.DEBUG, 1672 level=logging.DEBUG,
1579 format='%(asctime).19s %(levelname)s %(filename)s:' 1673 format='%(asctime).19s %(levelname)s %(filename)s:'
1580 '%(lineno)s %(message)s') 1674 '%(lineno)s %(message)s')
1581 unittest.main() 1675 unittest.main()
1582 1676
1583 # vim: ts=2:sw=2:tw=80:et: 1677 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« gclient_scm.py ('K') | « gclient_scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698