Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(902)

Side by Side Diff: chrome/common/net/gaia/oauth2_mint_token_flow_unittest.cc

Issue 10581012: Move test_url_fetcher_factory.* from content/ to net/url_request (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove export annotations Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/values.h" 12 #include "base/values.h"
13 #include "chrome/common/net/gaia/google_service_auth_error.h" 13 #include "chrome/common/net/gaia/google_service_auth_error.h"
14 #include "chrome/common/net/gaia/oauth2_mint_token_flow.h" 14 #include "chrome/common/net/gaia/oauth2_mint_token_flow.h"
15 #include "content/public/test/test_url_fetcher_factory.h" 15 #include "net/url_request/test_url_fetcher_factory.h"
16 #include "net/url_request/url_request_status.h" 16 #include "net/url_request/url_request_status.h"
17 #include "testing/gmock/include/gmock/gmock.h" 17 #include "testing/gmock/include/gmock/gmock.h"
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 19
20 using net::TestURLFetcher;
20 using net::URLFetcher; 21 using net::URLFetcher;
21 using net::URLRequestStatus; 22 using net::URLRequestStatus;
22 using testing::_; 23 using testing::_;
23 using testing::StrictMock; 24 using testing::StrictMock;
24 25
25 namespace { 26 namespace {
26 27
27 static const char kValidTokenResponse[] = 28 static const char kValidTokenResponse[] =
28 "{" 29 "{"
29 " \"token\": \"at1\"," 30 " \"token\": \"at1\","
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 } 348 }
348 349
349 { // Non-null delegate. 350 { // Non-null delegate.
350 GoogleServiceAuthError error( 351 GoogleServiceAuthError error(
351 GoogleServiceAuthError::FromConnectionError(101)); 352 GoogleServiceAuthError::FromConnectionError(101));
352 CreateFlow(OAuth2MintTokenFlow::MODE_MINT_TOKEN_NO_FORCE); 353 CreateFlow(OAuth2MintTokenFlow::MODE_MINT_TOKEN_NO_FORCE);
353 EXPECT_CALL(delegate_, OnMintTokenFailure(error)); 354 EXPECT_CALL(delegate_, OnMintTokenFailure(error));
354 flow_->ProcessMintAccessTokenFailure(error); 355 flow_->ProcessMintAccessTokenFailure(error);
355 } 356 }
356 } 357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698