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

Side by Side Diff: jingle/notifier/communicator/single_login_attempt_unittest.cc

Issue 14307021: jingle: Use base::MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 #include "jingle/notifier/communicator/single_login_attempt.h" 5 #include "jingle/notifier/communicator/single_login_attempt.h"
6 6
7 #include <cstddef> 7 #include <cstddef>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 99
100 virtual void TearDown() OVERRIDE { 100 virtual void TearDown() OVERRIDE {
101 message_loop_.RunUntilIdle(); 101 message_loop_.RunUntilIdle();
102 } 102 }
103 103
104 void FireRedirect(buzz::XmlElement* redirect_error) { 104 void FireRedirect(buzz::XmlElement* redirect_error) {
105 attempt_.OnError(buzz::XmppEngine::ERROR_STREAM, 0, redirect_error); 105 attempt_.OnError(buzz::XmppEngine::ERROR_STREAM, 0, redirect_error);
106 } 106 }
107 107
108 private: 108 private:
109 MessageLoop message_loop_; 109 base::MessageLoop message_loop_;
110 const LoginSettings login_settings_; 110 const LoginSettings login_settings_;
111 111
112 protected: 112 protected:
113 SingleLoginAttempt attempt_; 113 SingleLoginAttempt attempt_;
114 FakeDelegate fake_delegate_; 114 FakeDelegate fake_delegate_;
115 FakeBaseTask fake_base_task_; 115 FakeBaseTask fake_base_task_;
116 }; 116 };
117 117
118 // Fire OnConnect and make sure the base task gets passed to the 118 // Fire OnConnect and make sure the base task gets passed to the
119 // delegate properly. 119 // delegate properly.
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 // Fire 'Unauthorized' errors and make sure the delegate gets the 245 // Fire 'Unauthorized' errors and make sure the delegate gets the
246 // OnCredentialsRejected() event. 246 // OnCredentialsRejected() event.
247 TEST_F(SingleLoginAttemptTest, CredentialsRejected) { 247 TEST_F(SingleLoginAttemptTest, CredentialsRejected) {
248 attempt_.OnError(buzz::XmppEngine::ERROR_UNAUTHORIZED, 0, NULL); 248 attempt_.OnError(buzz::XmppEngine::ERROR_UNAUTHORIZED, 0, NULL);
249 EXPECT_EQ(CREDENTIALS_REJECTED, fake_delegate_.state()); 249 EXPECT_EQ(CREDENTIALS_REJECTED, fake_delegate_.state());
250 } 250 }
251 251
252 } // namespace 252 } // namespace
253 253
254 } // namespace notifier 254 } // namespace notifier
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698