Realm Builder

Realm Builder 库旨在协助进行集成测试 来允许运行 Realms 和 特定于各个测试用例的模拟组件。

如果测试希望启动子组件,则 Realm Builder 很可能会 非常适合用于辅助测试

如果针对每项测试分别定制任一领域,对测试并无助益 包含每个测试用例独有的模拟组件的 case 或 Realms,则 可以简化测试的实施、理解和维护, 静态组件清单如果测试确实需要其中任一项(或两者) 那么 Realm Builder 非常适合协助测试。

Realm Builder 库支持多种语言,并且 语义和每种语言的能力可能有所不同。如需全面了解 功能和支持的语言列表,请参阅 语言特征矩阵

添加依赖项

Realm Builder 客户端库依赖特殊功能来运行。因此, 使用此库的测试必须在其 测试组件的清单:

include: [
    "sys/component/realm_builder.shard.cml",
    // ...
],

然后,您应为您的测试语言添加 GN 依赖项:

Rust

将 Rust Realm Builder 库添加到 BUILD.gn 文件中

deps = [
  "//src/lib/fuchsia-component-test",

  # ...
]

C++

将 C++ Realm Builder 库添加到您的 BUILD.gn 文件中

deps = [
  "//sdk/lib/sys/component/cpp/testing:cpp",

  # ...
]

初始化 Realm Builder

添加必要的依赖项后,在 测试组件。

建议:初始化单独的构建器实例 测试数据。

不推荐:使用 所有测试用例

Rust

本部分假定您要编写异步测试,并且 组件的某些部分与以下代码类似:

#[fuchsia::test]
async fn test() -> Result<(), Error> {
    // ...
}

导入 Realm Builder 库

use {
    // ...
    fuchsia_component_test::{
        Capability, ChildOptions, LocalComponentHandles, RealmBuilder, Ref, Route,
    },
    futures::{StreamExt, TryStreamExt},
};

初始化 RealmBuilder 结构体

为测试中的每个测试用例创建一个新的 RealmBuilder 实例。 这样会创建一个唯一、隔离的子领域, 不会影响其他测试用例。

let builder = RealmBuilder::new().await?;

C++

本部分假定您要编写异步测试,并且 您的测试是在消息循环中执行的。通常,此类情况类似于 如下所示:

#include <lib/async-loop/cpp/loop.h>
#include <lib/async-loop/default.h>

TEST(SampleTest, CallEcho) {
    async::Loop loop(&kAsyncLoopConfigAttachToCurrentThread);
    // Test code below
}

导入 Realm Builder 库

#include <lib/sys/component/cpp/testing/realm_builder.h>

使用库命名空间 这是可选步骤。它会导入整个库的命名空间 以方便编写和读取测试。

// NOLINTNEXTLINE
using namespace component_testing;

初始化 Realm::Builder

为测试中的每个测试用例创建一个新的 Realm::Builder 实例。 这样会创建一个唯一、隔离的子领域, 不会影响其他测试用例。

auto builder = RealmBuilder::Create();

建造大区

为目标构建 Realm Builder 对象后,你现在可以开始 组建王国。

使用 Realm Builder 实例向使用 添加语言的组件函数。每个子组件都需要以下元素:

  1. 组件名称:领域内组件的唯一标识符。 对于静态组件,这会映射到实例的 name 属性 (列在组件清单的 children 部分)。
  2. Component source:定义当领域 。对于静态组件,它应该是 URL 和 有效的组件网址。它映射到 的 url 属性。 组件的 children 部分中列出的实例 清单。

以下示例将两个静态子组件添加到已创建的大区:

  • 组件 echo_server 从绝对组件网址加载
  • 组件 echo_client 从相对组件网址加载

Rust

// Add component to the realm, which is fetched using a URL.
let echo_server = builder
    .add_child(
        "echo_server",
        "fuchsia-pkg://fuchsia.com/realm-builder-examples#meta/echo_server.cm",
        ChildOptions::new(),
    )
    .await?;
// Add component to the realm, which is fetched using a fragment-only URL.
// The child is not exposing a service, so the `eager` option ensures the
// child starts when the realm is built.
let echo_client = builder
    .add_child("echo_client", "#meta/echo_client.cm", ChildOptions::new().eager())
    .await?;

C++

// Add component server to the realm, which is fetched using a URL.
builder.AddChild("echo_server",
                 "fuchsia-pkg://fuchsia.com/realm-builder-examples#meta/echo_server.cm");
