mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-20 01:23:24 +00:00
47 lines
1.1 KiB
Rust
47 lines
1.1 KiB
Rust
|
//! tests to prove that the iterative implementation works
|
||
|
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
mod test_logging;
|
||
|
use dioxus_core as dioxus;
|
||
|
use dioxus_html as dioxus_elements;
|
||
|
|
||
|
#[async_std::test]
|
||
|
async fn test_iterative_create_components() {
|
||
|
static App: FC<()> = |cx| {
|
||
|
// test root fragments
|
||
|
cx.render(rsx! {
|
||
|
Child { "abc1" }
|
||
|
Child { "abc2" }
|
||
|
Child { "abc3" }
|
||
|
})
|
||
|
};
|
||
|
|
||
|
fn Child(cx: Context<()>) -> DomTree {
|
||
|
// test root fragments, anchors, and ChildNode type
|
||
|
cx.render(rsx! {
|
||
|
h1 {}
|
||
|
div { {cx.children()} }
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
Fragment {
|
||
|
"wozza"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
{(0..0).map(|f| rsx!{ div { "walalla"}})}
|
||
|
p {}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
test_logging::set_up_logging();
|
||
|
|
||
|
let mut dom = VirtualDom::new(App);
|
||
|
|
||
|
let mutations = dom.rebuild_async().await.unwrap();
|
||
|
dbg!(mutations);
|
||
|
|
||
|
let mutations = dom.diff_async().await.unwrap();
|
||
|
dbg!(mutations);
|
||
|
}
|