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

Unified Diff: google_apis/gaia/gaia_oauth_client_unittest.cc

Issue 348403003: Reverting 267374 on 36 branch. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1985/src/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « google_apis/gaia/gaia_oauth_client.cc ('k') | google_apis/gaia/gaia_urls.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/gaia_oauth_client_unittest.cc
===================================================================
--- google_apis/gaia/gaia_oauth_client_unittest.cc (revision 280060)
+++ google_apis/gaia/gaia_oauth_client_unittest.cc (working copy)
@@ -134,22 +134,25 @@
const int kTestExpiresIn = 3920;
const std::string kDummyGetTokensResult =
- "{\"access_token\":\"" + kTestAccessToken + "\","
- "\"expires_in\":" + base::IntToString(kTestExpiresIn) + ","
- "\"refresh_token\":\"" + kTestRefreshToken + "\"}";
+ "{\"access_token\":\"" + kTestAccessToken + "\","
+ "\"expires_in\":" + base::IntToString(kTestExpiresIn) + ","
+ "\"refresh_token\":\"" + kTestRefreshToken + "\"}";
const std::string kDummyRefreshTokenResult =
- "{\"access_token\":\"" + kTestAccessToken + "\","
- "\"expires_in\":" + base::IntToString(kTestExpiresIn) + "}";
+ "{\"access_token\":\"" + kTestAccessToken + "\","
+ "\"expires_in\":" + base::IntToString(kTestExpiresIn) + "}";
+const std::string kDummyUserInfoResult =
+ "{\"email\":\"" + kTestUserEmail + "\"}";
+
const std::string kDummyUserIdResult =
- "{\"id\":\"" + kTestUserId + "\"}";
+ "{\"id\":\"" + kTestUserId + "\"}";
const std::string kDummyTokenInfoResult =
- "{\"issued_to\": \"1234567890.apps.googleusercontent.com\","
- "\"audience\": \"1234567890.apps.googleusercontent.com\","
- "\"scope\": \"https://googleapis.com/oauth2/v2/tokeninfo\","
- "\"expires_in\":" + base::IntToString(kTestExpiresIn) + "}";
+ "{\"issued_to\": \"1234567890.apps.googleusercontent.com\","
+ "\"audience\": \"1234567890.apps.googleusercontent.com\","
+ "\"scope\": \"https://googleapis.com/oauth2/v2/tokeninfo\","
+ "\"expires_in\":" + base::IntToString(kTestExpiresIn) + "}";
}
namespace gaia {
@@ -301,14 +304,11 @@
factory.get_url_fetcher()->Finish();
}
+
TEST_F(GaiaOAuthClientTest, GetUserEmail) {
MockGaiaOAuthClientDelegate delegate;
EXPECT_CALL(delegate, OnGetUserEmailResponse(kTestUserEmail)).Times(1);
- const std::string kDummyUserInfoResult =
- "{\"emails\": [{\"value\":\"" + kTestUserEmail +
- "\", \"type\":\"account\"}]}";
-
MockOAuthFetcherFactory factory;
factory.set_results(kDummyUserInfoResult);
@@ -316,37 +316,6 @@
auth.GetUserEmail("access_token", 1, &delegate);
}
-TEST_F(GaiaOAuthClientTest, GetUserEmailSecondItemValid) {
- MockGaiaOAuthClientDelegate delegate;
- EXPECT_CALL(delegate, OnGetUserEmailResponse(kTestUserEmail)).Times(1);
-
- const std::string kDummyUserInfoResult =
- "{\"emails\": [{\"value\":\"foo\"},"
- "{\"value\":\"" + kTestUserEmail +
- "\", \"type\":\"account\"}]}";
-
- MockOAuthFetcherFactory factory;
- factory.set_results(kDummyUserInfoResult);
-
- GaiaOAuthClient auth(GetRequestContext());
- auth.GetUserEmail("access_token", 1, &delegate);
-}
-
-TEST_F(GaiaOAuthClientTest, GetUserEmailNoValidItems) {
- MockGaiaOAuthClientDelegate delegate;
- EXPECT_CALL(delegate, OnNetworkError(_)).Times(1);
-
- const std::string kDummyUserInfoResult =
- "{\"emails\": [{\"value\":\"" + kTestUserEmail +
- "\", \"type\":\"foo\"}]}";
-
- MockOAuthFetcherFactory factory;
- factory.set_results(kDummyUserInfoResult);
-
- GaiaOAuthClient auth(GetRequestContext());
- auth.GetUserEmail("access_token", 1, &delegate);
-}
-
TEST_F(GaiaOAuthClientTest, GetUserId) {
MockGaiaOAuthClientDelegate delegate;
EXPECT_CALL(delegate, OnGetUserIdResponse(kTestUserId)).Times(1);
« no previous file with comments | « google_apis/gaia/gaia_oauth_client.cc ('k') | google_apis/gaia/gaia_urls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698