.. |
__init__.py
|
re-enable incident-reporting, but disable it in unit tests, because they take 150% longer, and the leftover trailing timers cause errors
|
2008-07-06 23:49:08 -07:00 |
check_grid.py
|
shebang: replace "/usr/bin/python" with "/usr/bin/env python"
|
2008-11-04 18:03:06 -07:00 |
check_load.py
|
shebang: replace "/usr/bin/python" with "/usr/bin/env python"
|
2008-11-04 18:03:06 -07:00 |
check_memory.py
|
remove more RuntimeError from unit tests, for #639
|
2009-02-22 17:28:55 -07:00 |
check_speed.py
|
check_speed: rearrange a bit to make it easy to disable certain portions
|
2008-04-21 17:29:59 -07:00 |
common_util.py
|
tests: stop using setUpClass/tearDownClass, since they've been deprecated in Twisted-8.2.0
|
2009-02-23 14:43:12 -07:00 |
common_web.py
|
tests/no_network: move GET into the GridTestMixin class
|
2009-02-24 18:33:00 -07:00 |
common.py
|
add more information to NotEnoughSharesError, split out new exceptions for no-servers and no-source-of-ueb-hash
|
2009-03-03 19:37:15 -07:00 |
figleaf.excludes
|
move all packages into src/, fix allmydata.Crypto build. Now you must perform a 'setup.py build' before using anything, and you must add the build directory (build/lib.linux-i686-2.4) to your PYTHONPATH before doing anything
|
2006-12-14 03:39:50 -07:00 |
no_network.py
|
tests/no_network: move GET into the GridTestMixin class
|
2009-02-24 18:33:00 -07:00 |
test_backupdb.py
|
test_backupdb: make the not-a-database file larger, since the older sqlite-2.3.2 on OS-X is easily fooled
|
2009-02-19 18:04:09 -07:00 |
test_base62.py
|
stop using 'as' as an identifier: as with 'with', 'as' has become a reserved word in python 2.6
|
2008-10-02 17:27:49 -07:00 |
test_checker.py
|
test_checker: improve test coverage for checker results
|
2009-02-23 14:19:43 -07:00 |
test_cli.py
|
web: fix the ERROR: line to work the same in python2.4 and 2.5
|
2009-02-25 01:46:21 -07:00 |
test_client.py
|
versioning: include an "appname" in the application version string in the versioning protocol, and make that appname be controlled by setup.py
|
2009-02-11 17:18:16 -07:00 |
test_codec.py
|
download: refactor handling of URI Extension Block and crypttext hash tree, simplify things
|
2008-12-05 08:17:54 -07:00 |
test_crawler.py
|
crawler: fix performance problems: only save state once per timeslice (not after every bucket), don't start the crawler until 5 minutes after node startup
|
2009-02-21 14:56:49 -07:00 |
test_deepcheck.py
|
webapi: modify streaming deep-manifest/deep-checker to emit an ERROR: line if they encounter an unrecoverable+untraversable directory. For #590.
|
2009-02-24 23:13:35 -07:00 |
test_dirnode.py
|
add --add-lease to 'tahoe check', 'tahoe deep-check', and webapi.
|
2009-02-17 19:32:43 -07:00 |
test_download.py
|
break storage.py into smaller pieces in storage/*.py . No behavioral changes.
|
2009-02-18 14:46:55 -07:00 |
test_encode.py
|
immutable: add a monitor API to CiphertextDownloader with which to tell it to stop its work
|
2009-01-08 14:42:15 -07:00 |
test_filenode.py
|
filenode: add get_repair_cap(), which uses the read-write filecap for immutable files, and the verifycap for immutable files
|
2009-01-22 21:38:36 -07:00 |
test_hashtree.py
|
immutable: refactor downloader to be more reusable for checker/verifier/repairer (and better)
|
2009-01-05 09:51:45 -07:00 |
test_helper.py
|
break storage.py into smaller pieces in storage/*.py . No behavioral changes.
|
2009-02-18 14:46:55 -07:00 |
test_immutable.py
|
hush pyflakes by removing unused imports
|
2009-01-12 15:41:20 -07:00 |
test_introducer.py
|
#538: fetch version and attach to the rref. Make IntroducerClient demand v1 support.
|
2008-11-21 20:07:27 -07:00 |
test_iputil.py
|
move testutil into test/common_util.py, since it doesn't count as 'code under test' for our pyflakes numbers
|
2008-10-28 21:28:31 -07:00 |
test_keygen.py
|
util: move PollMixin to a separate file (pollmixin.py), so testutil can be moved into test/
|
2008-10-28 21:15:48 -07:00 |
test_mutable.py
|
change StorageServer to take nodeid in the constructor, instead of assigning it later, since it's cleaner and because the original problem (Tubs not being ready until later) went away
|
2009-02-18 16:23:01 -07:00 |
test_netstring.py
|
netstring: add required_trailer= argument
|
2008-09-26 09:57:54 -07:00 |
test_nevow.py
|
test: update todo string in test_nevow
|
2008-02-29 13:10:08 -07:00 |
test_no_network.py
|
test/no_network: new test harness, like system-test but doesn't use the network so it's faster
|
2009-02-16 14:58:44 -07:00 |
test_node.py
|
tests: stop using setUpClass/tearDownClass, since they've been deprecated in Twisted-8.2.0
|
2009-02-23 14:43:12 -07:00 |
test_observer.py
|
test_observer: improve test coverage
|
2007-03-08 16:13:14 -07:00 |
test_provisioning.py
|
reliability.py: fix the numpy conversion, it was completely broken. Thanks to Terrell Russell for the help.
|
2009-02-19 13:55:15 -07:00 |
test_repairer.py
|
test_repairer: change to use faster no_network.GridTestMixin, split Verifier tests into separate cases, refactor judgement funcs into shared methods
|
2009-02-23 22:15:06 -07:00 |
test_runner.py
|
tests: stop using setUpClass/tearDownClass, since they've been deprecated in Twisted-8.2.0
|
2009-02-23 14:43:12 -07:00 |
test_stats.py
|
move testutil into test/common_util.py, since it doesn't count as 'code under test' for our pyflakes numbers
|
2008-10-28 21:28:31 -07:00 |
test_storage.py
|
web: improve layout of storage status with a table
|
2009-02-26 19:58:38 -07:00 |
test_system.py
|
test_system: oops, don't assume that all files in storage/ are in a deep storage/shares/prefix/si/shnum path, since now the crawler pickle has a short path
|
2009-02-21 00:17:10 -07:00 |
test_upload.py
|
stop using RuntimeError in unit tests, for #639
|
2009-02-22 17:27:22 -07:00 |
test_uri.py
|
rename "get_verifier()" to "get_verify_cap()"
|
2008-12-08 12:44:11 -07:00 |
test_util.py
|
rrefutil: add check_remote utility function
|
2009-02-27 00:59:57 -07:00 |
test_web.py
|
test_web: move shouldHTTPError into common.WebErrorMixin
|
2009-03-03 16:56:20 -07:00 |
trial_figleaf.py
|
trial_figleaf.py: make our figleaf code compatible with both Twisted-8.x and Twisted-2.5.x
|
2008-04-02 17:48:55 -07:00 |