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

Side by Side Diff: mojo/service_manager/background_shell_service_loader_unittest.cc

Issue 394903005: mojo: terminate apps if the shell goes away (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: disable tests that touch nss for now Created 6 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "mojo/service_manager/background_shell_service_loader.h" 5 #include "mojo/service_manager/background_shell_service_loader.h"
6 6
7 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
8 8
9 namespace mojo { 9 namespace mojo {
10 10
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 // Tests that the loader can load a service that is well behaved (quits 45 // Tests that the loader can load a service that is well behaved (quits
46 // itself). 46 // itself).
47 TEST(BackgroundShellServiceLoaderTest, Load) { 47 TEST(BackgroundShellServiceLoaderTest, Load) {
48 scoped_ptr<ServiceLoader> real_loader(new DummyLoader()); 48 scoped_ptr<ServiceLoader> real_loader(new DummyLoader());
49 BackgroundShellServiceLoader loader(real_loader.Pass(), "test", 49 BackgroundShellServiceLoader loader(real_loader.Pass(), "test",
50 base::MessageLoop::TYPE_DEFAULT); 50 base::MessageLoop::TYPE_DEFAULT);
51 MessagePipe dummy; 51 MessagePipe dummy;
52 loader.LoadService(NULL, GURL(), dummy.handle0.Pass()); 52 loader.LoadService(NULL, GURL(), dummy.handle0.Pass());
53 } 53 }
54 54
55 // Test that an app that doesn't quit itself can still be handled.
56 // TODO(tim): Remove this.
57 TEST(BackgroundShellServiceLoaderTest, LoadMisbehavedService) {
58 scoped_ptr<DummyLoader> real_loader(new DummyLoader());
59 real_loader->DontSimulateAppQuit();
60 BackgroundShellServiceLoader loader(
61 real_loader.PassAs<ServiceLoader>(), "test",
62 base::MessageLoop::TYPE_DEFAULT);
63 // Because this app is mis-behaved (doesn't quit itself), we need to
64 // explicitly kill the thread.
65 loader.set_quit_on_shutdown();
66 MessagePipe dummy;
67 loader.LoadService(NULL, GURL(), dummy.handle0.Pass());
68 }
69
70 } // namespace mojo 55 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/service_manager/background_shell_service_loader.cc ('k') | mojo/service_manager/service_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698