blob: d9fad23e8b43838471347d812bf88f32f9f5259a [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use {
component_events::{
events::{Event, EventSource, EventSubscription, Purged, Started},
matcher::EventMatcher,
},
fuchsia_component_test::ScopedInstance,
};
#[fuchsia::component(logging_tags = ["async_reporter"])]
async fn main() {
// Track all the starting child components.
let event_source = EventSource::new().unwrap();
let mut event_stream = event_source
.subscribe(vec![EventSubscription::new(vec![Started::NAME, Purged::NAME])])
.await
.unwrap();
let mut instances = vec![];
let url =
"fuchsia-pkg://fuchsia.com/events_integration_test#meta/stub_component.cm".to_string();
for _ in 1..=3 {
let scoped_instance = ScopedInstance::new("coll".to_string(), url.clone()).await.unwrap();
let _ = scoped_instance.connect_to_binder().unwrap();
instances.push(scoped_instance);
}
for _ in 1..=3 {
let event = EventMatcher::ok().expect_match::<Started>(&mut event_stream).await;
assert_eq!(event.component_url(), url);
}
// Dropping instances destroys the children.
drop(instances);
for _ in 1..=3 {
let event = EventMatcher::ok().expect_match::<Purged>(&mut event_stream).await;
assert_eq!(event.component_url(), url);
}
}