| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
| 11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
| 12 #include "base/values.h" | 12 #include "base/values.h" |
| 13 #include "build/build_config.h" |
| 13 #include "google_apis/gaia/gaia_auth_consumer.h" | 14 #include "google_apis/gaia/gaia_auth_consumer.h" |
| 14 #include "google_apis/gaia/gaia_auth_fetcher.h" | 15 #include "google_apis/gaia/gaia_auth_fetcher.h" |
| 15 #include "google_apis/gaia/gaia_urls.h" | 16 #include "google_apis/gaia/gaia_urls.h" |
| 16 #include "google_apis/gaia/google_service_auth_error.h" | 17 #include "google_apis/gaia/google_service_auth_error.h" |
| 17 #include "google_apis/gaia/mock_url_fetcher_factory.h" | 18 #include "google_apis/gaia/mock_url_fetcher_factory.h" |
| 18 #include "google_apis/google_api_keys.h" | 19 #include "google_apis/google_api_keys.h" |
| 19 #include "net/base/load_flags.h" | 20 #include "net/base/load_flags.h" |
| 20 #include "net/base/net_errors.h" | 21 #include "net/base/net_errors.h" |
| 21 #include "net/http/http_status_code.h" | 22 #include "net/http/http_status_code.h" |
| 22 #include "net/url_request/test_url_fetcher_factory.h" | 23 #include "net/url_request/test_url_fetcher_factory.h" |
| (...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 GaiaAuthFetcher auth(&consumer, std::string(), GetRequestContext()); | 721 GaiaAuthFetcher auth(&consumer, std::string(), GetRequestContext()); |
| 721 auth.StartGetTokenResponse(std::string(), std::string(), std::string()); | 722 auth.StartGetTokenResponse(std::string(), std::string(), std::string()); |
| 722 | 723 |
| 723 net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0); | 724 net::URLRequestStatus status(net::URLRequestStatus::SUCCESS, 0); |
| 724 MockFetcher mock_fetcher( | 725 MockFetcher mock_fetcher( |
| 725 GaiaUrls::GetInstance()->oauth2_iframe_url(), | 726 GaiaUrls::GetInstance()->oauth2_iframe_url(), |
| 726 status, net::HTTP_OK, cookies_, kGetTokenPairValidResponse, | 727 status, net::HTTP_OK, cookies_, kGetTokenPairValidResponse, |
| 727 net::URLFetcher::GET, &auth); | 728 net::URLFetcher::GET, &auth); |
| 728 auth.OnURLFetchComplete(&mock_fetcher); | 729 auth.OnURLFetchComplete(&mock_fetcher); |
| 729 } | 730 } |
| OLD | NEW |