summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2021-02-18 12:49:33 -0500
committerDavid Goulet <dgoulet@torproject.org>2021-02-22 14:47:42 -0500
commitd98c77b78e9ce945a7a0de151d5f5cf44061edd5 (patch)
tree73326b63cef84d0fae6f579f3bec9c103e317791 /src/test
parent26c2e843f958c5451c836bbf9a4979aecac177c4 (diff)
downloadtor-d98c77b78e9ce945a7a0de151d5f5cf44061edd5.tar.gz
tor-d98c77b78e9ce945a7a0de151d5f5cf44061edd5.zip
relay: Reduce streaming compression ratio from HIGH to LOW
Fixes #40301 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test_dir.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index d62dd3fb9e..b7400be1f7 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -5495,31 +5495,6 @@ dir_tests_directory_initiate_request(directory_request_t *req)
dir_tests_directory_initiate_request_called++;
}
-static void
-test_dir_choose_compression_level(void* data)
-{
- (void)data;
-
- /* It starts under_memory_pressure */
- tt_int_op(have_been_under_memory_pressure(), OP_EQ, 1);
-
- tt_assert(HIGH_COMPRESSION == choose_compression_level(-1));
- tt_assert(LOW_COMPRESSION == choose_compression_level(1024-1));
- tt_assert(MEDIUM_COMPRESSION == choose_compression_level(2048-1));
- tt_assert(HIGH_COMPRESSION == choose_compression_level(2048));
-
- /* Reset under_memory_pressure timer */
- cell_queues_check_size();
- tt_int_op(have_been_under_memory_pressure(), OP_EQ, 0);
-
- tt_assert(HIGH_COMPRESSION == choose_compression_level(-1));
- tt_assert(HIGH_COMPRESSION == choose_compression_level(1024-1));
- tt_assert(HIGH_COMPRESSION == choose_compression_level(2048-1));
- tt_assert(HIGH_COMPRESSION == choose_compression_level(2048));
-
- done: ;
-}
-
/*
* Mock check_private_dir(), and always succeed - no need to actually
* look at or create anything on the filesystem.
@@ -7325,7 +7300,6 @@ struct testcase_t dir_tests[] = {
DIR(should_not_init_request_to_ourselves, TT_FORK),
DIR(should_not_init_request_to_dir_auths_without_v3_info, 0),
DIR(should_init_request_to_dir_auths, 0),
- DIR(choose_compression_level, 0),
DIR(dump_unparseable_descriptors, 0),
DIR(populate_dump_desc_fifo, 0),
DIR(populate_dump_desc_fifo_2, 0),