review/tests/util.py @ b5deba11fc17

Add working tests.  Awesome.
author Steve Losh <steve@stevelosh.com>
date Sun, 04 Oct 2009 16:12:09 -0400
parents 4d7eca6c1832
children 1596046f752c
import os, shutil
import sample_data
from mercurial import commands, hg, ui
from .. import extension_ui


_ui = ui.ui()
def review(init=False, local_path='', remote_path=''):
    return extension_ui.review(_ui, get_sandbox_repo(),
        init=init, local_path=local_path, remote_path=remote_path)


sandbox_path = os.path.join(os.path.realpath('.'), 'sandbox')

def setup_sandbox():
    os.mkdir(sandbox_path)
    os.chdir(sandbox_path)
    
    commands.init(ui.ui())
    sandbox = get_sandbox_repo()
    
    opts = { 'addremove': True, 'date': None, 'user': 'Review Tester',
             'logfile': None, 'message': "Sandbox commit.", }
    for state in sample_data.log:
        for filename in state:
            with open(filename, 'w') as f:
                f.write(state[filename])
        commands.commit(ui.ui(), sandbox, **opts)

def teardown_sandbox():
    os.chdir(os.path.realpath(os.path.join(sandbox_path, os.pardir)))
    shutil.rmtree(sandbox_path)


def get_sandbox_repo():
    return hg.repository(_ui, '.')

def get_datastore_repo(path):
    return hg.repository(_ui, path)