~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_options.py

  • Committer: wang
  • Date: 2006-10-29 13:41:32 UTC
  • mto: (2104.4.1 wang_65714)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: wang@ubuntu-20061029134132-3d7f4216f20c4aef
Replace python's difflib by patiencediff because the worst case 
performance is cubic for difflib and people commiting large data 
files are often hurt by this. The worst case performance of patience is 
quadratic. Fix bug 65714.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 2005, 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
2
16
 
 
17
from bzrlib.builtins import cmd_commit, cmd_log, cmd_status
 
18
from bzrlib.commands import Command, parse_args
 
19
from bzrlib import errors
 
20
from bzrlib import option
3
21
from bzrlib.tests import TestCase
4
 
from bzrlib.commands import Command, parse_args
5
 
from bzrlib.builtins import cmd_commit, cmd_log, cmd_status
6
22
 
7
23
# TODO: might be nice to just parse them into a structured form and test
8
24
# against that, rather than running the whole command.
28
44
    def test_option_help(self):
29
45
        """Options have help strings."""
30
46
        out, err = self.run_bzr_captured(['commit', '--help'])
31
 
        self.assertContainsRe(out, r'--file.*file containing commit message')
32
 
        self.assertContainsRe(out, r'--help.*-h')
 
47
        self.assertContainsRe(out, r'--file(.|\n)*file containing commit'
 
48
                                   ' message')
 
49
        self.assertContainsRe(out, r'-h.*--help')
33
50
 
34
51
    def test_option_help_global(self):
35
52
        """Global options have help strings."""
44
61
 
45
62
    def test_unknown_short_opt(self):
46
63
        out, err = self.run_bzr_captured(['help', '-r'], retcode=3)
47
 
        self.assertContainsRe(err, r'unknown option')
 
64
        self.assertContainsRe(err, r'no such option')
48
65
 
49
66
    def test_allow_dash(self):
50
67
        """Test that we can pass a plain '-' as an argument."""
51
68
        self.assertEqual((['-'], {}), parse_args(cmd_commit(), ['-']))
52
69
 
 
70
    def test_conversion(self):
 
71
        def parse(options, args):
 
72
            parser = option.get_optparser(dict((o.name, o) for o in options))
 
73
            return parser.parse_args(args)
 
74
        options = [option.Option('hello')]
 
75
        opts, args = parse(options, ['--no-hello', '--hello'])
 
76
        self.assertEqual(True, opts.hello)
 
77
        opts, args = parse(options, [])
 
78
        self.assertEqual(option.OptionParser.DEFAULT_VALUE, opts.hello)
 
79
        opts, args = parse(options, ['--hello', '--no-hello'])
 
80
        self.assertEqual(False, opts.hello)
 
81
        options = [option.Option('number', type=int)]
 
82
        opts, args = parse(options, ['--number', '6'])
 
83
        self.assertEqual(6, opts.number)
 
84
        self.assertRaises(errors.BzrCommandError, parse, options, ['--number'])
 
85
        self.assertRaises(errors.BzrCommandError, parse, options, 
 
86
                          ['--no-number'])
 
87
 
 
88
    def test_iter_switches(self):
 
89
        opt = option.Option('hello', help='fg')
 
90
        self.assertEqual(list(opt.iter_switches()),
 
91
                         [('hello', None, None, 'fg')])
 
92
        opt = option.Option('hello', help='fg', type=int)
 
93
        self.assertEqual(list(opt.iter_switches()),
 
94
                         [('hello', None, 'ARG', 'fg')])
 
95
        opt = option.Option('hello', help='fg', type=int, argname='gar')
 
96
        self.assertEqual(list(opt.iter_switches()),
 
97
                         [('hello', None, 'GAR', 'fg')])
53
98
 
54
99
#     >>> parse_args('log -r 500'.split())
55
100
#     (['log'], {'revision': [<RevisionSpec_int 500>]})