-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #832 from greenbone/add-gzip-stream
Add: gzip file decompression stream & tests for compressutils
- Loading branch information
Showing
5 changed files
with
191 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* SPDX-FileCopyrightText: 2019-2023 Greenbone AG | ||
* | ||
* SPDX-License-Identifier: GPL-2.0-or-later | ||
*/ | ||
|
||
#include "compressutils.c" | ||
|
||
#include <cgreen/cgreen.h> | ||
#include <cgreen/mocks.h> | ||
|
||
Describe (compressutils); | ||
BeforeEach (compressutils) | ||
{ | ||
} | ||
|
||
AfterEach (compressutils) | ||
{ | ||
} | ||
|
||
Ensure (compressutils, can_compress_and_uncompress_without_header) | ||
{ | ||
const char *testdata = "TEST-12345-12345-TEST"; | ||
|
||
size_t compressed_len; | ||
char *compressed = | ||
gvm_compress (testdata, strlen (testdata) + 1, &compressed_len); | ||
assert_that (compressed_len, is_greater_than (0)); | ||
assert_that (compressed, is_not_null); | ||
assert_that (compressed, is_not_equal_to_string (testdata)); | ||
|
||
size_t uncompressed_len; | ||
char *uncompressed = | ||
gvm_uncompress (compressed, compressed_len, &uncompressed_len); | ||
assert_that (uncompressed_len, is_equal_to (strlen (testdata) + 1)); | ||
assert_that (uncompressed, is_equal_to_string (testdata)); | ||
} | ||
|
||
Ensure (compressutils, can_compress_and_uncompress_with_header) | ||
{ | ||
const char *testdata = "TEST-12345-12345-TEST"; | ||
|
||
size_t compressed_len; | ||
char *compressed = | ||
gvm_compress_gzipheader (testdata, strlen (testdata) + 1, &compressed_len); | ||
assert_that (compressed_len, is_greater_than (0)); | ||
assert_that (compressed, is_not_null); | ||
assert_that (compressed, is_not_equal_to_string (testdata)); | ||
// Check for gzip magic number and deflate compression mode byte | ||
assert_that (compressed[0], is_equal_to ((char) 0x1f)); | ||
assert_that (compressed[1], is_equal_to ((char) 0x8b)); | ||
assert_that (compressed[2], is_equal_to (8)); | ||
|
||
size_t uncompressed_len; | ||
char *uncompressed = | ||
gvm_uncompress (compressed, compressed_len, &uncompressed_len); | ||
assert_that (uncompressed_len, is_equal_to (strlen (testdata) + 1)); | ||
assert_that (uncompressed, is_equal_to_string (testdata)); | ||
} | ||
|
||
Ensure (compressutils, can_uncompress_using_reader) | ||
{ | ||
const char *testdata = "TEST-12345-12345-TEST"; | ||
size_t compressed_len; | ||
char *compressed = | ||
gvm_compress_gzipheader (testdata, strlen (testdata) + 1, &compressed_len); | ||
|
||
char compressed_filename[35] = "/tmp/gvm_gzip_test_XXXXXX"; | ||
int compressed_fd = mkstemp (compressed_filename); | ||
write (compressed_fd, compressed, compressed_len); | ||
close (compressed_fd); | ||
|
||
FILE *stream = gvm_gzip_open_file_reader (compressed_filename); | ||
assert_that (stream, is_not_null); | ||
|
||
gchar *uncompressed = g_malloc0 (30); | ||
fread (uncompressed, 1, 30, stream); | ||
assert_that (uncompressed, is_equal_to_string (testdata)); | ||
|
||
assert_that (fclose (stream), is_equal_to (0)); | ||
} | ||
|
||
/* Test suite. */ | ||
int | ||
main (int argc, char **argv) | ||
{ | ||
TestSuite *suite; | ||
|
||
suite = create_test_suite (); | ||
|
||
add_test_with_context (suite, compressutils, | ||
can_compress_and_uncompress_without_header); | ||
add_test_with_context (suite, compressutils, | ||
can_compress_and_uncompress_with_header); | ||
add_test_with_context (suite, compressutils, can_uncompress_using_reader); | ||
|
||
if (argc > 1) | ||
return run_single_test (suite, argv[1], create_text_reporter ()); | ||
|
||
return run_test_suite (suite, create_text_reporter ()); | ||
} |