Transfer auth cookies set by SAML IdPs to user profile during login
[chromium-blink-merge.git] / dbus / test_server.cc
blob88f751f7eb507537cf68ea3650e6806eb58ab738
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
3 // found in the LICENSE file.
5 #include "base/at_exit.h"
6 #include "base/command_line.h"
7 #include "base/test/test_timeouts.h"
8 #include "dbus/bus.h"
9 #include "dbus/test_service.h"
11 int main(int argc, char** argv) {
12 base::AtExitManager exit_manager;
13 CommandLine::Init(argc, argv);
14 TestTimeouts::Initialize();
16 base::Thread* dbus_thread = new base::Thread("D-Bus Thread");
17 base::Thread::Options thread_options;
18 thread_options.message_loop_type = base::MessageLoop::TYPE_IO;
19 CHECK(dbus_thread->StartWithOptions(thread_options));
21 dbus::TestService::Options options;
22 options.dbus_task_runner = dbus_thread->message_loop_proxy();
23 dbus::TestService* test_service = new dbus::TestService(options);
24 CHECK(test_service->StartService());
25 CHECK(test_service->WaitUntilServiceIsStarted());
26 CHECK(test_service->HasDBusThread());
27 base::PlatformThread::Join(dbus_thread->thread_handle());