Changeset 8d9afdc in trunk


Ignore:
Timestamp:
2016-09-09T22:37:28Z (9 years ago)
Author:
Brian Warner <warner@…>
Branches:
master
Children:
57bed47, ecc2080
Parents:
ff82112
Message:

CLI: remove 'debug trial', 'debug repl'

These are obsolete. Tests are run with 'tox', or by running 'trial
allmydata' from a populated virtualenv. A populated virtualenv is also
the right way to get a repl: just run 'python'.

refs ticket:2735

Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified docs/frontends/CLI.rst

    rff82112 r8d9afdc  
    611611that are holding the encoded+encrypted data for this file.
    612612
    613 "``tahoe debug repl``" will launch an interactive Python interpreter in which
    614 the Tahoe-LAFS packages and modules are available on ``sys.path`` (e.g. by using
    615 '``import allmydata``'). This is most useful from a source tree: it simply sets
    616 the PYTHONPATH correctly and runs the Python executable.
    617 
    618613"``tahoe debug corrupt-share SHAREFILE``" will flip a bit in the given
    619614sharefile. This can be used to test the client-side verification/repair code.
    620615Obviously, this command should not be used during normal operation.
    621 
    622 "``tahoe debug trial [OPTIONS] [TESTSUITE]``" will run the tests specified by
    623 TESTSUITE (defaulting to the whole Tahoe test suite), using Twisted Trial.
  • TabularUnified docs/man/man1/tahoe.1

    rff82112 r8d9afdc  
    255255.RS
    256256.RE
    257 .TP
    258 .B \f[B]repl\f[]
    259 Open a Python interpreter.
    260 .RS
    261 .RE
    262 .TP
    263 .B \f[B]trial\f[]
    264 Run tests using Twisted Trial with the right imports.
    265 .RS
    266 .RE
    267257.PP
    268258Please run e.g.\ `tahoe debug dump-share --help' for more
  • TabularUnified src/allmydata/scripts/common.py

    rff82112 r8d9afdc  
    2424        super(BaseOptions, self).__init__()
    2525        self.command_name = os.path.basename(sys.argv[0])
    26         if self.command_name == 'trial':
    27             self.command_name = 'tahoe'
    2826
    2927    # Only allow "tahoe --version", not e.g. "tahoe start --version"
  • TabularUnified src/allmydata/scripts/debug.py

    rff82112 r8d9afdc  
    55from twisted.python import usage, failure
    66from twisted.internet import defer
    7 from twisted.scripts import trial as twisted_trial
    87from foolscap.logging import cli as foolscap_cli
    98from allmydata.scripts.common import BaseOptions
     
    944943class ReplOptions(BaseOptions):
    945944    def getSynopsis(self):
    946         return "Usage: tahoe [global-options] debug repl"
     945        return "Usage: tahoe debug repl (OBSOLETE)"
    947946
    948947def repl(options):
    949     import code
    950     return code.interact()
     948    print >>options.stderr, "'tahoe debug repl' is obsolete. Please run 'python' in a virtualenv."
     949    return 1
    951950
    952951
    953952DEFAULT_TESTSUITE = 'allmydata'
    954953
    955 class TrialOptions(twisted_trial.Options):
     954class TrialOptions(BaseOptions):
    956955    def getSynopsis(self):
    957         return "Usage: tahoe [global-options] debug trial [options] [[file|package|module|TestCase|testmethod]...]"
    958 
    959     def parseOptions(self, all_subargs, *a, **kw):
    960         self.trial_args = list(all_subargs)
    961 
    962         # any output from the option parsing will be printed twice, but that's harmless
    963         return twisted_trial.Options.parseOptions(self, all_subargs, *a, **kw)
    964 
    965     def parseArgs(self, *nonoption_args):
    966         if not nonoption_args:
    967             self.trial_args.append(DEFAULT_TESTSUITE)
    968 
    969     longdesc = twisted_trial.Options.longdesc + "\n\n" + (
    970         "The 'tahoe debug trial' command uses the correct imports for this "
    971         "instance of Tahoe-LAFS. The default test suite is '%s'."
    972         % DEFAULT_TESTSUITE)
     956        return "Usage: tahoe debug trial (OBSOLETE)"
    973957
    974958def trial(config):
    975     sys.argv = ['trial'] + config.trial_args
    976 
    977     from allmydata._version import full_version
    978     if full_version.endswith("-dirty"):
    979         print >>sys.stderr
    980         print >>sys.stderr, "WARNING: the source tree has been modified since the last commit."
    981         print >>sys.stderr, "(It is usually preferable to commit, then test, then amend the commit(s)"
    982         print >>sys.stderr, "if the tests fail.)"
    983         print >>sys.stderr
    984 
    985     # This does not return.
    986     twisted_trial.run()
    987 
     959    print >>config.stderr, "'tahoe debug trial' is obsolete. Please run 'tox', or use 'trial' in a virtualenv."
     960    return 1
    988961
    989962def fixOptionsClass( (subcmd, shortcut, OptionsClass, desc) ):
     
    10381011        ["catalog-shares", None, CatalogSharesOptions, "Describe all shares in node dirs."],
    10391012        ["corrupt-share", None, CorruptShareOptions, "Corrupt a share by flipping a bit."],
    1040         ["repl", None, ReplOptions, "Open a Python interpreter."],
    1041         ["trial", None, TrialOptions, "Run tests using Twisted Trial with the right imports."],
     1013        ["repl", None, ReplOptions, "OBSOLETE"],
     1014        ["trial", None, TrialOptions, "OBSOLETE"],
    10421015        ["flogtool", None, FlogtoolOptions, "Utilities to access log files."],
    10431016        ]
     
    10541027subcommand.
    10551028"""
    1056         # See ticket #1441 for why we print different information when
    1057         # run via /usr/bin/tahoe. Note that argv[0] is the full path.
    1058         if sys.argv[0] == '/usr/bin/tahoe':
    1059             t += """
    1060 To get branch coverage for the Tahoe test suite (on the installed copy of
    1061 Tahoe), install the 'python-coverage' package and then use:
    1062 
    1063     python-coverage run --branch /usr/bin/tahoe debug trial
    1064 """
    1065         else:
    1066             t += """
    1067 Another debugging feature is that bin%stahoe allows executing an arbitrary
    1068 "runner" command (typically an installed Python script, such as 'coverage'),
    1069 with the Tahoe libraries on the PYTHONPATH. The runner command name is
    1070 prefixed with '@', and any occurrences of '@tahoe' in its arguments are
    1071 replaced by the full path to the tahoe script.
    1072 
    1073 For example, if 'coverage' is installed and on the PATH, you can use:
    1074 
    1075     bin%stahoe @coverage run --branch @tahoe debug trial
    1076 
    1077 to get branch coverage for the Tahoe test suite. Or, to run python with
    1078 the -3 option that warns about Python 3 incompatibilities:
    1079 
    1080     bin%stahoe @python -3 @tahoe command [options]
    1081 """ % (os.sep, os.sep, os.sep)
    10821029        return t
    10831030
  • TabularUnified src/allmydata/test/cli/test_cli.py

    rff82112 r8d9afdc  
    687687        self.failUnlessIn("[options] NODEDIR", help)
    688688
    689     def test_debug_trial(self):
    690         help = str(debug.TrialOptions())
    691         self.failUnlessIn(" [global-options] debug trial [options] [[file|package|module|TestCase|testmethod]...]", help)
    692         self.failUnlessInNormalized("The 'tahoe debug trial' command uses the correct imports", help)
    693 
    694689    def test_debug_flogtool(self):
    695690        options = debug.FlogtoolOptions()
  • TabularUnified src/allmydata/test/test_system.py

    rff82112 r8d9afdc  
    23462346        return d
    23472347
    2348     def test_debug_trial(self):
    2349         def _check_for_line(lines, result, test):
    2350             for l in lines:
    2351                 if result in l and test in l:
    2352                     return
    2353             self.fail("output (prefixed with '##') does not have a line containing both %r and %r:\n## %s"
    2354                       % (result, test, "\n## ".join(lines)))
    2355 
    2356         def _check_for_outcome(lines, out, outcome):
    2357             self.failUnlessIn(outcome, out, "output (prefixed with '##') does not contain %r:\n## %s"
    2358                                             % (outcome, "\n## ".join(lines)))
    2359 
    2360         d = self.run_bintahoe(['debug', 'trial', '--reporter=verbose',
    2361                                'allmydata.test.trialtest'])
    2362         def _check_failure( (out, err, rc) ):
    2363             self.failUnlessEqual(rc, 1)
    2364             lines = out.split('\n')
    2365             _check_for_line(lines, "[SKIPPED]", "test_skip")
    2366             _check_for_line(lines, "[TODO]",    "test_todo")
    2367             _check_for_line(lines, "[FAIL]",    "test_fail")
    2368             _check_for_line(lines, "[ERROR]",   "test_deferred_error")
    2369             _check_for_line(lines, "[ERROR]",   "test_error")
    2370             _check_for_outcome(lines, out, "FAILED")
    2371         d.addCallback(_check_failure)
    2372 
    2373         # the --quiet argument regression-tests a problem in finding which arguments to pass to trial
    2374         d.addCallback(lambda ign: self.run_bintahoe(['--quiet', 'debug', 'trial', '--reporter=verbose',
    2375                                                      'allmydata.test.trialtest.Success']))
    2376         def _check_success( (out, err, rc) ):
    2377             self.failUnlessEqual(rc, 0)
    2378             lines = out.split('\n')
    2379             _check_for_line(lines, "[SKIPPED]", "test_skip")
    2380             _check_for_line(lines, "[TODO]",    "test_todo")
    2381             _check_for_outcome(lines, out, "PASSED")
    2382         d.addCallback(_check_success)
    2383         return d
    2384 
    23852348    def _run_cli(self, argv, stdin=""):
    23862349        #print "CLI:", argv
Note: See TracChangeset for help on using the changeset viewer.