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 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 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1271 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True) | 1271 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'Capture', True) |
1272 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], | 1272 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], |
1273 cwd=self.base_path).AndReturn('blah') | 1273 cwd=self.base_path).AndReturn('blah') |
1274 # pylint: disable=E1120 | 1274 # pylint: disable=E1120 |
1275 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) | 1275 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) |
1276 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr') | 1276 error = subprocess2.CalledProcessError(1, 'cmd', '/cwd', 'stdout', 'stderr') |
1277 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], | 1277 gclient_scm.scm.GIT.Capture(['config', '--get', 'svn-remote.svn.fetch'], |
1278 cwd=self.base_path).AndRaise(error) | 1278 cwd=self.base_path).AndRaise(error) |
1279 gclient_scm.GitWrapper._Fetch(options) | 1279 gclient_scm.GitWrapper._Fetch(options) |
1280 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) | 1280 gclient_scm.scm.GIT.Capture(['svn', 'fetch'], cwd=self.base_path) |
1281 gclient_scm.GitWrapper._Fetch(options) | |
1282 | 1281 |
1283 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True) | 1282 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsGitSvn', True) |
1284 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes( | 1283 gclient_scm.scm.GIT.IsGitSvn(cwd=self.base_path).MultipleTimes( |
1285 ).AndReturn(True) | 1284 ).AndReturn(True) |
1286 | 1285 |
1287 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True) | 1286 self.mox.StubOutWithMock(gclient_scm.scm.GIT, 'IsValidRevision', True) |
1288 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1 | 1287 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=self.fake_hash_1 |
1289 ).AndReturn(True) | 1288 ).AndReturn(True) |
1290 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big | 1289 gclient_scm.scm.GIT.IsValidRevision(cwd=self.base_path, rev=too_big |
1291 ).MultipleTimes(2).AndReturn(False) | 1290 ).MultipleTimes(2).AndReturn(False) |
1291 # pylint: disable=E1120 | |
1292 gclient_scm.GitWrapper._Fetch(options) | |
1292 | 1293 |
1293 gclient_scm.os.path.isdir(self.base_path).AndReturn(False) | 1294 gclient_scm.os.path.isdir(self.base_path).AndReturn(False) |
1294 gclient_scm.os.path.isdir(self.base_path).MultipleTimes().AndReturn(True) | 1295 gclient_scm.os.path.isdir(self.base_path).MultipleTimes().AndReturn(True) |
1295 | 1296 |
1296 self.mox.ReplayAll() | 1297 self.mox.ReplayAll() |
1297 | 1298 |
1298 git_svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, | 1299 git_svn_scm = self._scm_wrapper(url=self.url, root_dir=self.root_dir, |
1299 relpath=self.relpath) | 1300 relpath=self.relpath) |
1300 # Without an existing checkout, this should fail. | 1301 # Without an existing checkout, this should fail. |
1301 # TODO(dbeam) Fix this. http://crbug.com/109184 | 1302 # TODO(dbeam) Fix this. http://crbug.com/109184 |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1573 relpath=self.relpath) | 1574 relpath=self.relpath) |
1574 file_list = [] | 1575 file_list = [] |
1575 options.revision = 'unmanaged' | 1576 options.revision = 'unmanaged' |
1576 scm.update(options, (), file_list) | 1577 scm.update(options, (), file_list) |
1577 self.assertEquals(file_list, expected_file_list) | 1578 self.assertEquals(file_list, expected_file_list) |
1578 self.assertEquals(scm.revinfo(options, (), None), | 1579 self.assertEquals(scm.revinfo(options, (), None), |
1579 '069c602044c5388d2d15c3f875b057c852003458') | 1580 '069c602044c5388d2d15c3f875b057c852003458') |
1580 self.checkstdout('________ unmanaged solution; skipping .\n') | 1581 self.checkstdout('________ unmanaged solution; skipping .\n') |
1581 | 1582 |
1582 | 1583 |
1584 class GitRefishTestCase(unittest.TestCase): | |
1585 | |
1586 @staticmethod | |
1587 def parse(revision, **kwargs): | |
1588 kwargs.setdefault('remote', 'origin') | |
1589 kwargs.setdefault('other_remotes', ('server', 'backup')) | |
1590 return gclient_scm.GitRefish.Parse(revision, **kwargs) | |
1591 | |
1592 def testParse(self): | |
1593 self.assertEquals( | |
M-A Ruel
2014/06/25 01:24:58
assertEqual. Likely loop based.
dnj
2014/06/25 20:14:02
Done.
| |
1594 self.parse('refs/heads/master'), | |
1595 gclient_scm.GitRefish( | |
1596 source='refs/heads/master', | |
1597 is_branch=True, | |
1598 local_ref='master', | |
1599 remote='origin', | |
1600 remote_ref='master', | |
1601 remote_refspec='origin/master', | |
1602 upstream_branch='refs/remotes/origin/master', | |
1603 ) | |
1604 ) | |
1605 | |
1606 self.assertEquals( | |
1607 self.parse('origin/foo/bar'), | |
1608 gclient_scm.GitRefish( | |
1609 source='origin/foo/bar', | |
1610 is_branch=True, | |
1611 local_ref='refs/remotes/origin/foo/bar', | |
1612 remote='origin', | |
1613 remote_ref='foo/bar', | |
1614 remote_refspec='origin/foo/bar', | |
1615 upstream_branch='origin/foo/bar', | |
1616 ) | |
1617 ) | |
1618 | |
1619 self.assertEquals( | |
1620 self.parse('server/foo/bar'), | |
1621 gclient_scm.GitRefish( | |
1622 source='server/foo/bar', | |
1623 is_branch=True, | |
1624 local_ref='refs/remotes/server/foo/bar', | |
1625 remote='server', | |
1626 remote_ref='foo/bar', | |
1627 remote_refspec='server/foo/bar', | |
1628 upstream_branch='server/foo/bar', | |
1629 ) | |
1630 ) | |
1631 | |
1632 self.assertEquals( | |
1633 self.parse('refs/remotes/foo/bar/baz'), | |
1634 gclient_scm.GitRefish( | |
1635 source='refs/remotes/foo/bar/baz', | |
1636 is_branch=True, | |
1637 local_ref='refs/remotes/foo/bar/baz', | |
1638 remote='foo', | |
1639 remote_ref='bar/baz', | |
1640 remote_refspec='foo/bar/baz', | |
1641 upstream_branch='refs/remotes/foo/bar/baz', | |
1642 ) | |
1643 ) | |
1644 | |
1645 hash_value = '0c745b5ff533cf50a8731e168908644a9d9be4cf' | |
1646 self.assertEquals( | |
1647 self.parse(hash_value), | |
1648 gclient_scm.GitRefish( | |
1649 source=hash_value, | |
1650 is_branch=False, | |
1651 local_ref=hash_value, | |
1652 remote='origin', | |
1653 remote_ref=hash_value, | |
1654 remote_refspec=hash_value, | |
1655 upstream_branch=None, | |
1656 ) | |
1657 ) | |
1658 | |
1659 # Short hash (consider it a hash) | |
1660 hash_value = '0c745b5' | |
1661 self.assertEquals( | |
1662 self.parse( | |
1663 hash_value, | |
1664 ), | |
1665 gclient_scm.GitRefish( | |
1666 source=hash_value, | |
1667 is_branch=False, | |
1668 local_ref=hash_value, | |
1669 remote='origin', | |
1670 remote_ref=hash_value, | |
1671 remote_refspec=hash_value, | |
1672 upstream_branch=None, | |
1673 ) | |
1674 ) | |
1675 | |
1676 | |
1583 if __name__ == '__main__': | 1677 if __name__ == '__main__': |
1584 level = logging.DEBUG if '-v' in sys.argv else logging.FATAL | 1678 level = logging.DEBUG if '-v' in sys.argv else logging.FATAL |
1585 logging.basicConfig( | 1679 logging.basicConfig( |
1586 level=level, | 1680 level=level, |
1587 format='%(asctime).19s %(levelname)s %(filename)s:' | 1681 format='%(asctime).19s %(levelname)s %(filename)s:' |
1588 '%(lineno)s %(message)s') | 1682 '%(lineno)s %(message)s') |
1589 unittest.main() | 1683 unittest.main() |
1590 | 1684 |
1591 # vim: ts=2:sw=2:tw=80:et: | 1685 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |