blob: d6ff56e8974d89ffa0925b195edefb9eca79fb5f [file] [log] [blame]
Wyatt Hepler3c2e9522020-01-09 16:08:54 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "pw_tokenizer/base64.h"
16
17#include <cstring>
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070018#include <span>
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080019#include <string_view>
20
21#include "gtest/gtest.h"
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080022
23namespace pw::tokenizer {
24namespace {
25
Wyatt Hepler67368872020-07-30 16:55:38 -070026using std::byte;
27
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080028class PrefixedBase64 : public ::testing::Test {
29 protected:
30 PrefixedBase64() : binary_{}, base64_{} {}
31
Wyatt Hepler67368872020-07-30 16:55:38 -070032 byte binary_[32];
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080033 char base64_[32];
34};
35
36const struct TestData {
37 template <size_t kSize>
Armando Montanez888370d2020-05-01 18:29:22 -070038 TestData(const char (&binary_data)[kSize], const char* base64_data)
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070039 : binary{std::as_bytes(std::span(binary_data, kSize - 1))},
40 base64(base64_data) {}
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080041
Wyatt Hepler67368872020-07-30 16:55:38 -070042 std::span<const byte> binary;
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080043 std::string_view base64;
44} kTestData[] = {
45 {"", "$"},
46 {"\x00", "$AA=="},
47 {"\x71", "$cQ=="},
48 {"\xff", "$/w=="},
49 {"\x63\xa9", "$Y6k="},
50 {"\x69\x89\x03", "$aYkD"},
51 {"\x80\xf5\xc8\xd4", "$gPXI1A=="},
52 {"\x6e\xb8\x91\x3f\xac", "$briRP6w="},
53 {"\x1f\x88\x91\xbb\xd7\x10", "$H4iRu9cQ"},
54 {"\xac\xcf\xb2\xd5\xee\xa2\x8e", "$rM+y1e6ijg=="},
55 {"\xff\x15\x25\x7e\x7b\xc9\x7b\x60", "$/xUlfnvJe2A="},
56 {"\xd5\xab\xd9\xa6\xae\xaa\x33\x9f\x66", "$1avZpq6qM59m"},
57 {"\x6b\xfd\x95\xc5\x4a\xc7\xc2\x39\x45\xdc", "$a/2VxUrHwjlF3A=="},
58 {"\x4c\xde\xee\xb8\x68\x0d\x9c\x66\x3e\xea\x46", "$TN7uuGgNnGY+6kY="},
59};
60
61TEST_F(PrefixedBase64, Encode) {
Wyatt Heplera46bf7d2020-01-08 18:10:25 -080062 for (auto& [binary, base64] : kTestData) {
63 EXPECT_EQ(base64.size(), PrefixedBase64Encode(binary, base64_));
64 ASSERT_EQ(base64, base64_);
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080065 }
66}
67
68TEST_F(PrefixedBase64, Encode_EmptyInput_WritesPrefix) {
Wyatt Hepler67368872020-07-30 16:55:38 -070069 EXPECT_EQ(1u, PrefixedBase64Encode(std::span<byte>(), base64_));
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080070 EXPECT_EQ('$', base64_[0]);
71}
72
73TEST_F(PrefixedBase64, Encode_EmptyOutput_WritesNothing) {
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070074 EXPECT_EQ(0u,
75 PrefixedBase64Encode(kTestData[5].binary, std::span(base64_, 0)));
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080076 EXPECT_EQ('\0', base64_[0]);
77}
78
79TEST_F(PrefixedBase64, Decode) {
Wyatt Heplera46bf7d2020-01-08 18:10:25 -080080 for (auto& [binary, base64] : kTestData) {
81 EXPECT_EQ(binary.size(), PrefixedBase64Decode(base64, binary_));
82 ASSERT_EQ(0, std::memcmp(binary.data(), binary_, binary.size()));
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080083 }
84}
85
86TEST_F(PrefixedBase64, Decode_EmptyInput_WritesNothing) {
87 EXPECT_EQ(0u, PrefixedBase64Decode({}, binary_));
Wyatt Hepler67368872020-07-30 16:55:38 -070088 EXPECT_EQ(byte{0}, binary_[0]);
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080089}
90
91TEST_F(PrefixedBase64, Decode_OnlyPrefix_WritesNothing) {
92 EXPECT_EQ(0u, PrefixedBase64Decode("$", binary_));
Wyatt Hepler67368872020-07-30 16:55:38 -070093 EXPECT_EQ(byte{0}, binary_[0]);
Wyatt Hepler3c2e9522020-01-09 16:08:54 -080094}
95
96TEST_F(PrefixedBase64, Decode_EmptyOutput_WritesNothing) {
Wyatt Heplere2cbadf2020-06-22 11:21:45 -070097 EXPECT_EQ(0u,
98 PrefixedBase64Decode(kTestData[5].base64, std::span(binary_, 0)));
Wyatt Hepler67368872020-07-30 16:55:38 -070099 EXPECT_EQ(byte{0}, binary_[0]);
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800100}
101
102TEST_F(PrefixedBase64, Decode_OutputTooSmall_WritesNothing) {
103 auto& item = kTestData[5];
Wyatt Heplere2cbadf2020-06-22 11:21:45 -0700104 EXPECT_EQ(0u,
105 PrefixedBase64Decode(item.base64,
106 std::span(binary_, item.binary.size() - 1)));
Wyatt Hepler67368872020-07-30 16:55:38 -0700107 EXPECT_EQ(byte{0}, binary_[0]);
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800108}
109
110TEST(PrefixedBase64, DecodeInPlace) {
Wyatt Hepler67368872020-07-30 16:55:38 -0700111 byte buffer[32];
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800112
Wyatt Heplera46bf7d2020-01-08 18:10:25 -0800113 for (auto& [binary, base64] : kTestData) {
114 std::memcpy(buffer, base64.data(), base64.size());
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800115
Wyatt Heplera46bf7d2020-01-08 18:10:25 -0800116 EXPECT_EQ(binary.size(),
Wyatt Heplere2cbadf2020-06-22 11:21:45 -0700117 PrefixedBase64DecodeInPlace(std::span(buffer, base64.size())));
Wyatt Heplera46bf7d2020-01-08 18:10:25 -0800118 ASSERT_EQ(0, std::memcmp(binary.data(), buffer, binary.size()));
Wyatt Hepler3c2e9522020-01-09 16:08:54 -0800119 }
120}
121
122} // namespace
123} // namespace pw::tokenizer