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 OAuth2MintTokenFlow. | 5 // A complete set of unit tests for OAuth2MintTokenFlow. |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/json/json_reader.h" | 10 #include "base/json/json_reader.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/utf_string_conversions.h" |
12 #include "base/values.h" | 13 #include "base/values.h" |
13 #include "base/utf_string_conversions.h" | 14 #include "google_apis/gaia/google_service_auth_error.h" |
14 #include "chrome/common/net/gaia/google_service_auth_error.h" | 15 #include "google_apis/gaia/oauth2_mint_token_flow.h" |
15 #include "chrome/common/net/gaia/oauth2_mint_token_flow.h" | |
16 #include "net/url_request/test_url_fetcher_factory.h" | 16 #include "net/url_request/test_url_fetcher_factory.h" |
17 #include "net/url_request/url_request_status.h" | 17 #include "net/url_request/url_request_status.h" |
18 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
19 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
20 | 20 |
21 using net::TestURLFetcher; | 21 using net::TestURLFetcher; |
22 using net::URLFetcher; | 22 using net::URLFetcher; |
23 using net::URLRequestStatus; | 23 using net::URLRequestStatus; |
24 using testing::_; | 24 using testing::_; |
25 using testing::StrictMock; | 25 using testing::StrictMock; |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 } | 349 } |
350 | 350 |
351 { // Non-null delegate. | 351 { // Non-null delegate. |
352 GoogleServiceAuthError error( | 352 GoogleServiceAuthError error( |
353 GoogleServiceAuthError::FromConnectionError(101)); | 353 GoogleServiceAuthError::FromConnectionError(101)); |
354 CreateFlow(OAuth2MintTokenFlow::MODE_MINT_TOKEN_NO_FORCE); | 354 CreateFlow(OAuth2MintTokenFlow::MODE_MINT_TOKEN_NO_FORCE); |
355 EXPECT_CALL(delegate_, OnMintTokenFailure(error)); | 355 EXPECT_CALL(delegate_, OnMintTokenFailure(error)); |
356 flow_->ProcessMintAccessTokenFailure(error); | 356 flow_->ProcessMintAccessTokenFailure(error); |
357 } | 357 } |
358 } | 358 } |
OLD | NEW |