mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
f890b70eae
Note that in some cases (in particular SQL::Result and PDFErrorOr), there is no Formatter defined for the error type, hence TRY_OR_FAIL cannot work as-is. Furthermore, this commit leaves untouched the places where MUST could be replaced by TRY_OR_FAIL. Inspired by: https://github.com/SerenityOS/serenity/pull/18710#discussion_r1186892445
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
/*
|
|
* Copyright (c) 2020, Tom Lebreux <tomlebreux@hotmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibTest/TestCase.h>
|
|
|
|
#include <AK/Base64.h>
|
|
#include <AK/DeprecatedString.h>
|
|
#include <string.h>
|
|
|
|
TEST_CASE(test_decode)
|
|
{
|
|
auto decode_equal = [&](StringView input, StringView expected) {
|
|
auto decoded = TRY_OR_FAIL(decode_base64(input));
|
|
EXPECT(DeprecatedString::copy(decoded) == expected);
|
|
EXPECT(expected.length() <= calculate_base64_decoded_length(input.bytes()));
|
|
};
|
|
|
|
decode_equal(""sv, ""sv);
|
|
decode_equal("Zg=="sv, "f"sv);
|
|
decode_equal("Zm8="sv, "fo"sv);
|
|
decode_equal("Zm9v"sv, "foo"sv);
|
|
decode_equal("Zm9vYg=="sv, "foob"sv);
|
|
decode_equal("Zm9vYmE="sv, "fooba"sv);
|
|
decode_equal("Zm9vYmFy"sv, "foobar"sv);
|
|
decode_equal("Z m\r9\n v\v Ym\tFy"sv, "foobar"sv);
|
|
EXPECT_EQ(decode_base64(" ZD Qg\r\nPS An Zm91cic\r\n 7"sv).value(), decode_base64("ZDQgPSAnZm91cic7"sv).value());
|
|
}
|
|
|
|
TEST_CASE(test_decode_invalid)
|
|
{
|
|
EXPECT(decode_base64(("asdf\xffqwe"sv)).is_error());
|
|
EXPECT(decode_base64(("asdf\x80qwe"sv)).is_error());
|
|
EXPECT(decode_base64(("asdf:qwe"sv)).is_error());
|
|
EXPECT(decode_base64(("asdf=qwe"sv)).is_error());
|
|
}
|
|
|
|
TEST_CASE(test_encode)
|
|
{
|
|
auto encode_equal = [&](StringView input, StringView expected) {
|
|
auto encoded = MUST(encode_base64(input.bytes()));
|
|
EXPECT(encoded == expected);
|
|
EXPECT_EQ(expected.length(), calculate_base64_encoded_length(input.bytes()));
|
|
};
|
|
|
|
encode_equal(""sv, ""sv);
|
|
encode_equal("f"sv, "Zg=="sv);
|
|
encode_equal("fo"sv, "Zm8="sv);
|
|
encode_equal("foo"sv, "Zm9v"sv);
|
|
encode_equal("foob"sv, "Zm9vYg=="sv);
|
|
encode_equal("fooba"sv, "Zm9vYmE="sv);
|
|
encode_equal("foobar"sv, "Zm9vYmFy"sv);
|
|
}
|