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/ownership_service.h" | 5 #include "chrome/browser/chromeos/login/ownership_service.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
10 #include "base/file_util.h" | 10 #include "base/file_util.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.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/browser/chromeos/login/owner_manager_unittest.h" | 15 #include "chrome/browser/chromeos/login/owner_manager_unittest.h" |
| 16 #include "chrome/test/base/testing_browser_process_test.h" |
16 #include "content/browser/browser_thread.h" | 17 #include "content/browser/browser_thread.h" |
17 #include "crypto/nss_util.h" | 18 #include "crypto/nss_util.h" |
18 #include "crypto/rsa_private_key.h" | 19 #include "crypto/rsa_private_key.h" |
19 #include "testing/gmock/include/gmock/gmock.h" | 20 #include "testing/gmock/include/gmock/gmock.h" |
20 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
21 | 22 |
22 using ::crypto::RSAPrivateKey; | 23 using ::crypto::RSAPrivateKey; |
23 using ::testing::DoAll; | 24 using ::testing::DoAll; |
24 using ::testing::Eq; | 25 using ::testing::Eq; |
25 using ::testing::Invoke; | 26 using ::testing::Invoke; |
26 using ::testing::Return; | 27 using ::testing::Return; |
27 using ::testing::SetArgumentPointee; | 28 using ::testing::SetArgumentPointee; |
28 using ::testing::_; | 29 using ::testing::_; |
29 | 30 |
30 | 31 |
31 namespace chromeos { | 32 namespace chromeos { |
32 | 33 |
33 class OwnershipServiceTest : public ::testing::Test { | 34 class OwnershipServiceTest : public TestingBrowserProcessTest { |
34 public: | 35 public: |
35 OwnershipServiceTest() | 36 OwnershipServiceTest() |
36 : message_loop_(MessageLoop::TYPE_UI), | 37 : message_loop_(MessageLoop::TYPE_UI), |
37 ui_thread_(BrowserThread::UI, &message_loop_), | 38 ui_thread_(BrowserThread::UI, &message_loop_), |
38 file_thread_(BrowserThread::FILE), | 39 file_thread_(BrowserThread::FILE), |
39 mock_(new MockKeyUtils), | 40 mock_(new MockKeyUtils), |
40 injector_(mock_) /* injector_ takes ownership of mock_ */ { | 41 injector_(mock_) /* injector_ takes ownership of mock_ */ { |
41 } | 42 } |
42 virtual ~OwnershipServiceTest() {} | 43 virtual ~OwnershipServiceTest() {} |
43 | 44 |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 | 227 |
227 base::WaitableEvent event(true, false); | 228 base::WaitableEvent event(true, false); |
228 MockKeyUser delegate(OwnerManager::OPERATION_FAILED, &event); | 229 MockKeyUser delegate(OwnerManager::OPERATION_FAILED, &event); |
229 service_->StartVerifyAttempt(data, sig, &delegate); | 230 service_->StartVerifyAttempt(data, sig, &delegate); |
230 | 231 |
231 while (!event.IsSignaled()) | 232 while (!event.IsSignaled()) |
232 message_loop_.RunAllPending(); | 233 message_loop_.RunAllPending(); |
233 } | 234 } |
234 | 235 |
235 } // namespace chromeos | 236 } // namespace chromeos |
OLD | NEW |