Changeset 8d9afdc in trunk
- Timestamp:
- 2016-09-09T22:37:28Z (9 years ago)
- Branches:
- master
- Children:
- 57bed47, ecc2080
- Parents:
- ff82112
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified docs/frontends/CLI.rst ¶
rff82112 r8d9afdc 611 611 that are holding the encoded+encrypted data for this file. 612 612 613 "``tahoe debug repl``" will launch an interactive Python interpreter in which614 the Tahoe-LAFS packages and modules are available on ``sys.path`` (e.g. by using615 '``import allmydata``'). This is most useful from a source tree: it simply sets616 the PYTHONPATH correctly and runs the Python executable.617 618 613 "``tahoe debug corrupt-share SHAREFILE``" will flip a bit in the given 619 614 sharefile. This can be used to test the client-side verification/repair code. 620 615 Obviously, this command should not be used during normal operation. 621 622 "``tahoe debug trial [OPTIONS] [TESTSUITE]``" will run the tests specified by623 TESTSUITE (defaulting to the whole Tahoe test suite), using Twisted Trial. -
TabularUnified docs/man/man1/tahoe.1 ¶
rff82112 r8d9afdc 255 255 .RS 256 256 .RE 257 .TP258 .B \f[B]repl\f[]259 Open a Python interpreter.260 .RS261 .RE262 .TP263 .B \f[B]trial\f[]264 Run tests using Twisted Trial with the right imports.265 .RS266 .RE267 257 .PP 268 258 Please run e.g.\ `tahoe debug dump-share --help' for more -
TabularUnified src/allmydata/scripts/common.py ¶
rff82112 r8d9afdc 24 24 super(BaseOptions, self).__init__() 25 25 self.command_name = os.path.basename(sys.argv[0]) 26 if self.command_name == 'trial':27 self.command_name = 'tahoe'28 26 29 27 # Only allow "tahoe --version", not e.g. "tahoe start --version" -
TabularUnified src/allmydata/scripts/debug.py ¶
rff82112 r8d9afdc 5 5 from twisted.python import usage, failure 6 6 from twisted.internet import defer 7 from twisted.scripts import trial as twisted_trial8 7 from foolscap.logging import cli as foolscap_cli 9 8 from allmydata.scripts.common import BaseOptions … … 944 943 class ReplOptions(BaseOptions): 945 944 def getSynopsis(self): 946 return "Usage: tahoe [global-options] debug repl"945 return "Usage: tahoe debug repl (OBSOLETE)" 947 946 948 947 def repl(options): 949 import code950 return code.interact()948 print >>options.stderr, "'tahoe debug repl' is obsolete. Please run 'python' in a virtualenv." 949 return 1 951 950 952 951 953 952 DEFAULT_TESTSUITE = 'allmydata' 954 953 955 class TrialOptions( twisted_trial.Options):954 class TrialOptions(BaseOptions): 956 955 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)" 973 957 974 958 def 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 988 961 989 962 def fixOptionsClass( (subcmd, shortcut, OptionsClass, desc) ): … … 1038 1011 ["catalog-shares", None, CatalogSharesOptions, "Describe all shares in node dirs."], 1039 1012 ["corrupt-share", None, CorruptShareOptions, "Corrupt a share by flipping a bit."], 1040 ["repl", None, ReplOptions, "O pen 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"], 1042 1015 ["flogtool", None, FlogtoolOptions, "Utilities to access log files."], 1043 1016 ] … … 1054 1027 subcommand. 1055 1028 """ 1056 # See ticket #1441 for why we print different information when1057 # 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 of1061 Tahoe), install the 'python-coverage' package and then use:1062 1063 python-coverage run --branch /usr/bin/tahoe debug trial1064 """1065 else:1066 t += """1067 Another debugging feature is that bin%stahoe allows executing an arbitrary1068 "runner" command (typically an installed Python script, such as 'coverage'),1069 with the Tahoe libraries on the PYTHONPATH. The runner command name is1070 prefixed with '@', and any occurrences of '@tahoe' in its arguments are1071 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 trial1076 1077 to get branch coverage for the Tahoe test suite. Or, to run python with1078 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)1082 1029 return t 1083 1030 -
TabularUnified src/allmydata/test/cli/test_cli.py ¶
rff82112 r8d9afdc 687 687 self.failUnlessIn("[options] NODEDIR", help) 688 688 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 694 689 def test_debug_flogtool(self): 695 690 options = debug.FlogtoolOptions() -
TabularUnified src/allmydata/test/test_system.py ¶
rff82112 r8d9afdc 2346 2346 return d 2347 2347 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 return2353 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 trial2374 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 d2384 2385 2348 def _run_cli(self, argv, stdin=""): 2386 2349 #print "CLI:", argv
Note: See TracChangeset
for help on using the changeset viewer.