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) |
| 573 // Only the current user has permission to read the database. |
| 574 // |
| 575 // Only POSIX because GetPosixFilePermissions() only exists on POSIX. |
| 576 // This tests that sql::Connection::set_restrict_to_user() was called, |
| 577 // and that function is a noop on non-POSIX platforms in any case. |
| 578 TEST_F(LoginDatabaseTest, FilePermissions) { |
| 579 int mode = file_util::FILE_PERMISSION_MASK; |
| 580 EXPECT_TRUE(file_util::GetPosixFilePermissions(file_, &mode)); |
| 581 EXPECT_EQ((mode & file_util::FILE_PERMISSION_USER_MASK), mode); |
| 582 } |
| 583 #endif // defined(OS_POSIX) |
OLD | NEW |