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
|
// file : tests/base64/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <string>
#include <vector>
#include <sstream>
#include <libbutl/base64.hxx>
#undef NDEBUG
#include <cassert>
using namespace std;
using namespace butl;
static bool
encode (const string& i, const string& o)
{
// Test encoding.
//
istringstream is (i);
string s (base64_encode (is));
bool r (s == o && is.eof ());
if (r)
{
is.seekg (0);
// VC15 seekg() doesn't clear eofbit.
//
#if defined(_MSC_VER) && _MSC_VER < 1920
is.clear ();
#endif
assert (!is.eof ());
ostringstream os;
base64_encode (os, is);
r = os.str () == o && is.eof ();
}
if (r)
r = base64_encode (vector<char> (i.begin (), i.end ())) == o;
// Test decoding.
//
if (r)
{
istringstream is (o);
ostringstream os;
base64_decode (os, is);
r = os.str () == i;
}
if (r)
{
ostringstream os;
base64_decode (os, o);
r = os.str () == i;
}
if (r)
{
vector<char> v (base64_decode (o));
r = string (v.begin (), v.end ()) == i;
}
return r;
}
int
main ()
{
assert (encode ("", ""));
assert (encode ("B", "Qg=="));
assert (encode ("BX", "Qlg="));
assert (encode ("BXz", "Qlh6"));
assert (encode ("BXzS", "Qlh6Uw=="));
assert (encode ("BXzS@", "Qlh6U0A="));
assert (encode ("BXzS@#", "Qlh6U0Aj"));
assert (encode ("BXzS@#/", "Qlh6U0AjLw=="));
const char* s (
"class fdstream_base\n"
"{\n"
"protected:\n"
" fdstream_base () = default;\n"
" fdstream_base (int fd): buf_ (fd) {}\n"
"\n"
"protected:\n"
" fdbuf buf_;\n"
"};\n");
const char* r (
"Y2xhc3MgZmRzdHJlYW1fYmFzZQp7CnByb3RlY3RlZDoKICBmZHN0cmVhbV9iYXNlICgpID0gZGVm\n"
"YXVsdDsKICBmZHN0cmVhbV9iYXNlIChpbnQgZmQpOiBidWZfIChmZCkge30KCnByb3RlY3RlZDoK\n"
"ICBmZGJ1ZiBidWZfOwp9Owo=");
assert (encode (s, r));
}
|