Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/os_crypt/os_crypt.h" | 5 #include "components/os_crypt/os_crypt.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "components/os_crypt/os_crypt_mocker.h" | |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 16 |
| 16 namespace { | 17 namespace { |
| 17 | 18 |
| 18 class OSCryptTest : public testing::Test { | 19 class OSCryptTest : public testing::Test { |
| 19 public: | 20 public: |
| 20 OSCryptTest() {} | 21 OSCryptTest() {} |
| 21 | 22 |
| 22 void SetUp() override { | 23 void SetUp() override { OSCryptMocker::SetUpWithSingleton(); } |
|
vabr (Chromium)
2016/05/24 13:33:44
Also here, could this be in constructor and destru
cfroussios
2016/05/25 13:13:09
Done.
| |
| 23 #if defined(OS_MACOSX) | 24 |
| 24 OSCrypt::UseMockKeychain(true); | 25 void TearDown() override { OSCryptMocker::TearDown(); } |
| 25 #endif | |
| 26 } | |
| 27 | 26 |
| 28 private: | 27 private: |
| 29 DISALLOW_COPY_AND_ASSIGN(OSCryptTest); | 28 DISALLOW_COPY_AND_ASSIGN(OSCryptTest); |
| 30 }; | 29 }; |
| 31 | 30 |
| 32 TEST_F(OSCryptTest, String16EncryptionDecryption) { | 31 TEST_F(OSCryptTest, String16EncryptionDecryption) { |
| 33 base::string16 plaintext; | 32 base::string16 plaintext; |
| 34 base::string16 result; | 33 base::string16 result; |
| 35 std::string utf8_plaintext; | 34 std::string utf8_plaintext; |
| 36 std::string utf8_result; | 35 std::string utf8_result; |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 ASSERT_TRUE(OSCrypt::EncryptString(plaintext, &ciphertext)); | 136 ASSERT_TRUE(OSCrypt::EncryptString(plaintext, &ciphertext)); |
| 138 EXPECT_NE(plaintext, ciphertext); | 137 EXPECT_NE(plaintext, ciphertext); |
| 139 ASSERT_LT(4UL, ciphertext.size()); | 138 ASSERT_LT(4UL, ciphertext.size()); |
| 140 ciphertext[3] = ciphertext[3] + 1; | 139 ciphertext[3] = ciphertext[3] + 1; |
| 141 EXPECT_FALSE(OSCrypt::DecryptString(ciphertext, &result)); | 140 EXPECT_FALSE(OSCrypt::DecryptString(ciphertext, &result)); |
| 142 EXPECT_NE(plaintext, result); | 141 EXPECT_NE(plaintext, result); |
| 143 EXPECT_TRUE(result.empty()); | 142 EXPECT_TRUE(result.empty()); |
| 144 } | 143 } |
| 145 | 144 |
| 146 } // namespace | 145 } // namespace |
| OLD | NEW |