// Add component to the realm, which is fetched using a fragment-only URL. The
// child is not exposing a service, so the `EAGER` option ensures the child
// starts when the realm is built.
builder.AddChild("echo_client", "#meta/echo_client.cm",
                 ChildOptions{.startup_mode = StartupMode::EAGER});

添加模拟组件

通过模拟组件,测试可以提供行为类似于 专用组件。Realm Builder 实现协议, 组件框架将本地实现视为组件并处理 的 FIDL 连接。本地实现可以存储特定于 使用该 API 的测试用例,使每个构造的领域都有一个模拟 了解其具体应用场景。

以下示例展示了用于实现 fidl.examples.routing.echo.Echo 协议。

首先,您必须实现模拟组件。

Rust

在 Rust 中,模拟组件是通过具有以下特征的函数来实现的: 签名:

Missing code example

MockHandles 是一个结构体,其中包含组件传入操作的句柄 和传出功能:

Missing code example

模拟组件的实现如下所示:

async fn echo_server_mock(handles: LocalComponentHandles) -> Result<(), Error> {
    // Create a new ServiceFs to host FIDL protocols from
    let mut fs = fserver::ServiceFs::new();

    // Add the echo protocol to the ServiceFs
    fs.dir("svc").add_fidl_service(IncomingService::Echo);

    // Run the ServiceFs on the outgoing directory handle from the mock handles
    fs.serve_connection(handles.outgoing_dir)?;

    fs.for_each_concurrent(0, move |IncomingService::Echo(stream)| async move {
        stream
            .map(|result| result.context("Request came with error"))
            .try_for_each(|request| async move {
                match request {
                    fecho::EchoRequest::EchoString { value, responder } => {
                        responder
                            .send(value.as_ref().map(|s| &**s))
                            .expect("failed to send echo response");
                    }
                }
                Ok(())
            })
            .await
            .context("Failed to serve request stream")
            .unwrap_or_else(|e| eprintln!("Error encountered: {:?}", e))
    })
    .await;

    Ok(())
}

C++

在 C++ 中,模拟组件的实现方法是创建一个继承自 LocalComponent 接口,并替换 Start 方法。

// The interface for backing implementations of components with a Source of Mock.
class LocalComponentImpl {
 public:
  virtual ~LocalComponentImpl();

  // Invoked when the Component Manager issues a Start request to the component.
  // |mock_handles| contains the outgoing directory and namespace of
  // the component.
  virtual void OnStart() = 0;

  // The LocalComponentImpl derived class may override this method to be informed if
  // ComponentController::Stop() was called on the controller associated with
  // the component instance. The ComponentController binding will be dropped
  // automatically, immediately after LocalComponentImpl::OnStop() returns.
  virtual void OnStop() {}

  // The component can call this method to terminate its instance. This will
  // release the handles, and drop the |ComponentController|, informing
  // component manager that the component has stopped. Calling |Exit()| will
  // also cause the Realm to drop the |LocalComponentImpl|, which should
  // destruct the component, and the handles and bindings held by the component.
  // Therefore the |LocalComponentImpl| should not do anything else after
  // calling |Exit()|.
  //
  // This method is not valid until |OnStart()| is invoked.
  void Exit(zx_status_t return_code = ZX_OK);

  // Returns the namespace provided to the mock component.
  //
  // This method is not valid until |OnStart()| is invoked.
  fdio_ns_t* ns();

  // Returns a wrapper around the component's outgoing directory. The mock
  // component may publish capabilities using the returned object.
  //
  // This method is not valid until |OnStart()| is invoked.
  sys::OutgoingDirectory* outgoing();

  // Convenience method to construct a ServiceDirectory by opening a handle to
  // "/svc" in the namespace object returned by `ns()`.
  //
  // This method is not valid until |OnStart()| is invoked.
  sys::ServiceDirectory svc();

 private:
  friend internal::LocalComponentRunner;
  // The |LocalComponentHandles| are set by the |LocalComponentRunner| after
  // construction by the factory, and before calling |OnStart()|
  std::unique_ptr<LocalComponentHandles> handles_;
};

LocalComponentHandles 是一个类,其中包含组件传入操作的句柄 和传出功能:

// Handles provided to mock component.
class LocalComponentHandles final {
 public:
  // ...

