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

Unified Diff: chrome/browser/chromeos/login/google_authenticator_unittest.cc

Issue 3407008: [Chrome OS] Infrastucture for doing offline/online login simultaneously (Closed)
Patch Set: re-upload (again) due to 500s Created 10 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/chromeos/login/google_authenticator_unittest.cc
diff --git a/chrome/browser/chromeos/login/google_authenticator_unittest.cc b/chrome/browser/chromeos/login/google_authenticator_unittest.cc
index 491951087e4b7ad47cff246106b41e39cd20c06f..68877c3b48a83144fe15ea825789dae1fe182b79 100644
--- a/chrome/browser/chromeos/login/google_authenticator_unittest.cc
+++ b/chrome/browser/chromeos/login/google_authenticator_unittest.cc
@@ -19,6 +19,7 @@
#include "chrome/browser/chromeos/login/google_authenticator.h"
#include "chrome/browser/chromeos/login/issue_response_handler.h"
#include "chrome/browser/chromeos/login/mock_auth_response_handler.h"
+#include "chrome/browser/chromeos/login/mock_url_fetchers.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/net/gaia/gaia_authenticator2_unittest.h"
#include "chrome/common/net/url_fetcher.h"
@@ -51,42 +52,6 @@ class MockConsumer : public LoginStatusConsumer {
void(const GaiaAuthConsumer::ClientLoginResult& result));
};
-// Simulates a URL fetch by posting a delayed task. This fetch expects to be
-// canceled, and fails the test if it is not
-class ExpectCanceledFetcher : public URLFetcher {
- public:
- ExpectCanceledFetcher(bool success,
- const GURL& url,
- const std::string& results,
- URLFetcher::RequestType request_type,
- URLFetcher::Delegate* d)
- : URLFetcher(url, request_type, d) {
- }
-
- virtual ~ExpectCanceledFetcher() {
- task_->Cancel();
- }
-
- static void CompleteFetch() {
- ADD_FAILURE() << "Fetch completed in ExpectCanceledFetcher!";
- MessageLoop::current()->Quit(); // Allow exiting even if we mess up.
- }
-
- void Start() {
- LOG(INFO) << "Delaying fetch completion in mock";
- task_ = NewRunnableFunction(&ExpectCanceledFetcher::CompleteFetch);
- ChromeThread::PostDelayedTask(ChromeThread::UI,
- FROM_HERE,
- task_,
- 100);
- }
-
- private:
- CancelableTask* task_;
-
- DISALLOW_COPY_AND_ASSIGN(ExpectCanceledFetcher);
-};
-
class GoogleAuthenticatorTest : public ::testing::Test {
public:
GoogleAuthenticatorTest()
« no previous file with comments | « chrome/browser/chromeos/login/cryptohome_op_unittest.cc ('k') | chrome/browser/chromeos/login/login_status_consumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698