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
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* base64_decode.c
*
* Copyright (C) 2022 David Oberhollenzer <goliath@infraroot.at>
*/
#include "config.h"
#include "util/util.h"
#include "util/test.h"
static const struct {
int result;
const char *in;
const char *out;
} test_vec[] = {
{ 0, "", "" },
{ 0, "Zg", "f" },
{ 0, "Zg==", "f" },
{ 0, "Zm8=", "fo" },
{ 0, "Zm9v", "foo" },
{ 0, "Zm9vYg==", "foob" },
{ 0, "Zm9vYmE=", "fooba" },
{ 0, "Zm9vYmFy", "foobar" },
{ 0, "TGV0J3MgYWxsIGxvdmUgTGFpbiEK", "Let's all love Lain!\n" },
{ -1, "Zg==X", "XX" },
};
int main(int argc, char **argv)
{
sqfs_u8 buffer[256];
size_t i, j;
(void)argc; (void)argv;
for (i = 0; i < sizeof(test_vec) / sizeof(test_vec[0]); ++i) {
const size_t in_len = strlen(test_vec[i].in);
const size_t out_len = strlen(test_vec[i].out);
size_t real_out;
int ret;
/* initialize the buffer */
for (j = 0; j < sizeof(buffer); ++j) {
buffer[j] = (j % 2) ? 0xAA : 0x55;
}
/* convert */
real_out = sizeof(buffer);
ret = base64_decode(test_vec[i].in, in_len, buffer, &real_out);
/* make sure pattern is un-touched after expected offset */
j = (in_len / 4) * 3;
if (in_len % 4)
j += 3;
for (; j < sizeof(buffer); ++j) {
TEST_ASSERT(buffer[j] == ((j % 2) ? 0xAA : 0x55));
}
/* check result */
if (test_vec[i].result == 0) {
TEST_ASSERT(ret == 0);
TEST_EQUAL_UI(real_out, out_len);
ret = memcmp(buffer, test_vec[i].out, out_len);
TEST_ASSERT(ret == 0);
} else {
TEST_ASSERT(ret != 0);
TEST_EQUAL_UI(real_out, 0);
}
fprintf(stderr, "CASE %lu OK\n", (unsigned long)i);
}
return EXIT_SUCCESS;
}
|