1// Copyright 2024 The Fuchsia 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.
45use anyhow::Result;
6use fuchsia_component::client::Service;
7use fuchsia_component_test::{Capability, ChildOptions, RealmBuilder, RealmInstance, Ref, Route};
89use {
10 fidl_fuchsia_hardware_suspend as fhsuspend, fidl_fuchsia_power_broker as fbroker,
11 fidl_fuchsia_power_suspend as fsuspend, fidl_fuchsia_power_system as fsystem,
12 fidl_test_sagcontrol as ftsagcontrol, fidl_test_suspendcontrol as ftsuspendcontrol,
13};
1415pub const COMPONENT_NAME: &str = "power_framework_test_realm";
16pub const POWER_FRAMEWORK_TEST_REALM_URL: &str = "power-framework#meta/power-framework.cm";
1718#[async_trait::async_trait]
19pub trait PowerFrameworkTestRealmBuilder {
20/// Set up the PowerFrameworkTestRealm component in the RealmBuilder realm.
21 /// This configures proper input/output routing of capabilities.
22 /// This takes a `manifest_url` to use, which is used by tests that need to
23 /// specify a custom power framework test realm.
24async fn power_framework_test_realm_manifest_setup(&self, manifest_url: &str) -> Result<&Self>;
25/// Set up the PowerFrameworkTestRealm component in the RealmBuilder realm.
26 /// This configures proper input/output routing of capabilities.
27async fn power_framework_test_realm_setup(&self) -> Result<&Self>;
28}
2930#[async_trait::async_trait]
31impl PowerFrameworkTestRealmBuilder for RealmBuilder {
32async fn power_framework_test_realm_manifest_setup(&self, manifest_url: &str) -> Result<&Self> {
33let power_framework_realm =
34self.add_child(COMPONENT_NAME, manifest_url, ChildOptions::new()).await?;
3536// Exposes from the the power_framework_test_realm manifest.
37self.add_route(
38 Route::new()
39 .capability(Capability::protocol::<fbroker::TopologyMarker>())
40 .capability(Capability::protocol::<fsystem::ActivityGovernorMarker>())
41 .capability(Capability::protocol::<fsuspend::StatsMarker>())
42 .capability(Capability::protocol::<ftsagcontrol::StateMarker>())
43 .capability(Capability::protocol::<ftsuspendcontrol::DeviceMarker>())
44 .capability(Capability::service::<fhsuspend::SuspendServiceMarker>())
45 .from(&power_framework_realm)
46 .to(Ref::parent()),
47 )
48 .await?;
49Ok(&self)
50 }
5152async fn power_framework_test_realm_setup(&self) -> Result<&Self> {
53self.power_framework_test_realm_manifest_setup(POWER_FRAMEWORK_TEST_REALM_URL).await
54}
55}
5657#[async_trait::async_trait]
58pub trait PowerFrameworkTestRealmInstance {
59/// Connect to the suspender hosted by PowerFrameworkTestRealm in this Instance.
60async fn power_framework_test_realm_connect_to_suspender(
61&self,
62 ) -> Result<fhsuspend::SuspenderProxy>;
63}
6465#[async_trait::async_trait]
66impl PowerFrameworkTestRealmInstance for RealmInstance {
67async fn power_framework_test_realm_connect_to_suspender(
68&self,
69 ) -> Result<fhsuspend::SuspenderProxy> {
70 Service::open_from_dir(self.root.get_exposed_dir(), fhsuspend::SuspendServiceMarker)
71 .unwrap()
72 .connect_to_instance("default")?
73.connect_to_suspender()
74 .map_err(|e| anyhow::anyhow!("Failed to connect to suspender: {:?}", e))
75 }
76}