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 // This file defines a unit test harness for the profile's token service. | 5 // This file defines a unit test harness for the profile's token service. |
6 | 6 |
7 #ifndef CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ | 7 #ifndef CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ |
8 #define CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ | 8 #define CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #include "base/synchronization/waitable_event.h" | 11 #include "base/synchronization/waitable_event.h" |
12 #include "chrome/browser/net/gaia/token_service.h" | 12 #include "chrome/browser/net/gaia/token_service.h" |
13 #include "chrome/browser/webdata/web_data_service.h" | 13 #include "chrome/browser/webdata/web_data_service.h" |
14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
15 #include "chrome/test/base/signaling_task.h" | 15 #include "chrome/test/base/signaling_task.h" |
16 #include "chrome/test/base/test_notification_tracker.h" | 16 #include "chrome/test/base/test_notification_tracker.h" |
17 #include "chrome/test/base/testing_browser_process_test.h" | |
18 #include "chrome/test/base/testing_profile.h" | 17 #include "chrome/test/base/testing_profile.h" |
19 #include "content/common/notification_details.h" | 18 #include "content/common/notification_details.h" |
20 #include "content/common/notification_source.h" | 19 #include "content/common/notification_source.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 20 #include "testing/gtest/include/gtest/gtest.h" |
22 | 21 |
23 // TestNotificationTracker doesn't do a deep copy on the notification details. | 22 // TestNotificationTracker doesn't do a deep copy on the notification details. |
24 // We have to in order to read it out, or we have a bad ptr, since the details | 23 // We have to in order to read it out, or we have a bad ptr, since the details |
25 // are a reference on the stack. | 24 // are a reference on the stack. |
26 class TokenAvailableTracker : public TestNotificationTracker { | 25 class TokenAvailableTracker : public TestNotificationTracker { |
27 public: | 26 public: |
(...skipping 22 matching lines...) Expand all Loading... |
50 } | 49 } |
51 | 50 |
52 private: | 51 private: |
53 virtual void Observe(int type, | 52 virtual void Observe(int type, |
54 const NotificationSource& source, | 53 const NotificationSource& source, |
55 const NotificationDetails& details); | 54 const NotificationDetails& details); |
56 | 55 |
57 TokenService::TokenRequestFailedDetails details_; | 56 TokenService::TokenRequestFailedDetails details_; |
58 }; | 57 }; |
59 | 58 |
60 class TokenServiceTestHarness : public TestingBrowserProcessTest { | 59 class TokenServiceTestHarness : public testing::Test { |
61 public: | 60 public: |
62 TokenServiceTestHarness(); | 61 TokenServiceTestHarness(); |
63 virtual ~TokenServiceTestHarness(); | 62 virtual ~TokenServiceTestHarness(); |
64 | 63 |
65 virtual void SetUp(); | 64 virtual void SetUp(); |
66 | 65 |
67 virtual void TearDown(); | 66 virtual void TearDown(); |
68 | 67 |
69 void WaitForDBLoadCompletion(); | 68 void WaitForDBLoadCompletion(); |
70 | 69 |
71 MessageLoopForUI message_loop_; | 70 MessageLoopForUI message_loop_; |
72 BrowserThread ui_thread_; // Mostly so DCHECKS pass. | 71 BrowserThread ui_thread_; // Mostly so DCHECKS pass. |
73 BrowserThread db_thread_; // WDS on here | 72 BrowserThread db_thread_; // WDS on here |
74 | 73 |
75 TokenService service_; | 74 TokenService service_; |
76 TokenAvailableTracker success_tracker_; | 75 TokenAvailableTracker success_tracker_; |
77 TokenFailedTracker failure_tracker_; | 76 TokenFailedTracker failure_tracker_; |
78 GaiaAuthConsumer::ClientLoginResult credentials_; | 77 GaiaAuthConsumer::ClientLoginResult credentials_; |
79 std::string oauth_token_; | 78 std::string oauth_token_; |
80 std::string oauth_secret_; | 79 std::string oauth_secret_; |
81 scoped_ptr<TestingProfile> profile_; | 80 scoped_ptr<TestingProfile> profile_; |
82 }; | 81 }; |
83 | 82 |
84 #endif // CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ | 83 #endif // CHROME_BROWSER_NET_GAIA_TOKEN_SERVICE_UNITTEST_H_ |
OLD | NEW |