mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Unindent block
This commit is contained in:
parent
5a725dab0a
commit
d937b86699
@ -1738,22 +1738,20 @@ test_util_gzip(void *arg)
|
||||
buf1 = tor_strdup("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ");
|
||||
tt_assert(detect_compression_method(buf1, strlen(buf1)) == UNKNOWN_METHOD);
|
||||
|
||||
if (1) {
|
||||
tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
|
||||
GZIP_METHOD));
|
||||
tt_assert(buf2);
|
||||
tt_assert(len1 < strlen(buf1));
|
||||
tt_assert(detect_compression_method(buf2, len1) == GZIP_METHOD);
|
||||
tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
|
||||
GZIP_METHOD));
|
||||
tt_assert(buf2);
|
||||
tt_assert(len1 < strlen(buf1));
|
||||
tt_assert(detect_compression_method(buf2, len1) == GZIP_METHOD);
|
||||
|
||||
tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1,
|
||||
GZIP_METHOD, 1, LOG_INFO));
|
||||
tt_assert(buf3);
|
||||
tt_int_op(strlen(buf1) + 1,OP_EQ, len2);
|
||||
tt_str_op(buf1,OP_EQ, buf3);
|
||||
tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1,
|
||||
GZIP_METHOD, 1, LOG_INFO));
|
||||
tt_assert(buf3);
|
||||
tt_int_op(strlen(buf1) + 1,OP_EQ, len2);
|
||||
tt_str_op(buf1,OP_EQ, buf3);
|
||||
|
||||
tor_free(buf2);
|
||||
tor_free(buf3);
|
||||
}
|
||||
tor_free(buf2);
|
||||
tor_free(buf3);
|
||||
|
||||
tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1,
|
||||
ZLIB_METHOD));
|
||||
|
Loading…
Reference in New Issue
Block a user