dioxus/packages/desktop/headless_tests/utils.rs

57 lines
1.9 KiB
Rust
Raw Normal View History

#![allow(unused)] // for whatever reason, the compiler is not recognizing the use of these functions
use dioxus::prelude::*;
use dioxus_core::Element;
pub fn check_app_exits(app: fn() -> Element) {
use dioxus_desktop::tao::window::WindowBuilder;
use dioxus_desktop::Config;
// This is a deadman's switch to ensure that the app exits
let should_panic = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(true));
let should_panic_clone = should_panic.clone();
std::thread::spawn(move || {
std::thread::sleep(std::time::Duration::from_secs(60));
if should_panic_clone.load(std::sync::atomic::Ordering::SeqCst) {
eprintln!("App did not exit in time");
std::process::exit(exitcode::SOFTWARE);
}
});
LaunchBuilder::desktop()
2024-04-17 22:08:38 +00:00
.with_cfg(Config::new().with_window(WindowBuilder::new().with_visible(false)))
.launch(app);
// Stop deadman's switch
should_panic.store(false, std::sync::atomic::Ordering::SeqCst);
}
pub static EXPECTED_EVENTS: GlobalSignal<usize> = Signal::global(|| 0);
pub fn mock_event(id: &'static str, value: &'static str) {
mock_event_with_extra(id, value, "");
}
pub fn mock_event_with_extra(id: &'static str, value: &'static str, extra: &'static str) {
use_hook(move || {
2024-03-02 07:37:46 +00:00
EXPECTED_EVENTS.with_mut(|x| *x += 1);
spawn(async move {
// We need to wait for edits to be applied before we can send the event
// Sometimes (windows...) this takes a while
// we should really be running this check when mounted
tokio::time::sleep(std::time::Duration::from_millis(10000)).await;
let js = format!(
r#"
2024-03-02 07:37:46 +00:00
let event = {value};
let element = document.getElementById('{id}');
{extra}
element.dispatchEvent(event);
2024-03-02 07:37:46 +00:00
"#
);
eval(&js).await.unwrap();
});
})
}