// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /////////////////////////////////////////////////////////////////////////////// #include "tink/util/secret_data.h" #include #include #include "gmock/gmock.h" #include "gtest/gtest.h" #include "absl/strings/string_view.h" namespace crypto { namespace tink { namespace util { namespace { using ::testing::AnyOf; using ::testing::ElementsAreArray; using ::testing::Eq; constexpr int kEightKb = 8192; struct alignas(kEightKb) TwoMbAlignedStruct { int data; }; // If we don't have __cpp_aligned_new we currently do not support types // whose alginment requirement is greater than the default. #ifdef __cpp_aligned_new TEST(SecretUniqueptrTest, Alignment) { SecretUniquePtr s = MakeSecretUniquePtr(); EXPECT_THAT(reinterpret_cast(s.get()) % kEightKb, Eq(0)); } #endif TEST(SecretDataTest, OneByOneInsertion) { constexpr unsigned char kContents[] = {41, 42, 64, 12, 41, 0, 52, 56, 6, 12, 127, 13}; SecretData data; for (unsigned char c : kContents) { data.push_back(c); } EXPECT_THAT(data, ElementsAreArray(kContents)); } TEST(SecretDataTest, SecretDataFromStringViewConstructor) { constexpr unsigned char kContents[] = {41, 42, 64, 12, 41, 0, 52, 56, 6, 12, 124, 16}; std::string s; for (unsigned char c : kContents) { s.push_back(c); } SecretData data = SecretDataFromStringView(s); EXPECT_THAT(data, ElementsAreArray(kContents)); } TEST(SecretDataTest, StringViewFromSecretData) { constexpr unsigned char kContents[] = {41, 42, 64, 12, 41, 0, 52, 56, 6, 12, 124, 16}; std::string s; for (unsigned char c : kContents) { s.push_back(c); } SecretData data = SecretDataFromStringView(s); absl::string_view data_view = SecretDataAsStringView(data); EXPECT_THAT(data_view, Eq(s)); } TEST(SecretDataTest, SecretDataCopy) { constexpr unsigned char kContents[] = {41, 42, 64, 12, 41, 0, 52, 56, 6, 12, 127, 13}; SecretData data; for (unsigned char c : kContents) { data.push_back(c); } SecretData data_copy = data; EXPECT_THAT(data_copy, ElementsAreArray(kContents)); } TEST(SecretValueTest, DefaultConstructor) { SecretValue s; EXPECT_THAT(s.value(), Eq(0)); } TEST(SecretValueTest, Constructor) { SecretValue s(102); EXPECT_THAT(s.value(), Eq(102)); } TEST(SecretValueTest, CopyConstructor) { SecretValue s(102); SecretValue t(s); EXPECT_THAT(t.value(), Eq(102)); } TEST(SecretValueTest, AssignmentOperator) { SecretValue s(102); SecretValue t(101); t = s; EXPECT_THAT(t.value(), Eq(102)); } TEST(SecretValueTest, MoveConstructor) { SecretValue s(102); SecretValue t(std::move(s)); EXPECT_THAT(t.value(), Eq(102)); // NOLINTNEXTLINE(bugprone-use-after-move) EXPECT_THAT(s.value(), AnyOf(Eq(0), Eq(102))); } TEST(SecretValueTest, MoveAssignment) { SecretValue s(102); SecretValue t; t = std::move(s); EXPECT_THAT(t.value(), Eq(102)); // NOLINTNEXTLINE(bugprone-use-after-move) EXPECT_THAT(s.value(), AnyOf(Eq(0), Eq(102))); } } // namespace } // namespace util } // namespace tink } // namespace crypto