~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_options.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-09 23:12:55 UTC
  • mfrom: (3920.2.37 dpush)
  • Revision ID: pqm@pqm.ubuntu.com-20090409231255-o8w1g2q3igiyf8b2
(Jelmer) Add the dpush command.

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
        self.assertEqual('hello', name)
319
319
        self.assertEqual([], value)
320
320
 
321
 
    def test_list_option_param_name(self):
322
 
        """Test list options can have their param_name set."""
323
 
        options = [option.ListOption('hello', type=str, param_name='greeting')]
324
 
        opts, args = self.parse(
325
 
            options, ['--hello=world', '--hello=sailor'])
326
 
        self.assertEqual(['world', 'sailor'], opts.greeting)
327
 
 
328
321
 
329
322
class TestOptionDefinitions(TestCase):
330
323
    """Tests for options in the Bazaar codebase."""
331
324
 
332
325
    def get_builtin_command_options(self):
333
326
        g = []
334
 
        for cmd_name in sorted(commands.all_command_names()):
335
 
            cmd = commands.get_cmd_object(cmd_name)
 
327
        for cmd_name, cmd_class in sorted(commands.get_all_cmds()):
 
328
            cmd = cmd_class()
336
329
            for opt_name, opt in sorted(cmd.options().items()):
337
330
                g.append((cmd_name, opt))
338
331
        return g
345
338
        g = dict(option.Option.OPTIONS.items())
346
339
        used_globals = {}
347
340
        msgs = []
348
 
        for cmd_name in sorted(commands.all_command_names()):
349
 
            cmd = commands.get_cmd_object(cmd_name)
350
 
            for option_or_name in sorted(cmd.takes_options):
 
341
        for cmd_name, cmd_class in sorted(commands.get_all_cmds()):
 
342
            for option_or_name in sorted(cmd_class.takes_options):
351
343
                if not isinstance(option_or_name, basestring):
352
344
                    self.assertIsInstance(option_or_name, option.Option)
353
345
                elif not option_or_name in g:
354
346
                    msgs.append("apparent reference to undefined "
355
347
                        "global option %r from %r"
356
 
                        % (option_or_name, cmd))
 
348
                        % (option_or_name, cmd_class))
357
349
                else:
358
350
                    used_globals.setdefault(option_or_name, []).append(cmd_name)
359
351
        unused_globals = set(g.keys()) - set(used_globals.keys())