2021-12-19 04:03:59 +00:00
|
|
|
#![allow(unused, non_upper_case_globals, non_snake_case)]
|
|
|
|
|
|
|
|
//! Prove that the dom works normally through virtualdom methods.
|
|
|
|
//!
|
|
|
|
//! This methods all use "rebuild" which completely bypasses the scheduler.
|
|
|
|
//! Hard rebuilds don't consume any events from the event queue.
|
|
|
|
|
2022-03-03 03:48:22 +00:00
|
|
|
use dioxus::prelude::*;
|
2021-12-19 04:03:59 +00:00
|
|
|
|
|
|
|
mod test_logging;
|
2022-03-03 03:48:22 +00:00
|
|
|
use dioxus_core::{DomEdit::*, ScopeId};
|
2021-12-19 04:03:59 +00:00
|
|
|
|
|
|
|
const IS_LOGGING_ENABLED: bool = false;
|
|
|
|
|
|
|
|
fn new_dom<P: 'static + Send>(app: Component<P>, props: P) -> VirtualDom {
|
|
|
|
test_logging::set_up_logging(IS_LOGGING_ENABLED);
|
|
|
|
VirtualDom::new_with_props(app, props)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This test ensures that if a component aborts early, it is replaced with a placeholder.
|
|
|
|
/// In debug, this should also toss a warning.
|
|
|
|
#[test]
|
|
|
|
fn test_early_abort() {
|
2021-12-29 04:48:25 +00:00
|
|
|
const app: Component = |cx| {
|
2022-01-02 07:15:04 +00:00
|
|
|
let val = cx.use_hook(|_| 0);
|
2021-12-19 04:03:59 +00:00
|
|
|
|
|
|
|
*val += 1;
|
|
|
|
|
|
|
|
if *val == 2 {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsx!(cx, div { "Hello, world!" })
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut dom = new_dom(app, ());
|
|
|
|
|
|
|
|
let edits = dom.rebuild();
|
|
|
|
assert_eq!(
|
|
|
|
edits.edits,
|
|
|
|
[
|
2022-01-30 23:34:24 +00:00
|
|
|
CreateElement { tag: "div", root: 1 },
|
|
|
|
CreateTextNode { text: "Hello, world!", root: 2 },
|
2021-12-19 04:03:59 +00:00
|
|
|
AppendChildren { many: 1 },
|
|
|
|
AppendChildren { many: 1 },
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2021-12-21 03:33:13 +00:00
|
|
|
let edits = dom.hard_diff(ScopeId(0));
|
2021-12-19 04:03:59 +00:00
|
|
|
assert_eq!(
|
|
|
|
edits.edits,
|
|
|
|
[CreatePlaceholder { root: 3 }, ReplaceWith { root: 1, m: 1 },],
|
|
|
|
);
|
|
|
|
|
2021-12-21 03:33:13 +00:00
|
|
|
let edits = dom.hard_diff(ScopeId(0));
|
2021-12-19 04:03:59 +00:00
|
|
|
assert_eq!(
|
|
|
|
edits.edits,
|
|
|
|
[
|
2022-01-30 23:34:24 +00:00
|
|
|
CreateElement { tag: "div", root: 1 }, // keys get reused
|
|
|
|
CreateTextNode { text: "Hello, world!", root: 2 }, // keys get reused
|
2021-12-19 04:03:59 +00:00
|
|
|
AppendChildren { many: 1 },
|
|
|
|
ReplaceWith { root: 3, m: 1 },
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|