dioxus/packages/core/tests/create_iterative.rs

264 lines
6.6 KiB
Rust
Raw Normal View History

2021-08-19 06:50:35 +00:00
//! tests to prove that the iterative implementation works
use anyhow::{Context, Result};
2021-08-25 19:54:33 +00:00
use dioxus::{diff::DiffMachine, prelude::*, scheduler::Scheduler, DomEdit, Mutations};
2021-08-21 17:24:47 +00:00
mod test_logging;
2021-08-19 06:50:35 +00:00
use dioxus_core as dioxus;
use dioxus_html as dioxus_elements;
use DomEdit::*;
2021-08-19 06:50:35 +00:00
const LOGGING_ENABLED: bool = false;
2021-08-19 06:50:35 +00:00
#[test]
fn test_original_diff() {
static App: FC<()> = |cx| {
cx.render(rsx! {
div {
div {
"Hello, world!"
}
}
})
};
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "div" },
CreateElement { id: 1, tag: "div" },
CreateTextNode {
id: 2,
text: "Hello, world!"
},
AppendChildren { many: 1 },
AppendChildren { many: 1 },
AppendChildren { many: 1 },
]
);
2021-08-19 06:50:35 +00:00
}
#[async_std::test]
async fn create() {
2021-08-19 06:50:35 +00:00
static App: FC<()> = |cx| {
cx.render(rsx! {
div {
div {
"Hello, world!"
2021-08-21 17:24:47 +00:00
div {
div {
Fragment {
"hello"
"world"
}
}
}
2021-08-19 06:50:35 +00:00
}
}
})
};
test_logging::set_up_logging(LOGGING_ENABLED);
2021-08-21 17:24:47 +00:00
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "div" },
CreateElement { id: 1, tag: "div" },
CreateTextNode {
id: 2,
text: "Hello, world!"
},
CreateElement { id: 3, tag: "div" },
CreateElement { id: 4, tag: "div" },
CreateTextNode {
id: 5,
text: "hello"
},
CreateTextNode {
id: 6,
text: "world"
},
AppendChildren { many: 2 },
AppendChildren { many: 1 },
AppendChildren { many: 2 },
AppendChildren { many: 1 },
AppendChildren { many: 1 },
]
);
2021-08-19 06:50:35 +00:00
}
2021-08-20 15:39:13 +00:00
#[async_std::test]
async fn create_list() {
2021-08-21 17:24:47 +00:00
static App: FC<()> = |cx| {
cx.render(rsx! {
2021-08-22 03:04:34 +00:00
{(0..3).map(|f| rsx!{ div {
2021-08-21 17:24:47 +00:00
"hello"
}})}
})
};
test_logging::set_up_logging(LOGGING_ENABLED);
2021-08-21 17:24:47 +00:00
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "div" },
CreateTextNode {
id: 1,
text: "hello"
},
AppendChildren { many: 1 },
CreateElement { id: 2, tag: "div" },
CreateTextNode {
id: 3,
text: "hello"
},
AppendChildren { many: 1 },
CreateElement { id: 4, tag: "div" },
CreateTextNode {
id: 5,
text: "hello"
},
AppendChildren { many: 1 },
AppendChildren { many: 3 },
]
);
2021-08-20 15:39:13 +00:00
}
2021-08-21 17:24:47 +00:00
2021-08-22 03:04:34 +00:00
#[async_std::test]
async fn create_simple() {
2021-08-22 03:04:34 +00:00
static App: FC<()> = |cx| {
cx.render(rsx! {
div {}
div {}
div {}
div {}
})
};
test_logging::set_up_logging(LOGGING_ENABLED);
2021-08-22 03:04:34 +00:00
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "div" },
CreateElement { id: 1, tag: "div" },
CreateElement { id: 2, tag: "div" },
CreateElement { id: 3, tag: "div" },
AppendChildren { many: 4 },
]
);
2021-08-22 03:04:34 +00:00
}
#[async_std::test]
async fn create_components() {
2021-08-22 03:04:34 +00:00
static App: FC<()> = |cx| {
cx.render(rsx! {
Child { "abc1" }
Child { "abc2" }
Child { "abc3" }
})
};
static Child: FC<()> = |cx| {
cx.render(rsx! {
h1 {}
2021-08-22 21:08:25 +00:00
div { {cx.children()} }
2021-08-22 03:04:34 +00:00
p {}
})
};
test_logging::set_up_logging(LOGGING_ENABLED);
2021-08-22 03:04:34 +00:00
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "h1" },
CreateElement { id: 1, tag: "div" },
CreateTextNode {
id: 2,
text: "abc1"
},
AppendChildren { many: 1 },
CreateElement { id: 3, tag: "p" },
CreateElement { id: 4, tag: "h1" },
CreateElement { id: 5, tag: "div" },
CreateTextNode {
id: 6,
text: "abc2"
},
AppendChildren { many: 1 },
CreateElement { id: 7, tag: "p" },
CreateElement { id: 8, tag: "h1" },
CreateElement { id: 9, tag: "div" },
CreateTextNode {
id: 10,
text: "abc3"
},
AppendChildren { many: 1 },
CreateElement { id: 11, tag: "p" },
AppendChildren { many: 9 },
]
);
}
#[async_std::test]
async fn anchors() {
static App: FC<()> = |cx| {
cx.render(rsx! {
{true.then(|| rsx!{ div { "hello" } })}
{false.then(|| rsx!{ div { "goodbye" } })}
})
};
test_logging::set_up_logging(LOGGING_ENABLED);
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
assert_eq!(
mutations.edits,
[
CreateElement { id: 0, tag: "div" },
CreateTextNode {
id: 1,
text: "hello"
},
AppendChildren { many: 1 },
CreatePlaceholder { id: 2 },
AppendChildren { many: 2 },
]
);
}
#[async_std::test]
async fn suspended() {
static App: FC<()> = |cx| {
let val = use_suspense(cx, || async {}, |cx, _| cx.render(rsx! { "hi "}));
cx.render(rsx! { {val} })
};
test_logging::set_up_logging(LOGGING_ENABLED);
let mut dom = VirtualDom::new(App);
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild_async().await;
assert_eq!(
mutations.edits,
[CreatePlaceholder { id: 0 }, AppendChildren { many: 1 },]
);
2021-08-22 03:04:34 +00:00
}