forked from Ed-von-Schleck/shoco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.c
109 lines (82 loc) · 3.19 KB
/
tests.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#include "stdint.h"
#include "stdio.h"
#include "assert.h"
#include "string.h"
#include "shoco.h"
static const char LARGE_STR[] = "This is a large string that won't possibly fit into a small buffer";
static const char NON_ASCII_STR[] = "Übergrößenträger";
int main() {
char buf_1[1];
char buf_2[2];
char buf_4[4];
char buf_large[4096];
size_t ret;
// test compression
ret = shoco_compress(LARGE_STR, 0, buf_2, 2);
assert(ret == 3); // bufsize + 1 if buffer too small
ret = shoco_compress(LARGE_STR, 0, buf_large, 4096);
assert(ret <= strlen(LARGE_STR));
ret = shoco_compress("a", 0, buf_1, 1);
assert(ret == 1); // bufsize if null byte didn't fit
buf_2[1] = 'x';
ret = shoco_compress("a", 0, buf_2, 2);
assert(ret == 1); // compressed string length without null byte
assert(buf_2[1] == 'x'); // Canary is still alive
ret = shoco_compress("a", 0, buf_4, 4);
assert(ret == 1);
ret = shoco_compress("test", 0, buf_4, 4);
assert(ret <= 4);
buf_4[1] = 'x';
ret = shoco_compress("test", 1, buf_4, 4); // buffer large enough, but strlen said "just compress first char"
assert(ret == 1);
assert(buf_4[1] == 'x');
ret = shoco_compress("t\x80", 1, buf_4, 4);
assert(ret == 1);
assert(buf_4[1] == 'x');
buf_4[1] = 'y';
ret = shoco_compress("test", 1, buf_4, 1);
assert(ret == 1);
assert(buf_4[1] == 'y'); // no null byte written
buf_4[1] = 'z';
ret = shoco_compress("a", 1, buf_4, 4);
assert(ret == 1);
assert(buf_4[1] == 'z');
buf_4[1] = 'b';
ret = shoco_compress("a", 2, buf_4, 4);
assert(ret == 1);
assert(buf_4[1] == 'b');
ret = shoco_compress("ä", 0, buf_1, 1); // this assumes that 'ä' is not in the frequent chars table
assert(ret == 2);
//test decompression
char compressed_large[4096];
int large_len = strlen(LARGE_STR);
int comp_len;
comp_len = shoco_compress(LARGE_STR, 0, compressed_large, 4096);
buf_large[large_len] = 'x';
ret = shoco_decompress(compressed_large, comp_len, buf_large, 4096);
assert(ret == large_len);
assert(strcmp(buf_large, LARGE_STR) == 0);
assert(buf_large[large_len] == '\0'); // null byte written
ret = shoco_decompress(compressed_large, comp_len, buf_2, 2);
assert(ret == 3); // ret = bufsize + 1, because buffer too small
buf_large[large_len] = 'x';
ret = shoco_decompress(compressed_large, comp_len, buf_large, large_len);
assert(ret == large_len);
assert(buf_large[large_len] != '\0'); // no null byte written
ret = shoco_decompress(compressed_large, 5, buf_large, 4096);
assert((ret < large_len) || (ret == 4097)); // either fail (bufsize + 1) or it happened to work
char compressed_non_ascii[256];
int non_ascii_len = strlen(NON_ASCII_STR);
comp_len = shoco_compress(NON_ASCII_STR, 0, compressed_non_ascii, 256);
buf_large[non_ascii_len] = 'x';
ret = shoco_decompress(compressed_non_ascii, comp_len, buf_large, 4096);
assert(ret == non_ascii_len);
assert(strcmp(buf_large, NON_ASCII_STR) == 0);
assert(buf_large[non_ascii_len] == '\0'); // null byte written
ret = shoco_decompress("\x00", 1, buf_large, 4096);
assert(ret == SIZE_MAX);
ret = shoco_decompress("\xe0""ab", 3, buf_large, 4096);
assert(ret == SIZE_MAX);
puts("All tests passed.");
return 0;
}