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

Unified Diff: services/resource_coordinator/coordination_unit/coordination_unit_impl_unittest.cc

Issue 2798713002: Global Resource Coordinator: Basic service internals (Closed)
Patch Set: Created 3 years, 8 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
Index: services/resource_coordinator/coordination_unit/coordination_unit_impl_unittest.cc
diff --git a/services/resource_coordinator/coordination_unit/coordination_unit_impl_unittest.cc b/services/resource_coordinator/coordination_unit/coordination_unit_impl_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d5d8553f6591d6cdb73c94897e6c59788bd411d6
--- /dev/null
+++ b/services/resource_coordinator/coordination_unit/coordination_unit_impl_unittest.cc
@@ -0,0 +1,166 @@
+// Copyright 2017 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 <memory>
+#include <vector>
+
+#include "base/bind.h"
+#include "base/message_loop/message_loop.h"
+#include "base/run_loop.h"
+#include "services/resource_coordinator/coordination_unit/coordination_unit_provider_impl.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace resource_coordinator {
+
+namespace {
+
+class CoordinationUnitImplTest : public testing::Test {
+ public:
+ CoordinationUnitImplTest() : provider_(nullptr) {}
+ ~CoordinationUnitImplTest() override {}
+
+ // testing::Test:
+ void TearDown() override { base::RunLoop().RunUntilIdle(); }
+
+ protected:
+ CoordinationUnitProviderImpl* provider() { return &provider_; }
+
+ private:
+ base::MessageLoop message_loop_;
+
+ CoordinationUnitProviderImpl provider_;
+};
+
+class TestCoordinationUnit : public mojom::PolicyCallback {
+ public:
+ TestCoordinationUnit(CoordinationUnitProviderImpl* provider,
+ const CoordinationUnitType& type,
+ const std::string& id)
+ : binding_(this), id_(type, id) {
+ CHECK(provider);
+
+ mojom::CoordinationUnitPtr coordination_unit;
+ provider->CreateCoordinationUnit(mojo::MakeRequest(&coordination_unit_),
+ id_);
+
+ base::RunLoop policy_callback;
+ SetPolicyClosure(policy_callback.QuitClosure());
+ coordination_unit_->SetPolicyCallback(GetPolicyCallback());
+ // Forces us to wait for the creation of the CUID to finish.
+ policy_callback.Run();
+ }
+
+ void SetPolicyClosure(const base::Closure& policy_closure) {
+ policy_update_closure_ = policy_closure;
+ }
+
+ mojom::PolicyCallbackPtr GetPolicyCallback() {
+ return binding_.CreateInterfacePtrAndBind();
+ }
+
+ // The CU will always send policy updates on events (including parent events)
+ void ForcePolicyUpdates() {
+ base::RunLoop callback;
+ SetPolicyClosure(callback.QuitClosure());
+ mojom::EventPtr event = mojom::Event::New();
+ event->type = TEST_EVENT;
+ coordination_unit_->SendEvent(std::move(event));
+ callback.Run();
+ }
+
+ const mojom::CoordinationUnitPtr& interface() const {
+ return coordination_unit_;
+ }
+
+ const CoordinationUnitID& id() const { return id_; }
+
+ // mojom::PolicyCallback:
+ void SetPolicy(resource_coordinator::mojom::PolicyPtr policy) override {
+ policy_update_closure_.Run();
+ }
+
+ private:
+ base::Closure policy_update_closure_;
+
+ mojo::Binding<mojom::PolicyCallback> binding_;
+ mojom::CoordinationUnitPtr coordination_unit_;
+ CoordinationUnitID id_;
+};
+
+} // namespace
+
+TEST_F(CoordinationUnitImplTest, BasicPolicyCallback) {
+ TestCoordinationUnit test_coordination_unit(provider(), WEBCONTENTS,
+ "test_id");
+ test_coordination_unit.ForcePolicyUpdates();
+}
+
+TEST_F(CoordinationUnitImplTest, AddChild) {
+ TestCoordinationUnit parent_unit(provider(), WEBCONTENTS, "parent_unit");
+
+ TestCoordinationUnit child_unit(provider(), WEBCONTENTS, "child_unit");
+
+ child_unit.ForcePolicyUpdates();
+ parent_unit.ForcePolicyUpdates();
+
+ {
+ base::RunLoop callback;
+ child_unit.SetPolicyClosure(callback.QuitClosure());
+ parent_unit.interface()->AddChild(child_unit.id());
+ callback.Run();
+ }
+
+ {
+ base::RunLoop parent_callback;
+ base::RunLoop child_callback;
+ parent_unit.SetPolicyClosure(parent_callback.QuitClosure());
+ child_unit.SetPolicyClosure(child_callback.QuitClosure());
+
+ // This event should force the policy to recalculated for all children.
+ mojom::EventPtr event = mojom::Event::New();
+ event->type = TEST_EVENT;
+ parent_unit.interface()->SendEvent(std::move(event));
+
+ parent_callback.Run();
+ child_callback.Run();
+ }
+}
+
+TEST_F(CoordinationUnitImplTest, CyclicGraphUnits) {
+ TestCoordinationUnit parent_unit(provider(), WEBCONTENTS, "parent_unit");
+
+ TestCoordinationUnit child_unit(provider(), WEBCONTENTS, "child_unit");
+
+ child_unit.ForcePolicyUpdates();
+ parent_unit.ForcePolicyUpdates();
+
+ {
+ base::RunLoop callback;
+ child_unit.SetPolicyClosure(callback.QuitClosure());
+ parent_unit.interface()->AddChild(child_unit.id());
+ callback.Run();
+ }
+
+ // This should fail, due to the existing child-parent relationship.
+ // Otherwise we end up with infinite recursion and crash when recalculating
+ // policies below.
+ child_unit.interface()->AddChild(parent_unit.id());
+
+ {
+ base::RunLoop parent_callback;
+ base::RunLoop child_callback;
+ parent_unit.SetPolicyClosure(parent_callback.QuitClosure());
+ child_unit.SetPolicyClosure(child_callback.QuitClosure());
+
+ // This event should force the policy to recalculated for all children.
+ mojom::EventPtr event = mojom::Event::New();
+ event->type = TEST_EVENT;
+ parent_unit.interface()->SendEvent(std::move(event));
+
+ parent_callback.Run();
+ child_callback.Run();
+ }
+}
+
+} // namespace resource_coordinator

Powered by Google App Engine
This is Rietveld 408576698