tests/test_rev.py @ e90cf5cad060

Use @cmdutil.command decorator to define command table.

It's been available for 5 years (since Mercurial 1.9), and Mercurial 3.8
deprecates the use of hand-built command tables as of 38dc3f28f478.
author Kevin Bullock <kbullock@ringworld.org>
date Wed, 20 Apr 2016 10:15:36 -0500
parents a85dc0c43f86
children (none)
'''Test output of {node}.'''

from nose import *
from util import *


def _parent_rev():
    opts = { 'template': '{rev}', 'rev': '.', 'date': None, 'user': None }
    
    _ui = get_sandbox_ui()
    _ui.pushbuffer()
    commands.log(_ui, get_sandbox_repo(), **opts)
    
    return _ui.popbuffer()


@with_setup(setup_sandbox, teardown_sandbox)
def test_nullrev():
    output = prompt(fs='{rev}')
    assert output == ''
    
    output = prompt(fs='{ at revision {rev}}')
    assert output == ''


@with_setup(setup_sandbox, teardown_sandbox)
def test_rev():
    hg_commit()
    
    output = prompt(fs='{rev}')
    assert output == _parent_rev()
    
    output = prompt(fs='{ at revision {rev}}')
    assert output == ' at revision %s' % _parent_rev()
    
    hg_commit()
    output = prompt(fs='{rev}')
    assert output == _parent_rev()


@with_setup(setup_sandbox, teardown_sandbox)
def test_merge_filter():
    hg_commit('one.txt')
    hg_commit('one.txt')
    rev_to_merge = _parent_rev()
    
    hg_update(0)
    hg_commit('two.txt')
    hg_merge(1)
    
    output = prompt(fs='{rev|merge}')
    assert output == rev_to_merge
    
    output = prompt(fs='{ merging with {rev|merge}}')
    assert output == ' merging with %s' % rev_to_merge