mirror of
https://github.com/boostorg/beast.git
synced 2026-01-27 09:42:18 +01:00
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
//
|
|
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
// Test that header file is self-contained.
|
|
#include <beast/core/detail/base64.hpp>
|
|
|
|
#include <beast/unit_test/suite.hpp>
|
|
|
|
namespace beast {
|
|
namespace detail {
|
|
|
|
class base64_test : public beast::unit_test::suite
|
|
{
|
|
public:
|
|
void
|
|
check (std::string const& in, std::string const& out)
|
|
{
|
|
auto const encoded = base64_encode (in);
|
|
BEAST_EXPECT(encoded == out);
|
|
BEAST_EXPECT(base64_decode (encoded) == in);
|
|
}
|
|
|
|
void
|
|
run()
|
|
{
|
|
check ("", "");
|
|
check ("f", "Zg==");
|
|
check ("fo", "Zm8=");
|
|
check ("foo", "Zm9v");
|
|
check ("foob", "Zm9vYg==");
|
|
check ("fooba", "Zm9vYmE=");
|
|
check ("foobar", "Zm9vYmFy");
|
|
|
|
check(
|
|
"Man is distinguished, not only by his reason, but by this singular passion from "
|
|
"other animals, which is a lust of the mind, that by a perseverance of delight "
|
|
"in the continued and indefatigable generation of knowledge, exceeds the short "
|
|
"vehemence of any carnal pleasure."
|
|
,
|
|
"TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0aGlz"
|
|
"IHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1c3Qgb2Yg"
|
|
"dGhlIG1pbmQsIHRoYXQgYnkgYSBwZXJzZXZlcmFuY2Ugb2YgZGVsaWdodCBpbiB0aGUgY29udGlu"
|
|
"dWVkIGFuZCBpbmRlZmF0aWdhYmxlIGdlbmVyYXRpb24gb2Yga25vd2xlZGdlLCBleGNlZWRzIHRo"
|
|
"ZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4="
|
|
);
|
|
}
|
|
};
|
|
|
|
BEAST_DEFINE_TESTSUITE(base64,core,beast);
|
|
|
|
} // detail
|
|
} // beast
|
|
|