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 // A complete set of unit tests for GaiaAuthFetcher. | 5 // A complete set of unit tests for GaiaAuthFetcher. |
6 // Originally ported from GoogleAuthenticator tests. | 6 // Originally ported from GoogleAuthenticator tests. |
7 | 7 |
8 #include "chrome/common/net/gaia/gaia_auth_fetcher_unittest.h" | 8 #include "chrome/common/net/gaia/gaia_auth_fetcher_unittest.h" |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/stringprintf.h" | 13 #include "base/stringprintf.h" |
14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" | 14 #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
15 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" | 15 #include "chrome/common/net/gaia/gaia_auth_fetcher.h" |
16 #include "chrome/common/net/gaia/gaia_urls.h" | 16 #include "chrome/common/net/gaia/gaia_urls.h" |
17 #include "chrome/common/net/gaia/google_service_auth_error.h" | 17 #include "chrome/common/net/gaia/google_service_auth_error.h" |
18 #include "chrome/common/net/http_return.h" | 18 #include "chrome/common/net/http_return.h" |
| 19 #include "chrome/test/testing_browser_process_test.h" |
19 #include "chrome/test/testing_profile.h" | 20 #include "chrome/test/testing_profile.h" |
20 #include "content/common/test_url_fetcher_factory.h" | 21 #include "content/common/test_url_fetcher_factory.h" |
21 #include "content/common/url_fetcher.h" | 22 #include "content/common/url_fetcher.h" |
22 #include "googleurl/src/gurl.h" | 23 #include "googleurl/src/gurl.h" |
23 #include "net/base/net_errors.h" | 24 #include "net/base/net_errors.h" |
24 #include "net/url_request/url_request_status.h" | 25 #include "net/url_request/url_request_status.h" |
25 #include "testing/gmock/include/gmock/gmock.h" | 26 #include "testing/gmock/include/gmock/gmock.h" |
26 #include "testing/gtest/include/gtest/gtest.h" | 27 #include "testing/gtest/include/gtest/gtest.h" |
27 | 28 |
28 using ::testing::_; | 29 using ::testing::_; |
(...skipping 24 matching lines...) Expand all Loading... |
53 net::URLRequestStatus status(code, 0); | 54 net::URLRequestStatus status(code, 0); |
54 delegate()->OnURLFetchComplete(NULL, | 55 delegate()->OnURLFetchComplete(NULL, |
55 url_, | 56 url_, |
56 status, | 57 status, |
57 http_code, | 58 http_code, |
58 net::ResponseCookies(), | 59 net::ResponseCookies(), |
59 results_); | 60 results_); |
60 } | 61 } |
61 | 62 |
62 | 63 |
63 class GaiaAuthFetcherTest : public testing::Test { | 64 class GaiaAuthFetcherTest : public TestingBrowserProcessTest { |
64 public: | 65 public: |
65 GaiaAuthFetcherTest() | 66 GaiaAuthFetcherTest() |
66 : client_login_source_(GaiaUrls::GetInstance()->client_login_url()), | 67 : client_login_source_(GaiaUrls::GetInstance()->client_login_url()), |
67 issue_auth_token_source_( | 68 issue_auth_token_source_( |
68 GaiaUrls::GetInstance()->issue_auth_token_url()), | 69 GaiaUrls::GetInstance()->issue_auth_token_url()), |
69 token_auth_source_(GaiaUrls::GetInstance()->token_auth_url()) {} | 70 token_auth_source_(GaiaUrls::GetInstance()->token_auth_url()) {} |
70 | 71 |
71 void RunParsingTest(const std::string& data, | 72 void RunParsingTest(const std::string& data, |
72 const std::string& sid, | 73 const std::string& sid, |
73 const std::string& lsid, | 74 const std::string& lsid, |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 EXPECT_TRUE(auth.HasPendingFetch()); | 571 EXPECT_TRUE(auth.HasPendingFetch()); |
571 auth.OnURLFetchComplete( | 572 auth.OnURLFetchComplete( |
572 NULL, | 573 NULL, |
573 token_auth_source_, | 574 token_auth_source_, |
574 net::URLRequestStatus(net::URLRequestStatus::FAILED, 0), | 575 net::URLRequestStatus(net::URLRequestStatus::FAILED, 0), |
575 RC_REQUEST_OK, | 576 RC_REQUEST_OK, |
576 cookies_, | 577 cookies_, |
577 ""); | 578 ""); |
578 EXPECT_FALSE(auth.HasPendingFetch()); | 579 EXPECT_FALSE(auth.HasPendingFetch()); |
579 } | 580 } |
OLD | NEW |