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

Side by Side Diff: chrome/browser/password_manager/native_backend_kwallet_x_unittest.cc

Issue 9363045: Revert 121920 - dbus: add ObjectPath type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 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 <algorithm> 5 #include <algorithm>
6 #include <map> 6 #include <map>
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/pickle.h" 11 #include "base/pickle.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "base/synchronization/waitable_event.h" 13 #include "base/synchronization/waitable_event.h"
14 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
15 #include "chrome/browser/password_manager/native_backend_kwallet_x.h" 15 #include "chrome/browser/password_manager/native_backend_kwallet_x.h"
16 #include "chrome/browser/prefs/pref_service.h" 16 #include "chrome/browser/prefs/pref_service.h"
17 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
18 #include "chrome/test/base/testing_profile.h" 18 #include "chrome/test/base/testing_profile.h"
19 #include "content/test/test_browser_thread.h" 19 #include "content/test/test_browser_thread.h"
20 #include "dbus/message.h" 20 #include "dbus/message.h"
21 #include "dbus/mock_bus.h" 21 #include "dbus/mock_bus.h"
22 #include "dbus/mock_object_proxy.h" 22 #include "dbus/mock_object_proxy.h"
23 #include "dbus/object_path.h"
24 #include "dbus/object_proxy.h" 23 #include "dbus/object_proxy.h"
25 #include "testing/gmock/include/gmock/gmock.h" 24 #include "testing/gmock/include/gmock/gmock.h"
26 #include "testing/gtest/include/gtest/gtest.h" 25 #include "testing/gtest/include/gtest/gtest.h"
27 26
28 using content::BrowserThread; 27 using content::BrowserThread;
29 using testing::_; 28 using testing::_;
30 using testing::Invoke; 29 using testing::Invoke;
31 using testing::Return; 30 using testing::Return;
32 using webkit::forms::PasswordForm; 31 using webkit::forms::PasswordForm;
33 32
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 form_isc_.submit_element = UTF8ToUTF16("login"); 218 form_isc_.submit_element = UTF8ToUTF16("login");
220 form_isc_.signon_realm = "ISC"; 219 form_isc_.signon_realm = "ISC";
221 220
222 dbus::Bus::Options options; 221 dbus::Bus::Options options;
223 options.bus_type = dbus::Bus::SESSION; 222 options.bus_type = dbus::Bus::SESSION;
224 mock_session_bus_ = new dbus::MockBus(options); 223 mock_session_bus_ = new dbus::MockBus(options);
225 224
226 mock_klauncher_proxy_ = 225 mock_klauncher_proxy_ =
227 new dbus::MockObjectProxy(mock_session_bus_.get(), 226 new dbus::MockObjectProxy(mock_session_bus_.get(),
228 "org.kde.klauncher", 227 "org.kde.klauncher",
229 dbus::ObjectPath("/KLauncher")); 228 "/KLauncher");
230 EXPECT_CALL(*mock_klauncher_proxy_, 229 EXPECT_CALL(*mock_klauncher_proxy_,
231 CallMethodAndBlock(_, _)) 230 CallMethodAndBlock(_, _))
232 .WillRepeatedly(Invoke(this, 231 .WillRepeatedly(Invoke(this,
233 &NativeBackendKWalletTest::KLauncherMethodCall)); 232 &NativeBackendKWalletTest::KLauncherMethodCall));
234 233
235 mock_kwallet_proxy_ = 234 mock_kwallet_proxy_ =
236 new dbus::MockObjectProxy(mock_session_bus_.get(), 235 new dbus::MockObjectProxy(mock_session_bus_.get(),
237 "org.kde.kwalletd", 236 "org.kde.kwalletd",
238 dbus::ObjectPath("/modules/kwalletd")); 237 "/modules/kwalletd");
239 EXPECT_CALL(*mock_kwallet_proxy_, 238 EXPECT_CALL(*mock_kwallet_proxy_,
240 CallMethodAndBlock(_, _)) 239 CallMethodAndBlock(_, _))
241 .WillRepeatedly(Invoke(this, 240 .WillRepeatedly(Invoke(this,
242 &NativeBackendKWalletTest::KWalletMethodCall)); 241 &NativeBackendKWalletTest::KWalletMethodCall));
243 242
244 EXPECT_CALL(*mock_session_bus_, GetObjectProxy( 243 EXPECT_CALL(*mock_session_bus_, GetObjectProxy(
245 "org.kde.klauncher", 244 "org.kde.klauncher",
246 dbus::ObjectPath("/KLauncher"))) 245 "/KLauncher"))
247 .WillRepeatedly(Return(mock_klauncher_proxy_.get())); 246 .WillRepeatedly(Return(mock_klauncher_proxy_.get()));
248 EXPECT_CALL(*mock_session_bus_, GetObjectProxy( 247 EXPECT_CALL(*mock_session_bus_, GetObjectProxy(
249 "org.kde.kwalletd", 248 "org.kde.kwalletd",
250 dbus::ObjectPath("/modules/kwalletd"))) 249 "/modules/kwalletd"))
251 .WillRepeatedly(Return(mock_kwallet_proxy_.get())); 250 .WillRepeatedly(Return(mock_kwallet_proxy_.get()));
252 251
253 EXPECT_CALL(*mock_session_bus_, 252 EXPECT_CALL(*mock_session_bus_,
254 ShutdownAndBlock()).WillOnce(Return()).WillRepeatedly(Return()); 253 ShutdownAndBlock()).WillOnce(Return()).WillRepeatedly(Return());
255 } 254 }
256 255
257 void NativeBackendKWalletTest::TearDown() { 256 void NativeBackendKWalletTest::TearDown() {
258 MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure()); 257 MessageLoop::current()->PostTask(FROM_HERE, MessageLoop::QuitClosure());
259 MessageLoop::current()->Run(); 258 MessageLoop::current()->Run();
260 db_thread_.Stop(); 259 db_thread_.Stop();
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 1003
1005 RunDBThread(); 1004 RunDBThread();
1006 1005
1007 // The other two copies of the password in different profiles should remain. 1006 // The other two copies of the password in different profiles should remain.
1008 CheckPasswordForms("Chrome Form Data", expected); 1007 CheckPasswordForms("Chrome Form Data", expected);
1009 CheckPasswordForms("Chrome Form Data (42)", expected); 1008 CheckPasswordForms("Chrome Form Data (42)", expected);
1010 expected.clear(); 1009 expected.clear();
1011 CheckPasswordForms("Chrome Form Data (24)", expected); 1010 CheckPasswordForms("Chrome Form Data (24)", expected);
1012 } 1011 }
1013 } 1012 }
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/native_backend_kwallet_x.cc ('k') | content/browser/geolocation/wifi_data_provider_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698