  // Returns the namespace provided to the mock component. The returned pointer
  // will be invalid once *this is destroyed.
  fdio_ns_t* ns();

  // Returns a wrapper around the component's outgoing directory. The mock
  // component may publish capabilities using the returned object. The returned
  // pointer will be invalid once *this is destroyed.
  sys::OutgoingDirectory* outgoing();

  // Convenience method to construct a ServiceDirectory by opening a handle to
  // "/svc" in the namespace object returned by `ns()`.
  sys::ServiceDirectory svc();

  // ...
};

模拟组件的实现如下所示:

class LocalEchoServerImpl : public fidl::examples::routing::echo::Echo, public LocalComponentImpl {
 public:
  explicit LocalEchoServerImpl(async_dispatcher_t* dispatcher) : dispatcher_(dispatcher) {}

  // Override `OnStart` from `LocalComponentImpl` class.
  void OnStart() override {
    // When `OnStart()` is called, this implementation can call methods to
    // access handles to the component's incoming capabilities (`ns()` and
    // `svc()`) and outgoing capabilities (`outgoing()`).
    ASSERT_EQ(outgoing()->AddPublicService(bindings_.GetHandler(this, dispatcher_)), ZX_OK);
  }

  // Override `EchoString` from `Echo` protocol.
  void EchoString(::fidl::StringPtr value, EchoStringCallback callback) override {
    callback(std::move(value));
  }

 private:
  async_dispatcher_t* dispatcher_;
  fidl::BindingSet<fidl::examples::routing::echo::Echo> bindings_;
};

完成模拟实现后,您可以将其添加到您的领域:

Rust

let echo_server = builder
    .add_local_child(
        "echo_server",
        move |handles: LocalComponentHandles| Box::pin(echo_server_mock(handles)),
        ChildOptions::new(),
    )
    .await?;

C++

// Add component to the realm, providing a mock implementation
builder.AddLocalChild("echo_server",
                      [&]() { return std::make_unique<LocalEchoServerImpl>(dispatcher()); });

路由功能

默认情况下,已创建的领域中没有功能路由。 如需使用 Realm Builder 将功能路由到组件,请调用添加路由 函数。

在子组件之间路由

以下示例向 offer 组件添加了功能路由 echo_client 组件中的 fidl.examples.routing.echo.Echo 协议 echo_server

Rust

builder
    .add_route(
        Route::new()
            .capability(Capability::protocol_by_name("fidl.examples.routing.echo.Echo"))
            .from(&echo_server)
            .to(&echo_client),
    )
    .await?;

C++

builder.AddRoute(Route{.capabilities = {Protocol{"fidl.examples.routing.echo.Echo"}},
                       .source = ChildRef{"echo_server"},
                       .targets = {ChildRef{"echo_client"}}});

公开领域 capability

如需将已创建的大区内提供的功能路由到测试组件,请执行以下操作: 将功能路由的目标设置为 parent。 已创建的领域会自动 exposes 其 capability 。这允许 Realm Builder 实例访问公开的 capability。

以下示例公开了 fidl.examples.routing.echo.Echo 协议, 父级测试组件:

Rust

builder
    .add_route(
        Route::new()
            .capability(Capability::protocol_by_name("fidl.examples.routing.echo.Echo"))
            .from(&echo_server)
            .to(Ref::parent()),
    )
    .await?;

C++

builder.AddRoute(Route{.capabilities = {Protocol{"fidl.examples.routing.echo.Echo"}},
                       .source = ChildRef{"echo_server"},
                       .targets = {ParentRef()}});

提供测试功能

要将功能从测试组件路由至所创建组件内的组件,请执行以下操作: Realm,请将功能路由的来源设置为 parent。这包括 Realm Builder 分片为测试提供的功能:

{
    protocol: [
        "fuchsia.diagnostics.ArchiveAccessor",
        "fuchsia.inspect.InspectSink",
    ],
    from: "parent",
    to: [ "#realm_builder" ],
},
{
    event_stream: [
        "capability_requested",
        "destroyed",
        "running_v2",
        "started",
        "stopped",
    ],
    from: "parent",
    to: "#realm_builder",
},

请参考以下示例,以路由 fuchsia.logger.LogSink 协议 从测试组件复制到域的子组件中:

Rust

builder
    .add_route(
        Route::new()
            .capability(Capability::protocol_by_name("fuchsia.logger.LogSink"))
            .from(Ref::parent())
            .to(&echo_server)
            .to(&echo_client),
    )
    .await?;

