OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/file_util.h" | |
8 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
9 #include "base/path_service.h" | 10 #include "base/path_service.h" |
10 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
11 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
12 #include "base/time/time.h" | 13 #include "base/time/time.h" |
13 #include "chrome/browser/password_manager/login_database.h" | 14 #include "chrome/browser/password_manager/login_database.h" |
14 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
15 #include "content/public/common/password_form.h" | 16 #include "content/public/common/password_form.h" |
16 #include "testing/gmock/include/gmock/gmock.h" | 17 #include "testing/gmock/include/gmock/gmock.h" |
17 | 18 |
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
560 | 561 |
561 // Normal data. | 562 // Normal data. |
562 vec.push_back(ASCIIToUTF16("first")); | 563 vec.push_back(ASCIIToUTF16("first")); |
563 vec.push_back(ASCIIToUTF16("second")); | 564 vec.push_back(ASCIIToUTF16("second")); |
564 vec.push_back(ASCIIToUTF16("third")); | 565 vec.push_back(ASCIIToUTF16("third")); |
565 | 566 |
566 temp = SerializeVector(vec); | 567 temp = SerializeVector(vec); |
567 output = DeserializeVector(temp); | 568 output = DeserializeVector(temp); |
568 EXPECT_THAT(output, Eq(vec)); | 569 EXPECT_THAT(output, Eq(vec)); |
569 } | 570 } |
571 | |
572 #if defined(OS_POSIX) | |
Ilya Sherman
2013/07/16 22:35:52
nit: Mebbe add a comment for why this is restricte
Scott Hess - ex-Googler
2013/07/17 00:25:37
Done. Comment is also kind posix-specific :-).
| |
573 // Only the current user has permission to read the database. | |
574 TEST_F(LoginDatabaseTest, FilePermissions) { | |
575 int mode = file_util::FILE_PERMISSION_MASK; | |
576 EXPECT_TRUE(file_util::GetPosixFilePermissions(file_, &mode)); | |
577 EXPECT_EQ((mode & file_util::FILE_PERMISSION_USER_MASK), mode); | |
578 } | |
579 #endif // defined(OS_POSIX) | |
OLD | NEW |