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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Copyright (c) 2025 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "rtc_base/base64.h"
#include <optional>
#include <string>
#include "absl/strings/string_view.h"
#include "test/gmock.h"
#include "test/gtest.h"
namespace webrtc {
namespace {
using ::testing::Eq;
using ::testing::Optional;
using ::testing::SizeIs;
using ::testing::TestWithParam;
TEST(Base64Test, Encode) {
std::string data{0x64, 0x65, 0x66};
EXPECT_THAT(Base64Encode(data), Eq("ZGVm"));
}
TEST(Base64Test, EncodeDecode) {
std::string data{0x01, 0x02, 0x03, 0x04, 0x05};
EXPECT_THAT(Base64Decode(Base64Encode(data)), Optional(Eq(data)));
}
TEST(Base64Test, DecodeCertificate) {
// Certificate data often contains newlines, which are not valid base64
// characters but parsable using the forgiving option.
constexpr absl::string_view kExampleCertificateData =
"MIIB6TCCAVICAQYwDQYJKoZIhvcNAQEEBQAwWzELMAkGA1UEBhMCQVUxEzARBgNV\n"
"BAgTClF1ZWVuc2xhbmQxGjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRswGQYD\n"
"VQQDExJUZXN0IENBICgxMDI0IGJpdCkwHhcNMDAxMDE2MjIzMTAzWhcNMDMwMTE0\n"
"MjIzMTAzWjBjMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFuZDEaMBgG\n"
"A1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxIzAhBgNVBAMTGlNlcnZlciB0ZXN0IGNl\n"
"cnQgKDUxMiBiaXQpMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJ+zw4Qnlf8SMVIP\n"
"Fe9GEcStgOY2Ww/dgNdhjeD8ckUJNP5VZkVDTGiXav6ooKXfX3j/7tdkuD8Ey2//\n"
"Kv7+ue0CAwEAATANBgkqhkiG9w0BAQQFAAOBgQCT0grFQeZaqYb5EYfk20XixZV4\n"
"GmyAbXMftG1Eo7qGiMhYzRwGNWxEYojf5PZkYZXvSqZ/ZXHXa4g59jK/rJNnaVGM\n"
"k+xIX8mxQvlV0n5O9PIha5BX5teZnkHKgL8aKKLKW1BK7YTngsfSzzaeame5iKfz\n"
"itAE+OjGF+PFKbwX8Q==\n";
EXPECT_THAT(
Base64Decode(kExampleCertificateData, Base64DecodeOptions::kForgiving),
Optional(SizeIs(493)));
EXPECT_THAT(
Base64Decode(kExampleCertificateData, Base64DecodeOptions::kStrict),
Eq(std::nullopt));
}
struct Base64DecodeTestCase {
std::string name;
std::string data;
std::optional<std::string> result;
};
const Base64DecodeTestCase kBase64DecodeTestCases[] = {
{"InvalidCharacters", "invalid;;;", std::nullopt},
{"InvalidLength", "abcde", std::nullopt},
{"ValidInput", "abcd", "i\xB7\x1D"},
{"ValidInputPadding", "abc=", "i\xB7"},
{"EmptyInput", "", ""},
};
using Base64DecodeTest = TestWithParam<Base64DecodeTestCase>;
INSTANTIATE_TEST_SUITE_P(
Base64DecodeTest,
Base64DecodeTest,
testing::ValuesIn<Base64DecodeTestCase>(kBase64DecodeTestCases),
[](const auto& info) { return info.param.name; });
TEST_P(Base64DecodeTest, TestDecodeStrict) {
absl::string_view data = GetParam().data;
EXPECT_THAT(Base64Decode(data, Base64DecodeOptions::kStrict),
Eq(GetParam().result));
}
TEST_P(Base64DecodeTest, TestDecodeForgiving) {
// Test default value is strict.
EXPECT_THAT(Base64Decode(GetParam().data), Eq(GetParam().result));
}
const Base64DecodeTestCase kBase64DecodeForgivingTestCases[] = {
{
"ForgivingPadding",
"abc",
"i\xB7",
},
{
"WhitespaceForgivenTab",
"ab\tcd",
"i\xB7\x1D",
},
{
"WhitespaceForgivenSpace",
"a bc d",
"i\xB7\x1D",
},
{
"WhitespaceForgivenNewline",
"a\nbc\nd",
"i\xB7\x1D",
},
{
"WhitespaceForgivenCarriageReturn",
"a\r\nbc\rd",
"i\xB7\x1D",
},
{"WhitespaceForgivenLineFeed", "a\fbcd", "i\xB7\x1D"},
};
using Base64DecodeForgivingTest = TestWithParam<Base64DecodeTestCase>;
INSTANTIATE_TEST_SUITE_P(
Base64DecodeTest,
Base64DecodeForgivingTest,
testing::ValuesIn<Base64DecodeTestCase>(kBase64DecodeForgivingTestCases),
[](const auto& info) { return info.param.name; });
TEST_P(Base64DecodeForgivingTest, TestDecodeForgiving) {
EXPECT_THAT(Base64Decode(GetParam().data, Base64DecodeOptions::kForgiving),
Eq(GetParam().result));
}
TEST_P(Base64DecodeForgivingTest, TestDecodeStrictFails) {
// Test default value is strict.
EXPECT_THAT(Base64Decode(GetParam().data), Eq(std::nullopt));
}
} // namespace
} // namespace webrtc
|