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

Unified Diff: chrome/browser/extensions/api/identity/identity_apitest.cc

Issue 569493003: Remove CreateEmptyExtension from extension_function_test_utils (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: chrome/browser/extensions/api/identity/identity_apitest.cc
diff --git a/chrome/browser/extensions/api/identity/identity_apitest.cc b/chrome/browser/extensions/api/identity/identity_apitest.cc
index 337fb2a230aa45bd01361243b30e5ab54e4d6c01..eca9c93d7f868e79537808a297791dc3a8262425 100644
--- a/chrome/browser/extensions/api/identity/identity_apitest.cc
+++ b/chrome/browser/extensions/api/identity/identity_apitest.cc
@@ -41,6 +41,7 @@
#include "content/public/browser/notification_source.h"
#include "content/public/test/test_utils.h"
#include "extensions/browser/guest_view/guest_view_base.h"
+#include "extensions/common/test_util.h"
#include "google_apis/gaia/google_service_auth_error.h"
#include "google_apis/gaia/oauth2_mint_token_flow.h"
#include "net/test/spawned_test_server/spawned_test_server.h"
@@ -117,7 +118,7 @@ class AsyncExtensionBrowserTest : public ExtensionBrowserTest {
if (!function->extension()) {
scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
}
@@ -411,7 +412,7 @@ class IdentityGetAccountsFunctionTest : public ExtensionBrowserTest {
const std::vector<std::string>& accounts) {
scoped_refptr<IdentityGetAccountsFunction> func(
new IdentityGetAccountsFunction);
- func->set_extension(utils::CreateEmptyExtension(kExtensionId).get());
+ func->set_extension(test_util::CreateEmptyExtension(kExtensionId).get());
if (!utils::RunFunction(
func.get(), std::string("[]"), browser(), utils::NONE)) {
return GenerateFailureResult(accounts, NULL)
@@ -532,7 +533,7 @@ class IdentityGetProfileUserInfoFunctionTest : public ExtensionBrowserTest {
scoped_ptr<api::identity::ProfileUserInfo> RunGetProfileUserInfo() {
scoped_refptr<IdentityGetProfileUserInfoFunction> func(
new IdentityGetProfileUserInfoFunction);
- func->set_extension(utils::CreateEmptyExtension(kExtensionId).get());
+ func->set_extension(test_util::CreateEmptyExtension(kExtensionId).get());
scoped_ptr<base::Value> value(
utils::RunFunctionAndReturnSingleResult(func.get(), "[]", browser()));
return api::identity::ProfileUserInfo::FromValue(*value.get());
@@ -1594,7 +1595,8 @@ class RemoveCachedAuthTokenFunctionTest : public ExtensionBrowserTest {
bool InvalidateDefaultToken() {
scoped_refptr<IdentityRemoveCachedAuthTokenFunction> func(
new IdentityRemoveCachedAuthTokenFunction);
- func->set_extension(utils::CreateEmptyExtension(kExtensionId).get());
+ func->set_extension(test_util::CreateEmptyExtension(
+ crx_file::id_util::GenerateId(kExtensionId)).get());
Yoyo Zhou 2014/09/15 18:52:43 Why is this changed?
limasdf 2014/09/16 15:36:47 Because ExtensionTOkenKey is made with crx_file::i
Yoyo Zhou 2014/09/18 17:55:29 Yeah, it looks unnecessary there too.
return utils::RunFunction(
func.get(),
std::string("[{\"token\": \"") + kAccessToken + "\"}]",
@@ -1677,8 +1679,7 @@ IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest, UserCloseWindow) {
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
WaitForGURLAndCloseWindow popup_observer(auth_url);
@@ -1704,8 +1705,7 @@ IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest, InteractionRequired) {
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
std::string args = "[{\"interactive\": false, \"url\": \"" +
@@ -1727,8 +1727,7 @@ IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest, LoadFailed) {
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
std::string args = "[{\"interactive\": true, \"url\": \"" +
@@ -1748,8 +1747,7 @@ IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest, NonInteractiveSuccess) {
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
function->InitFinalRedirectURLPrefixForTest("abcdefghij");
@@ -1775,8 +1773,7 @@ IN_PROC_BROWSER_TEST_F(
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
function->InitFinalRedirectURLPrefixForTest("abcdefghij");
@@ -1804,8 +1801,7 @@ IN_PROC_BROWSER_TEST_F(LaunchWebAuthFlowFunctionTest,
scoped_refptr<IdentityLaunchWebAuthFlowFunction> function(
new IdentityLaunchWebAuthFlowFunction());
- scoped_refptr<Extension> empty_extension(
- utils::CreateEmptyExtension());
+ scoped_refptr<Extension> empty_extension(test_util::CreateEmptyExtension());
function->set_extension(empty_extension.get());
function->InitFinalRedirectURLPrefixForTest("abcdefghij");

Powered by Google App Engine
This is Rietveld 408576698