view tests/test_fetch_truncated.py @ 455:54e57da61c1a

This patch fixes, partially, an issue with tagpaths. I found that, when using the tagpaths variable, I would actually get fatal exceptions when the clone was happening. This line prevents the fatal exception from occurring.
author Michael J. Pedersen <mpedersen@datapipe.com>
date Thu, 02 Jul 2009 16:12:09 -0500
parents 75f082b5897e
children d96aa92d9ad9
line wrap: on
line source

import unittest

from mercurial import commands
from mercurial import hg
from mercurial import ui

import test_util

class TestFetchTruncatedHistory(test_util.TestBase):
    def test_truncated_history(self, stupid=False):
        # Test repository does not follow the usual layout
        test_util.load_svndump_fixture(self.repo_path, 'truncatedhistory.svndump')
        svn_url = test_util.fileurl(self.repo_path + '/project2')
        _ui = ui.ui()
        _ui.setconfig('hgsubversion', 'stupid', str(stupid))
        commands.clone(_ui, svn_url, self.wc_path, noupdate=True)
        repo = hg.repository(_ui, self.wc_path)

        # We are converting /project2/trunk coming from:
        #
        # Changed paths:
        #     D /project1
        #     A /project2/trunk (from /project1:2)
        #
        # Here a full fetch should be performed since we are starting
        # the conversion on an already filled branch.
        tip = repo['tip']
        files = tip.manifest().keys()
        files.sort()
        self.assertEqual(files, ['a', 'b'])
        self.assertEqual(repo['tip']['a'].data(), 'a\n')

    def test_truncated_history_stupid(self):
        self.test_truncated_history(True)

def suite():
    all = [unittest.TestLoader().loadTestsFromTestCase(TestFetchTruncatedHistory),
          ]
    return unittest.TestSuite(all)