summaryrefslogtreecommitdiff
path: root/src/test
AgeCommit message (Collapse)Author
2018-11-26Merge remote-tracking branch 'tor-github/pr/539'Nick Mathewson
2018-11-26Merge branch 'dormant_v2_squashed'Nick Mathewson
2018-11-26Test for check_network_participation_callback()Nick Mathewson
2018-11-26Test netstatus.c tracking of user participation statusNick Mathewson
2018-11-26Add options to control dormant-client feature.Nick Mathewson
The DormantClientTimeout option controls how long Tor will wait before going dormant. It also provides a way to disable the feature by setting DormantClientTimeout to e.g. "50 years". The DormantTimeoutDisabledByIdleStreams option controls whether open but inactive streams count as "client activity". To implement it, I had to make it so that reading or writing on a client stream *always* counts as activity. Closes ticket 28429.
2018-11-23Create a temporary directory for tor's DataDirectory in test_rebind.Taylor R Campbell
Fixes #28562. While here, put the argument count test and usage message _before_ we attempt to read from sys.argv.
2018-11-22Fix a comment typo in test_hs_common.cteor
2018-11-19Merge branch 'ticket27359_v2_squashed'Nick Mathewson
2018-11-19Test new functions in nodelist.cNick Mathewson
2018-11-19Aim for 100% test coverage on nodefamily.cNick Mathewson
2018-11-19Use nodefamily_t in microdescriptors.Nick Mathewson
Closes ticket 27359.
2018-11-19Backend for compact node-family representation.Nick Mathewson
This representation is meant to save memory in microdescriptors -- we can't use it in routerinfo_t yet, since those families need to be encoded losslessly for directory voting to work. This representation saves memory in three ways: 1. It uses only one allocation per family. (The old way used a smartlist (2 allocs) plus one strdup per entry.) 2. It stores identity digests in binary, not hex. 3. It keeps families in a canonical format, memoizes, and reference-counts them. Part of #27359.
2018-11-15Make the NET_PARTICIPANT role dependent on user activityNick Mathewson
This patch implements all of 28337, except for the part where we turn off the role if we've been idle for a long time.
2018-11-15Move control_per_second_events() into a callback with its own roleNick Mathewson
Part of making extra-dormant mode work; closes ticket 28421.
2018-11-15Add new "ALL" and "NET_PARTICIPANT" roles for periodic eventsNick Mathewson
The previous "ALL" role was the OR of a bunch of other roles, which is a mistake: it's better if "ALL" means "all". The "NET_PARTICIPANT" role refers to the anything that is actively building circuits, downloading directory information, and participating in the Tor network. For now, it is set to !net_is_disabled(), but we're going to use it to implement a new "extra dormant mode". Closes ticket 28336.
2018-11-09Merge branch 'subsystems'Nick Mathewson
2018-11-07Merge remote-tracking branch 'tor-github/pr/271'Nick Mathewson
2018-11-06Merge remote-tracking branch 'tor-github/pr/464'Nick Mathewson
2018-11-05Turn "compress" into a subsystem.Nick Mathewson
2018-11-05Move monotonic time setup into a subsystemNick Mathewson
2018-11-05Move prefork, postfork, and thread-exit hooks into subsysNick Mathewson
So far, crypto is the only module that uses them, but others are likely to do so in the future.
2018-11-05Add crypto module as a subsystem.Nick Mathewson
2018-11-05Move networking startup/cleanup logic into a subsystem.Nick Mathewson
2018-11-05Use subsystems manager for subsystems used in tests.Nick Mathewson
2018-11-05Move the code that knows our tor version into a lowest-level libNick Mathewson
2018-11-05In count_acceptable_nodes(), count direct and indirect nodes with ↵Neel Chauhan
node_has_preferred_descriptor()
2018-11-02Update address tests to avoid offending coverity.Nick Mathewson
2018-11-02Merge branch 'maint-0.3.5'Nick Mathewson
2018-11-02Merge branch 'bug27968_squashed' into maint-0.3.5Nick Mathewson
2018-11-02Sort the imports in test_rebind.pyteor
Cleanup after #27968.
2018-11-02Make test_rebind.py timeout when waiting for a log messageteor
Closes #27968.
2018-11-02Refactor test_rebind.py to consistently print FAIL on failureteor
Part of #27968.
2018-11-02Avoid a race condition in test_rebind.pyteor
If tor terminates due to SIGNAL HALT before test_rebind.py calls tor_process.terminate(), an OSError 3 (no such process) is thrown. Fixes part of bug 27968 on 0.3.5.1-alpha.
2018-11-01Add tests for the string_is_utf8_no_bom() function.George Kadianakis
2018-10-31Merge branch 'ticket24393_036_01_squashed'Nick Mathewson
2018-10-31Add test for nodes_in_same_family()Neel Chauhan
2018-10-31Merge branch 'maint-0.3.4' into maint-0.3.5Nick Mathewson
2018-10-31Merge branch 'maint-0.3.3' into maint-0.3.4Nick Mathewson
2018-10-31Merge branch 'maint-0.3.5'Nick Mathewson
2018-10-31Merge branch 'maint-0.3.4' into maint-0.3.5Nick Mathewson
2018-10-31Merge branch 'maint-0.2.9' into maint-0.3.3Nick Mathewson
2018-10-31Merge branch 'networkstatus_mmap' into networkstatus_mmap_mergeNick Mathewson
2018-10-30Merge branch 'maint-0.3.5'David Goulet
2018-10-30Merge branch 'tor-github/pr/438' into maint-0.3.5David Goulet
2018-10-30Merge branch 'maint-0.3.5'David Goulet
2018-10-30Add test for HiddenServiceAuthorizeClient and v3 onion servicesNeel Chauhan
2018-10-30Merge remote-tracking branch 'tor-github/pr/425'Nick Mathewson
2018-10-30Merge branch 'ticket23082_squashed'Nick Mathewson
2018-10-30Move a check for trailing colon to tor_inet_pton()rl1987
That way, string_is_valid_ipv6_address() can benefit from it
2018-10-30Merge branch 'maint-0.3.5'Nick Mathewson