C++

builder.AddRoute(Route{.capabilities = {Protocol{"fuchsia.logger.LogSink"}},
                       .source = ParentRef(),
                       .targets = {ChildRef{"echo_server"}, ChildRef{"echo_client"}}});

创建大区

添加测试用例所需的所有组件和路由后, 使用 build 方法创建领域并使其组件做好准备 。

Rust

let realm = builder.build().await?;

C++

auto realm = builder.Build(dispatcher());

使用 build 方法返回的领域执行其他任务。 领域中的任何紧急组件会立即执行,而任何功能 现在,测试可以访问使用 parent 路由了。

Rust

let echo = realm.root.connect_to_protocol_at_exposed_dir::<fecho::EchoMarker>()?;
assert_eq!(echo.echo_string(Some("hello")).await?, Some("hello".to_owned()));

建议:在大区实例上调用 destroy() ,以确保在下一个测试用例之前干净地拆解。

不推荐:等待 Realm 对象导出 作用域,以指示组件管理器销毁 Realm 及其子域。

C++

auto echo = realm.component().ConnectSync<fidl::examples::routing::echo::Echo>();
fidl::StringPtr response;
echo->EchoString("hello", &response);
ASSERT_EQ(response, "hello");

当 Realm 对象超出范围时,组件管理器会销毁 Realm 及其子项。

高级配置

修改生成的清单

适用于添加路由支持的功能路由功能的情况 方法还不够,您可以手动调整清单声明。 对于以下组件类型,Realm Builder 支持此功能:

  • 由 Realm Builder 创建的模拟组件。
  • 与测试组件位于同一软件包中的网址组件。

构建大区之后:

  1. 使用构造的域的 get decl 方法获取特定的 子清单。
  2. 修改相应的清单属性。
  3. 通过调用 替换 decl 方法。

Rust

let mut root_decl = builder.get_realm_decl().await?;
// root_decl is mutated in whatever way is needed
builder.replace_realm_decl(root_decl).await?;

let mut a_decl = builder.get_component_decl("a").await?;
// a_decl is mutated in whatever way is needed
builder.replace_component_decl("a", a_decl).await?;

C++

auto root_decl = realm_builder.GetRealmDecl();
// ... root_decl is mutated as needed
realm_builder.ReplaceRealmDecl(std::move(root_decl));

auto a_decl = realm_builder.GetComponentDecl("a");
// ... a_decl is mutated as needed
realm_builder.ReplaceComponentDecl(std::move(a_decl));

在为修改过的组件添加路由时,直接将其添加到 构造的领域,您向其获取清单,而不是使用 构建器实例。这样可确保根据 在创建领域时对组件进行修改。

测试组件名称

Realm Builder 子组件的名称如下所示:

fuchsia_component_test_collection:child-name/component-name

名称由以下元素组成:

  • child-name:为大区的集合自动生成的名称(已创建) (由 Realm Builder 库提供)。通过调用 child_name() 获取 构造的域的功能。
  • component-name:“组件名称”参数提供给 构建领域时的 Add Component 组件。

要获取子项名称,请在构造的 Realm 上调用以下方法:

Rust

println!("Child Name: {}", realm.root.child_name());

C++

std::cout << "Child Name: " << realm.component().GetChildName() << std::endl;

问题排查

功能路由无效

添加路线功能无法验证功能是否已正确提供 从测试组件添加到创建的领域。

如果您尝试路由来源为 parent 而不使用 相应的优惠,打开该功能的请求将无法解析 并且您将看到类似于以下内容的错误消息:

[86842.196][klog][E] [component_manager] ERROR: Required protocol `fidl.examples.routing.echo.Echo` was not available for target component `/core/test_manager/tests:auto-10238282593681900609/test_wrapper/test_root/fuchsia_component_test_
[86842.197][klog][I] collection:auto-4046836611955440668/echo-client`: An `offer from parent` declaration was found at `/core/test_manager/tests:auto-10238282593681900609/test_wrapper/test_root/fuchsia_component_test_colle
[86842.197][klog][I] ction:auto-4046836611955440668` for `fidl.examples.routing.echo.Echo`, but no matching `offer` declaration was found in the parent

如需详细了解如何正确提供测试功能 控制器,请参阅提供测试功能

语言特征矩阵

Rust C++
旧版组件
模拟组件
替换配置值
处理组件声明