19
19
from bzrlib import (
25
from bzrlib.builtins import cmd_commit
28
from bzrlib.builtins import cmd_commit, cmd_log, cmd_status
26
29
from bzrlib.commands import Command, parse_args
27
30
from bzrlib.tests import TestCase
28
31
from bzrlib.repofmt import knitrepo
39
42
def test_parse_args(self):
40
43
"""Option parser"""
41
# XXX: Using cmd_commit makes these tests overly sensitive to changes
42
# to cmd_commit, when they are meant to be about option parsing in
44
self.assertEqual(parse_args(cmd_commit(), ['--help']),
45
([], {'exclude': [], 'fixes': [], 'help': True}))
46
self.assertEqual(parse_args(cmd_commit(), ['--message=biter']),
47
([], {'exclude': [], 'fixes': [], 'message': 'biter'}))
44
eq = self.assertEquals
45
eq(parse_args(cmd_commit(), ['--help']),
46
([], {'fixes': [], 'help': True}))
47
eq(parse_args(cmd_commit(), ['--message=biter']),
48
([], {'fixes': [], 'message': 'biter'}))
49
50
def test_no_more_opts(self):
50
51
"""Terminated options"""
51
self.assertEqual(parse_args(cmd_commit(), ['--', '-file-with-dashes']),
52
(['-file-with-dashes'], {'exclude': [], 'fixes': []}))
52
self.assertEquals(parse_args(cmd_commit(), ['--', '-file-with-dashes']),
53
(['-file-with-dashes'], {'fixes': []}))
54
55
def test_option_help(self):
55
56
"""Options have help strings."""
66
67
def test_option_arg_help(self):
67
68
"""Help message shows option arguments."""
68
69
out, err = self.run_bzr('help commit')
69
self.assertEqual(err, '')
70
self.assertEquals(err, '')
70
71
self.assertContainsRe(out, r'--file[ =]MSGFILE')
72
73
def test_unknown_short_opt(self):
81
82
def test_allow_dash(self):
82
83
"""Test that we can pass a plain '-' as an argument."""
83
self.assertEqual((['-']), parse_args(cmd_commit(), ['-'])[0])
85
(['-'], {'fixes': []}), parse_args(cmd_commit(), ['-']))
85
87
def parse(self, options, args):
86
88
parser = option.get_optparser(dict((o.name, o) for o in options))
256
258
opts, args = self.parse(options, ['--hello=world', '--hello=sailor'])
257
259
self.assertEqual(['world', 'sailor'], opts.hello)
259
def test_list_option_with_dash(self):
260
options = [option.ListOption('with-dash', type=str)]
261
opts, args = self.parse(options, ['--with-dash=world',
262
'--with-dash=sailor'])
263
self.assertEqual(['world', 'sailor'], opts.with_dash)
265
261
def test_list_option_no_arguments(self):
266
262
options = [option.ListOption('hello', type=str)]
267
263
opts, args = self.parse(options, [])