dioxus/packages/core/tests/create_dom.rs

319 lines
7.3 KiB
Rust
Raw Normal View History

2021-10-22 05:16:39 +00:00
#![allow(unused, non_upper_case_globals)]
2021-09-10 00:58:48 +00:00
//! Prove that the dom works normally through virtualdom methods.
//!
2021-09-10 00:58:48 +00:00
//! This methods all use "rebuild" which completely bypasses the scheduler.
//! Hard rebuilds don't consume any events from the event queue.
2021-08-19 06:50:35 +00:00
2021-09-10 00:58:48 +00:00
use dioxus::{prelude::*, DomEdit};
2021-08-19 06:50:35 +00:00
use dioxus_core as dioxus;
2021-09-25 01:46:23 +00:00
use dioxus_core_macro::*;
2021-08-19 06:50:35 +00:00
use dioxus_html as dioxus_elements;
2021-09-10 00:58:48 +00:00
mod test_logging;
use DomEdit::*;
2021-08-19 06:50:35 +00:00
2021-10-01 06:07:12 +00:00
fn new_dom<P: 'static + Send>(app: FC<P>, props: P) -> VirtualDom {
2021-09-10 00:58:48 +00:00
const IS_LOGGING_ENABLED: bool = false;
test_logging::set_up_logging(IS_LOGGING_ENABLED);
VirtualDom::new_with_props(app, props)
}
2021-08-19 06:50:35 +00:00
#[test]
fn test_original_diff() {
2021-10-16 21:37:28 +00:00
static APP: FC<()> = |(cx, props)| {
cx.render(rsx! {
2021-08-19 06:50:35 +00:00
div {
div {
"Hello, world!"
}
}
})
2021-08-19 06:50:35 +00:00
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(APP, ());
2021-08-24 19:12:20 +00:00
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement {
root: 0,
tag: "div"
},
CreateElement {
root: 1,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 2,
text: "Hello, world!"
},
AppendChildren { many: 1 },
AppendChildren { many: 1 },
AppendChildren { many: 1 },
]
);
2021-08-19 06:50:35 +00:00
}
#[test]
fn create() {
2021-10-16 21:37:28 +00:00
static APP: FC<()> = |(cx, props)| {
cx.render(rsx! {
2021-08-19 06:50:35 +00:00
div {
div {
"Hello, world!"
2021-08-21 17:24:47 +00:00
div {
div {
2021-11-01 07:49:32 +00:00
// Fragment {
// "hello"
// "world"
// }
2021-08-21 17:24:47 +00:00
}
}
2021-08-19 06:50:35 +00:00
}
}
})
2021-08-19 06:50:35 +00:00
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement {
root: 0,
tag: "div"
},
CreateElement {
root: 1,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 2,
text: "Hello, world!"
},
2021-10-05 07:37:15 +00:00
CreateElement {
root: 3,
tag: "div"
},
CreateElement {
root: 4,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 5,
text: "hello"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 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
#[test]
fn create_list() {
2021-10-16 21:37:28 +00:00
static APP: FC<()> = |(cx, props)| {
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"
}})}
})
2021-08-21 17:24:47 +00:00
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement {
root: 0,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 1,
text: "hello"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreateElement {
root: 2,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 3,
text: "hello"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreateElement {
root: 4,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 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
#[test]
fn create_simple() {
2021-10-16 21:37:28 +00:00
static APP: FC<()> = |(cx, props)| {
cx.render(rsx! {
2021-08-22 03:04:34 +00:00
div {}
div {}
div {}
div {}
})
2021-08-22 03:04:34 +00:00
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement {
root: 0,
tag: "div"
},
CreateElement {
root: 1,
tag: "div"
},
CreateElement {
root: 2,
tag: "div"
},
CreateElement {
root: 3,
tag: "div"
},
AppendChildren { many: 4 },
]
);
2021-08-22 03:04:34 +00:00
}
#[test]
fn create_components() {
2021-10-16 21:37:28 +00:00
static App: FC<()> = |(cx, props)| {
cx.render(rsx! {
Child { "abc1" }
Child { "abc2" }
Child { "abc3" }
})
2021-08-22 03:04:34 +00:00
};
2021-11-01 07:49:32 +00:00
#[derive(Props)]
struct ChildProps<'a> {
children: ScopeChildren<'a>,
}
fn Child<'a>((cx, props): Scope<'a, ChildProps<'a>>) -> Element {
cx.render(rsx! {
2021-08-22 03:04:34 +00:00
h1 {}
2021-11-01 07:49:32 +00:00
div { {&props.children} }
2021-08-22 03:04:34 +00:00
p {}
})
2021-11-01 07:49:32 +00:00
}
2021-08-22 03:04:34 +00:00
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(App, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement { root: 0, tag: "h1" },
CreateElement {
root: 1,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 2,
text: "abc1"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreateElement { root: 3, tag: "p" },
CreateElement { root: 4, tag: "h1" },
CreateElement {
root: 5,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 6,
text: "abc2"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreateElement { root: 7, tag: "p" },
CreateElement { root: 8, tag: "h1" },
CreateElement {
root: 9,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 10,
text: "abc3"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreateElement { root: 11, tag: "p" },
AppendChildren { many: 9 },
]
);
}
#[test]
fn anchors() {
2021-10-16 21:37:28 +00:00
static App: FC<()> = |(cx, props)| {
cx.render(rsx! {
{true.then(|| rsx!{ div { "hello" } })}
{false.then(|| rsx!{ div { "goodbye" } })}
})
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(App, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 07:37:15 +00:00
CreateElement {
root: 0,
tag: "div"
},
CreateTextNode {
2021-10-05 07:37:15 +00:00
root: 1,
text: "hello"
},
AppendChildren { many: 1 },
2021-10-05 07:37:15 +00:00
CreatePlaceholder { root: 2 },
AppendChildren { many: 2 },
]
);
}
#[test]
fn suspended() {
2021-10-16 21:37:28 +00:00
static App: FC<()> = |(cx, props)| {
2021-11-07 03:11:17 +00:00
let val = use_suspense(cx, || async {}, |p| todo!());
cx.render(rsx! { {val} })
};
2021-09-10 00:58:48 +00:00
let mut dom = new_dom(App, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
2021-10-05 07:37:15 +00:00
[CreatePlaceholder { root: 0 }, AppendChildren { many: 1 },]
);
2021-08-22 03:04:34 +00:00
}