dioxus/packages/core/tests/sharedstate.rs

42 lines
959 B
Rust
Raw Normal View History

2021-09-16 17:20:04 +00:00
use dioxus::{nodes::VSuspended, prelude::*, DomEdit, TestDom};
use dioxus_core as dioxus;
use dioxus_html as dioxus_elements;
use DomEdit::*;
mod test_logging;
fn new_dom() -> TestDom {
const IS_LOGGING_ENABLED: bool = false;
test_logging::set_up_logging(IS_LOGGING_ENABLED);
TestDom::new()
}
#[test]
fn shared_state_test() {
struct MySharedState(&'static str);
2021-09-21 17:13:15 +00:00
static App: FC<()> = |cx, props| {
2021-09-20 02:10:00 +00:00
cx.use_provide_state(|| MySharedState("world!"));
2021-09-16 17:20:04 +00:00
rsx!(cx, Child {})
};
2021-09-21 17:13:15 +00:00
static Child: FC<()> = |cx, props| {
2021-09-20 02:10:00 +00:00
let shared = cx.use_consume_state::<MySharedState>()?;
2021-09-16 17:20:04 +00:00
rsx!(cx, "Hello, {shared.0}")
};
let mut dom = VirtualDom::new(App);
let Mutations { edits, .. } = dom.rebuild();
assert_eq!(
edits,
[
CreateTextNode {
id: 0,
text: "Hello, world!"
},
AppendChildren { many: 1 },
]
);
}