Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chromeos/cryptohome/system_salt_getter.h" | 5 #include "chromeos/cryptohome/system_salt_getter.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop.h" | |
| 9 #include "base/run_loop.h" | 8 #include "base/run_loop.h" |
| 9 #include "base/test/scoped_task_environment.h" | |
| 10 #include "chromeos/dbus/dbus_thread_manager.h" | 10 #include "chromeos/dbus/dbus_thread_manager.h" |
| 11 #include "chromeos/dbus/fake_cryptohome_client.h" | 11 #include "chromeos/dbus/fake_cryptohome_client.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 12 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 namespace { | 15 namespace { |
| 16 | 16 |
| 17 // Used as a GetSystemSaltCallback. | 17 // Used as a GetSystemSaltCallback. |
| 18 void CopySystemSalt(std::string* out_system_salt, | 18 void CopySystemSalt(std::string* out_system_salt, |
| 19 const std::string& system_salt) { | 19 const std::string& system_salt) { |
| 20 *out_system_salt = system_salt; | 20 *out_system_salt = system_salt; |
| 21 } | 21 } |
| 22 | 22 |
| 23 class SystemSaltGetterTest : public testing::Test { | 23 class SystemSaltGetterTest : public testing::Test { |
| 24 protected: | 24 protected: |
| 25 SystemSaltGetterTest() : fake_cryptohome_client_(NULL) {} | 25 SystemSaltGetterTest() |
| 26 : scoped_task_environment_( | |
| 27 base::test::ScopedTaskEnvironment::MainThreadType::UI), | |
| 28 fake_cryptohome_client_(NULL) {} | |
|
stevenjb
2017/04/27 18:39:10
nit: nullptr while we are here... bonus points for
fdoray
2017/04/27 20:35:03
Done.
| |
| 26 | 29 |
| 27 void SetUp() override { | 30 void SetUp() override { |
| 28 fake_cryptohome_client_ = new FakeCryptohomeClient; | 31 fake_cryptohome_client_ = new FakeCryptohomeClient; |
| 29 DBusThreadManager::GetSetterForTesting()->SetCryptohomeClient( | 32 DBusThreadManager::GetSetterForTesting()->SetCryptohomeClient( |
| 30 std::unique_ptr<CryptohomeClient>(fake_cryptohome_client_)); | 33 std::unique_ptr<CryptohomeClient>(fake_cryptohome_client_)); |
| 31 | 34 |
| 32 EXPECT_FALSE(SystemSaltGetter::IsInitialized()); | 35 EXPECT_FALSE(SystemSaltGetter::IsInitialized()); |
| 33 SystemSaltGetter::Initialize(); | 36 SystemSaltGetter::Initialize(); |
| 34 ASSERT_TRUE(SystemSaltGetter::IsInitialized()); | 37 ASSERT_TRUE(SystemSaltGetter::IsInitialized()); |
| 35 ASSERT_TRUE(SystemSaltGetter::Get()); | 38 ASSERT_TRUE(SystemSaltGetter::Get()); |
| 36 } | 39 } |
| 37 | 40 |
| 38 void TearDown() override { | 41 void TearDown() override { |
| 39 SystemSaltGetter::Shutdown(); | 42 SystemSaltGetter::Shutdown(); |
| 40 DBusThreadManager::Shutdown(); | 43 DBusThreadManager::Shutdown(); |
| 41 } | 44 } |
| 42 | 45 |
| 43 base::MessageLoopForUI message_loop_; | 46 base::test::ScopedTaskEnvironment scoped_task_environment_; |
| 44 FakeCryptohomeClient* fake_cryptohome_client_; | 47 FakeCryptohomeClient* fake_cryptohome_client_; |
| 45 }; | 48 }; |
| 46 | 49 |
| 47 TEST_F(SystemSaltGetterTest, GetSystemSalt) { | 50 TEST_F(SystemSaltGetterTest, GetSystemSalt) { |
| 48 // Try to get system salt before the service becomes available. | 51 // Try to get system salt before the service becomes available. |
| 49 fake_cryptohome_client_->SetServiceIsAvailable(false); | 52 fake_cryptohome_client_->SetServiceIsAvailable(false); |
| 50 std::string system_salt; | 53 std::string system_salt; |
| 51 SystemSaltGetter::Get()->GetSystemSalt( | 54 SystemSaltGetter::Get()->GetSystemSalt( |
| 52 base::Bind(&CopySystemSalt, &system_salt)); | 55 base::Bind(&CopySystemSalt, &system_salt)); |
| 53 base::RunLoop().RunUntilIdle(); | 56 base::RunLoop().RunUntilIdle(); |
| 54 EXPECT_TRUE(system_salt.empty()); // System salt is not returned yet. | 57 EXPECT_TRUE(system_salt.empty()); // System salt is not returned yet. |
| 55 | 58 |
| 56 // Service becomes available. | 59 // Service becomes available. |
| 57 fake_cryptohome_client_->SetServiceIsAvailable(true); | 60 fake_cryptohome_client_->SetServiceIsAvailable(true); |
| 58 base::RunLoop().RunUntilIdle(); | 61 base::RunLoop().RunUntilIdle(); |
| 59 const std::string expected_system_salt = | 62 const std::string expected_system_salt = |
| 60 SystemSaltGetter::ConvertRawSaltToHexString( | 63 SystemSaltGetter::ConvertRawSaltToHexString( |
| 61 FakeCryptohomeClient::GetStubSystemSalt()); | 64 FakeCryptohomeClient::GetStubSystemSalt()); |
| 62 EXPECT_EQ(expected_system_salt, system_salt); // System salt is returned. | 65 EXPECT_EQ(expected_system_salt, system_salt); // System salt is returned. |
| 63 } | 66 } |
| 64 | 67 |
| 65 } // namespace | 68 } // namespace |
| 66 } // namespace chromeos | 69 } // namespace chromeos |
| OLD | NEW |