Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: components/os_crypt/os_crypt_unittest.cc

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/os_crypt/os_crypt_switches.cc ('k') | components/ownership/mock_owner_key_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/strings/string_util.h" 11 #include "base/strings/string_util.h"
11 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "build/build_config.h"
12 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
13 15
14 namespace { 16 namespace {
15 17
16 class OSCryptTest : public testing::Test { 18 class OSCryptTest : public testing::Test {
17 public: 19 public:
18 OSCryptTest() {} 20 OSCryptTest() {}
19 21
20 void SetUp() override { 22 void SetUp() override {
21 #if defined(OS_MACOSX) 23 #if defined(OS_MACOSX)
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ASSERT_TRUE(OSCrypt::EncryptString(plaintext, &ciphertext)); 137 ASSERT_TRUE(OSCrypt::EncryptString(plaintext, &ciphertext));
136 EXPECT_NE(plaintext, ciphertext); 138 EXPECT_NE(plaintext, ciphertext);
137 ASSERT_LT(4UL, ciphertext.size()); 139 ASSERT_LT(4UL, ciphertext.size());
138 ciphertext[3] = ciphertext[3] + 1; 140 ciphertext[3] = ciphertext[3] + 1;
139 EXPECT_FALSE(OSCrypt::DecryptString(ciphertext, &result)); 141 EXPECT_FALSE(OSCrypt::DecryptString(ciphertext, &result));
140 EXPECT_NE(plaintext, result); 142 EXPECT_NE(plaintext, result);
141 EXPECT_TRUE(result.empty()); 143 EXPECT_TRUE(result.empty());
142 } 144 }
143 145
144 } // namespace 146 } // namespace
OLDNEW
« no previous file with comments | « components/os_crypt/os_crypt_switches.cc ('k') | components/ownership/mock_owner_key_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698