dioxus/packages/core/tests/create_dom.rs

302 lines
7 KiB
Rust
Raw Normal View History

2021-12-09 21:19:31 -05:00
#![allow(unused, non_upper_case_globals, non_snake_case)]
2021-10-22 01:16:39 -04:00
2021-09-09 20:58:48 -04:00
//! Prove that the dom works normally through virtualdom methods.
//!
2021-09-09 20:58:48 -04: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 02:50:35 -04:00
2021-09-09 20:58:48 -04:00
use dioxus::{prelude::*, DomEdit};
2021-08-19 02:50:35 -04:00
use dioxus_core as dioxus;
2021-09-24 21:46:23 -04:00
use dioxus_core_macro::*;
2021-08-19 02:50:35 -04:00
use dioxus_html as dioxus_elements;
2021-09-09 20:58:48 -04:00
mod test_logging;
use DomEdit::*;
2021-08-19 02:50:35 -04:00
2021-12-09 21:19:31 -05:00
fn new_dom<P: 'static + Send>(app: Component<P>, props: P) -> VirtualDom {
2021-09-09 20:58:48 -04:00
const IS_LOGGING_ENABLED: bool = false;
test_logging::set_up_logging(IS_LOGGING_ENABLED);
VirtualDom::new_with_props(app, props)
}
2021-08-19 02:50:35 -04:00
#[test]
fn test_original_diff() {
2021-12-09 21:19:31 -05:00
static APP: Component<()> = |cx, props| {
cx.render(rsx! {
2021-08-19 02:50:35 -04:00
div {
div {
"Hello, world!"
}
}
})
2021-08-19 02:50:35 -04:00
};
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(APP, ());
2021-08-24 15:12:20 -04:00
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 1,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateElement {
2021-11-11 21:34:20 -05:00
root: 2,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 3,
text: "Hello, world!"
},
AppendChildren { many: 1 },
AppendChildren { many: 1 },
AppendChildren { many: 1 },
]
);
2021-08-19 02:50:35 -04:00
}
#[test]
fn create() {
2021-12-09 21:19:31 -05:00
static APP: Component<()> = |cx, props| {
cx.render(rsx! {
2021-08-19 02:50:35 -04:00
div {
div {
"Hello, world!"
2021-08-21 13:24:47 -04:00
div {
div {
2021-11-07 22:45:41 -05:00
Fragment {
"hello"
"world"
}
2021-08-21 13:24:47 -04:00
}
}
2021-08-19 02:50:35 -04:00
}
}
})
2021-08-19 02:50:35 -04:00
};
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 1,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateElement {
2021-11-11 21:34:20 -05:00
root: 2,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 3,
text: "Hello, world!"
},
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 4,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateElement {
2021-11-11 21:34:20 -05:00
root: 5,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 6,
text: "hello"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 7,
text: "world"
},
AppendChildren { many: 2 },
AppendChildren { many: 1 },
AppendChildren { many: 2 },
AppendChildren { many: 1 },
AppendChildren { many: 1 },
]
);
2021-08-19 02:50:35 -04:00
}
2021-08-20 11:39:13 -04:00
#[test]
fn create_list() {
2021-12-09 21:19:31 -05:00
static APP: Component<()> = |cx, props| {
cx.render(rsx! {
2021-08-21 23:04:34 -04:00
{(0..3).map(|f| rsx!{ div {
2021-08-21 13:24:47 -04:00
"hello"
}})}
})
2021-08-21 13:24:47 -04:00
};
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 1,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 2,
text: "hello"
},
AppendChildren { many: 1 },
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 3,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 4,
text: "hello"
},
AppendChildren { many: 1 },
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 5,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 6,
text: "hello"
},
AppendChildren { many: 1 },
AppendChildren { many: 3 },
]
);
2021-08-20 11:39:13 -04:00
}
2021-08-21 13:24:47 -04:00
#[test]
fn create_simple() {
2021-12-09 21:19:31 -05:00
static APP: Component<()> = |cx, props| {
cx.render(rsx! {
2021-08-21 23:04:34 -04:00
div {}
div {}
div {}
div {}
})
2021-08-21 23:04:34 -04:00
};
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(APP, ());
let mutations = dom.rebuild();
// copilot wrote this test :P
assert_eq!(
mutations.edits,
[
2021-10-05 03:37:15 -04:00
CreateElement {
root: 1,
tag: "div"
},
CreateElement {
root: 2,
tag: "div"
},
CreateElement {
root: 3,
tag: "div"
},
2021-11-11 21:34:20 -05:00
CreateElement {
root: 4,
tag: "div"
},
AppendChildren { many: 4 },
]
);
2021-08-21 23:04:34 -04:00
}
#[test]
fn create_components() {
2021-12-09 21:19:31 -05:00
static App: Component<()> = |cx, props| {
cx.render(rsx! {
Child { "abc1" }
Child { "abc2" }
Child { "abc3" }
})
2021-08-21 23:04:34 -04:00
};
2021-11-10 17:09:52 -05:00
#[derive(Props, PartialEq)]
struct ChildProps {
children: Element,
2021-11-01 03:49:32 -04:00
}
2021-11-10 17:09:52 -05:00
fn Child(cx: Context, props: &ChildProps) -> Element {
cx.render(rsx! {
2021-08-21 23:04:34 -04:00
h1 {}
2021-11-01 03:49:32 -04:00
div { {&props.children} }
2021-08-21 23:04:34 -04:00
p {}
})
2021-11-01 03:49:32 -04:00
}
2021-08-21 23:04:34 -04:00
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(App, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-11-11 21:34:20 -05:00
CreateElement { root: 1, tag: "h1" },
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 2,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 3,
text: "abc1"
},
AppendChildren { many: 1 },
2021-11-11 21:34:20 -05:00
CreateElement { root: 4, tag: "p" },
CreateElement { root: 5, tag: "h1" },
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 6,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 7,
text: "abc2"
},
AppendChildren { many: 1 },
2021-11-11 21:34:20 -05:00
CreateElement { root: 8, tag: "p" },
CreateElement { root: 9, tag: "h1" },
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 10,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 11,
text: "abc3"
},
AppendChildren { many: 1 },
2021-11-11 21:34:20 -05:00
CreateElement { root: 12, tag: "p" },
AppendChildren { many: 9 },
]
);
}
#[test]
fn anchors() {
2021-12-09 21:19:31 -05:00
static App: Component<()> = |cx, props| {
cx.render(rsx! {
{true.then(|| rsx!{ div { "hello" } })}
{false.then(|| rsx!{ div { "goodbye" } })}
})
};
2021-09-09 20:58:48 -04:00
let mut dom = new_dom(App, ());
let mutations = dom.rebuild();
assert_eq!(
mutations.edits,
[
2021-10-05 03:37:15 -04:00
CreateElement {
2021-11-11 21:34:20 -05:00
root: 1,
2021-10-05 03:37:15 -04:00
tag: "div"
},
CreateTextNode {
2021-11-11 21:34:20 -05:00
root: 2,
text: "hello"
},
AppendChildren { many: 1 },
2021-11-11 21:34:20 -05:00
CreatePlaceholder { root: 3 },
AppendChildren { many: 2 },
]
);
}