| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/chromeos/login/owner_manager.h" | 5 #include "chrome/browser/chromeos/login/owner_manager.h" |
| 6 #include "chrome/browser/chromeos/login/owner_manager_unittest.h" | 6 #include "chrome/browser/chromeos/login/owner_manager_unittest.h" |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/file_path.h" | 10 #include "base/file_path.h" |
| 11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/scoped_temp_dir.h" | 13 #include "base/scoped_temp_dir.h" |
| 14 #include "chrome/browser/chromeos/login/mock_owner_key_utils.h" | 14 #include "chrome/browser/chromeos/login/mock_owner_key_utils.h" |
| 15 #include "chrome/common/chrome_notification_types.h" | 15 #include "chrome/common/chrome_notification_types.h" |
| 16 #include "chrome/test/base/testing_browser_process_test.h" | |
| 17 #include "content/browser/browser_thread.h" | 16 #include "content/browser/browser_thread.h" |
| 18 #include "crypto/nss_util.h" | 17 #include "crypto/nss_util.h" |
| 19 #include "crypto/rsa_private_key.h" | 18 #include "crypto/rsa_private_key.h" |
| 20 #include "testing/gmock/include/gmock/gmock.h" | 19 #include "testing/gmock/include/gmock/gmock.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 21 |
| 23 using ::crypto::RSAPrivateKey; | 22 using ::crypto::RSAPrivateKey; |
| 24 using ::testing::DoAll; | 23 using ::testing::DoAll; |
| 25 using ::testing::Eq; | 24 using ::testing::Eq; |
| 26 using ::testing::Invoke; | 25 using ::testing::Invoke; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 DCHECK_EQ(expected_code_, return_code); | 111 DCHECK_EQ(expected_code_, return_code); |
| 113 for (uint32 i = 0; i < payload.size(); ++i) | 112 for (uint32 i = 0; i < payload.size(); ++i) |
| 114 DCHECK_EQ(expected_sig_[i], payload[i]); | 113 DCHECK_EQ(expected_sig_[i], payload[i]); |
| 115 if (event_) | 114 if (event_) |
| 116 event_->Signal(); | 115 event_->Signal(); |
| 117 } | 116 } |
| 118 | 117 |
| 119 //////////////////////////////////////////////////////////////////////////////// | 118 //////////////////////////////////////////////////////////////////////////////// |
| 120 // OwnerManagerTest | 119 // OwnerManagerTest |
| 121 | 120 |
| 122 class OwnerManagerTest : public TestingBrowserProcessTest { | 121 class OwnerManagerTest : public testing::Test { |
| 123 public: | 122 public: |
| 124 OwnerManagerTest() | 123 OwnerManagerTest() |
| 125 : message_loop_(MessageLoop::TYPE_UI), | 124 : message_loop_(MessageLoop::TYPE_UI), |
| 126 ui_thread_(BrowserThread::UI, &message_loop_), | 125 ui_thread_(BrowserThread::UI, &message_loop_), |
| 127 file_thread_(BrowserThread::FILE), | 126 file_thread_(BrowserThread::FILE), |
| 128 mock_(new MockKeyUtils), | 127 mock_(new MockKeyUtils), |
| 129 injector_(mock_) /* injector_ takes ownership of mock_ */ { | 128 injector_(mock_) /* injector_ takes ownership of mock_ */ { |
| 130 } | 129 } |
| 131 virtual ~OwnerManagerTest() {} | 130 virtual ~OwnerManagerTest() {} |
| 132 | 131 |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 NewRunnableMethod(manager.get(), | 355 NewRunnableMethod(manager.get(), |
| 357 &OwnerManager::Sign, | 356 &OwnerManager::Sign, |
| 358 BrowserThread::UI, | 357 BrowserThread::UI, |
| 359 data, | 358 data, |
| 360 &delegate)); | 359 &delegate)); |
| 361 while (!event.IsSignaled()) | 360 while (!event.IsSignaled()) |
| 362 message_loop_.RunAllPending(); | 361 message_loop_.RunAllPending(); |
| 363 } | 362 } |
| 364 | 363 |
| 365 } // namespace chromeos | 364 } // namespace chromeos |
| OLD | NEW |