dioxus/packages/core/tests/miri_stress.rs

205 lines
5 KiB
Rust
Raw Normal View History

2022-02-11 02:00:15 +00:00
#![allow(non_snake_case)]
2021-12-19 04:03:59 +00:00
2022-11-29 21:31:04 +00:00
use std::rc::Rc;
2021-12-19 04:03:59 +00:00
use dioxus::prelude::*;
2024-01-15 17:06:27 +00:00
use dioxus_core::NoOpMutations;
2021-12-19 04:03:59 +00:00
2022-11-29 21:31:04 +00:00
/// This test checks that we should release all memory used by the virtualdom when it exits.
///
/// When miri runs, it'll let us know if we leaked or aliased.
2021-12-19 04:03:59 +00:00
#[test]
fn test_memory_leak() {
fn app() -> Element {
2024-01-11 01:21:15 +00:00
let val = generation();
2021-12-19 04:03:59 +00:00
2024-01-11 21:18:11 +00:00
spawn(async {});
2021-12-19 04:03:59 +00:00
2022-11-29 21:31:04 +00:00
if val == 2 || val == 4 {
2024-01-16 19:18:46 +00:00
return rsx!({});
2021-12-19 04:03:59 +00:00
}
2024-01-15 15:05:46 +00:00
let mut name = use_hook(|| String::from("numbers: "));
2022-11-29 21:31:04 +00:00
name.push_str("123 ");
2021-12-19 04:03:59 +00:00
2024-01-16 19:18:46 +00:00
rsx!(
2021-12-19 04:03:59 +00:00
div { "Hello, world!" }
Child {}
Child {}
Child {}
Child {}
Child {}
Child {}
2024-01-11 21:18:11 +00:00
BorrowedChild { name: name.clone() }
BorrowedChild { name: name.clone() }
BorrowedChild { name: name.clone() }
BorrowedChild { name: name.clone() }
BorrowedChild { name: name.clone() }
2024-01-11 01:21:15 +00:00
)
2021-12-19 04:03:59 +00:00
}
2024-01-11 17:11:44 +00:00
#[derive(Props, Clone, PartialEq)]
struct BorrowedProps {
name: String,
2021-12-19 04:03:59 +00:00
}
2024-01-11 17:11:44 +00:00
fn BorrowedChild(cx: BorrowedProps) -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2022-11-29 21:31:04 +00:00
div {
2024-01-11 17:11:44 +00:00
"goodbye {cx.name}"
2022-11-29 21:31:04 +00:00
Child {}
Child {}
}
2024-01-11 01:21:15 +00:00
}
2021-12-19 04:03:59 +00:00
}
2024-01-11 17:11:44 +00:00
fn Child() -> Element {
2024-01-16 19:18:46 +00:00
rsx!( div { "goodbye world" } )
2021-12-21 03:33:13 +00:00
}
2022-11-27 07:06:04 +00:00
let mut dom = VirtualDom::new(app);
2021-12-19 04:03:59 +00:00
2024-01-15 17:06:27 +00:00
dom.rebuild(&mut dioxus_core::NoOpMutations);
2022-11-29 21:31:04 +00:00
for _ in 0..5 {
dom.mark_dirty(ScopeId::ROOT);
2024-01-11 01:21:15 +00:00
_ = dom.render_immediate_to_vec();
2022-11-29 21:31:04 +00:00
}
2021-12-19 04:03:59 +00:00
}
#[test]
fn memo_works_properly() {
fn app() -> Element {
2024-01-11 01:21:15 +00:00
let val = generation();
2021-12-19 04:03:59 +00:00
2022-11-29 21:31:04 +00:00
if val == 2 || val == 4 {
return None;
2021-12-19 04:03:59 +00:00
}
2024-01-15 15:05:46 +00:00
let name = use_hook(|| String::from("asd"));
2021-12-19 04:03:59 +00:00
2024-01-16 19:18:46 +00:00
rsx!(
2022-01-03 06:12:39 +00:00
div { "Hello, world! {name}" }
Child { na: "asdfg".to_string() }
2024-01-11 01:21:15 +00:00
)
2021-12-19 04:03:59 +00:00
}
2024-01-11 18:40:36 +00:00
#[derive(PartialEq, Clone, Props)]
2021-12-19 04:03:59 +00:00
struct ChildProps {
na: String,
}
fn Child(_props: ChildProps) -> Element {
2024-01-16 19:18:46 +00:00
rsx!( div { "goodbye world" } )
2021-12-19 04:03:59 +00:00
}
2022-11-29 21:31:04 +00:00
let mut dom = VirtualDom::new(app);
2021-12-21 03:33:13 +00:00
2024-01-15 17:06:27 +00:00
dom.rebuild(&mut dioxus_core::NoOpMutations);
2022-12-05 22:16:54 +00:00
// todo!()
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
// dom.hard_diff(ScopeId::ROOT);
2021-12-21 03:33:13 +00:00
}
#[test]
fn free_works_on_root_hooks() {
/*
2022-11-29 21:31:04 +00:00
On Drop, scopearena drops all the hook contents. and props
2021-12-21 03:33:13 +00:00
*/
2022-11-29 21:31:04 +00:00
#[derive(PartialEq, Clone, Props)]
struct AppProps {
inner: Rc<String>,
2021-12-21 03:33:13 +00:00
}
2024-01-11 21:18:11 +00:00
fn app(cx: AppProps) -> Element {
2024-01-15 15:05:46 +00:00
let name: AppProps = use_hook(|| cx.clone());
2024-01-16 19:18:46 +00:00
rsx!(child_component { inner: name.inner.clone() })
2021-12-21 03:33:13 +00:00
}
2024-01-11 18:40:36 +00:00
fn child_component(props: AppProps) -> Element {
2024-01-16 19:18:46 +00:00
rsx!( div { "{props.inner}" } )
2021-12-21 03:33:13 +00:00
}
2022-11-29 21:31:04 +00:00
let ptr = Rc::new("asdasd".to_string());
let mut dom = VirtualDom::new_with_props(app, AppProps { inner: ptr.clone() });
2024-01-15 17:06:27 +00:00
dom.rebuild(&mut dioxus_core::NoOpMutations);
2021-12-21 03:33:13 +00:00
2022-11-29 21:31:04 +00:00
// ptr gets cloned into props and then into the hook
2024-01-15 17:06:27 +00:00
assert_eq!(Rc::strong_count(&ptr), 5);
2021-12-21 03:33:13 +00:00
2022-11-29 21:31:04 +00:00
drop(dom);
2021-12-21 03:33:13 +00:00
2022-11-29 21:31:04 +00:00
assert_eq!(Rc::strong_count(&ptr), 1);
2021-12-21 03:33:13 +00:00
}
2022-12-30 19:34:44 +00:00
#[test]
fn supports_async() {
use std::time::Duration;
use tokio::time::sleep;
fn app() -> Element {
2024-01-16 21:51:02 +00:00
let mut colors = use_signal(|| vec!["green", "blue", "red"]);
let mut padding = use_signal(|| 10);
2022-12-30 19:34:44 +00:00
2024-01-15 15:05:46 +00:00
use_hook(|| {
2024-01-11 21:18:11 +00:00
spawn(async move {
2024-01-15 17:06:27 +00:00
loop {
sleep(Duration::from_millis(1000)).await;
colors.with_mut(|colors| colors.reverse());
}
2024-01-11 21:18:11 +00:00
})
2022-12-30 19:34:44 +00:00
});
2024-01-15 15:05:46 +00:00
use_hook(|| {
2024-01-11 21:18:11 +00:00
spawn(async move {
2024-01-15 17:06:27 +00:00
loop {
sleep(Duration::from_millis(10)).await;
padding.with_mut(|padding| {
if *padding < 65 {
*padding += 1;
} else {
*padding = 5;
}
});
}
2024-01-11 21:18:11 +00:00
})
2022-12-30 19:34:44 +00:00
});
2024-01-16 21:51:02 +00:00
let colors = colors.read();
2022-12-30 19:34:44 +00:00
let big = colors[0];
let mid = colors[1];
let small = colors[2];
2024-01-16 19:18:46 +00:00
rsx! {
2024-01-11 01:21:15 +00:00
div { background: "{big}", height: "stretch", width: "stretch", padding: "50",
label { "hello" }
div { background: "{mid}", height: "auto", width: "stretch", padding: "{padding}",
label { "World" }
div { background: "{small}", height: "auto", width: "stretch", padding: "20", label { "ddddddd" } }
2022-12-30 19:34:44 +00:00
}
}
2024-01-11 01:21:15 +00:00
}
2022-12-30 19:34:44 +00:00
}
let rt = tokio::runtime::Builder::new_current_thread()
.enable_time()
.build()
.unwrap();
rt.block_on(async {
let mut dom = VirtualDom::new(app);
2024-01-15 17:06:27 +00:00
dom.rebuild(&mut dioxus_core::NoOpMutations);
2022-12-30 19:34:44 +00:00
for _ in 0..10 {
dom.wait_for_work().await;
2024-01-15 17:06:27 +00:00
dom.render_immediate(&mut NoOpMutations);
2022-12-30 19:34:44 +00:00
}
});
}