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

Unified Diff: services/shell/background/tests/background_shell_unittest.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « services/shell/background/tests/BUILD.gn ('k') | services/shell/background/tests/test.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/background/tests/background_shell_unittest.cc
diff --git a/services/shell/background/tests/background_shell_unittest.cc b/services/shell/background/tests/background_shell_unittest.cc
deleted file mode 100644
index 1205559e874c5d39cfac3ea12bbde9b0a218dba0..0000000000000000000000000000000000000000
--- a/services/shell/background/tests/background_shell_unittest.cc
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "services/shell/background/background_shell.h"
-
-#include <memory>
-
-#include "base/memory/ptr_util.h"
-#include "base/run_loop.h"
-#include "services/shell/background/tests/test.mojom.h"
-#include "services/shell/public/cpp/connector.h"
-#include "services/shell/public/cpp/service.h"
-#include "services/shell/public/cpp/service_context.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace shell {
-namespace {
-
-const char kTestName[] = "service:background_shell_unittest";
-const char kAppName[] = "service:background_shell_test_service";
-
-class ServiceImpl : public Service {
- public:
- ServiceImpl() {}
- ~ServiceImpl() override {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ServiceImpl);
-};
-
-void SetFlagAndRunClosure(bool* flag, const base::Closure& closure) {
- *flag = true;
- closure.Run();
-}
-
-} // namespace
-
-// Uses BackgroundShell to start the shell in the background and connects to
-// background_shell_test_app, verifying we can send a message to the app.
-#if defined(OS_ANDROID)
-// TODO(crbug.com/589784): This test is disabled, as it fails
-// on the Android GN bot.
-#define MAYBE_Basic DISABLED_Basic
-#else
-#define MAYBE_Basic Basic
-#endif
-TEST(BackgroundShellTest, MAYBE_Basic) {
- base::MessageLoop message_loop;
- BackgroundShell background_shell;
- background_shell.Init(nullptr);
- ServiceImpl service;
- ServiceContext service_context(
- &service, background_shell.CreateServiceRequest(kTestName));
- mojom::TestServicePtr test_service;
- service_context.connector()->ConnectToInterface(kAppName, &test_service);
- base::RunLoop run_loop;
- bool got_result = false;
- test_service->Test(base::Bind(&SetFlagAndRunClosure, &got_result,
- run_loop.QuitClosure()));
- run_loop.Run();
- EXPECT_TRUE(got_result);
-}
-
-} // namespace shell
« no previous file with comments | « services/shell/background/tests/BUILD.gn ('k') | services/shell/background/tests/test.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698