dioxus/packages/signals/tests/create.rs
2024-03-04 16:02:19 -06:00

96 lines
1.9 KiB
Rust

#![allow(unused, non_upper_case_globals, non_snake_case)]
use dioxus::prelude::*;
use dioxus_core::ElementId;
use dioxus_core::NoOpMutations;
use dioxus_signals::*;
#[test]
fn create_signals_global() {
let mut dom = VirtualDom::new(|| {
rsx! {
for _ in 0..10 {
Child {}
}
}
});
fn Child() -> Element {
let signal = create_without_cx();
rsx! {
"{signal}"
}
}
dom.rebuild_in_place();
fn create_without_cx() -> Signal<String> {
Signal::new("hello world".to_string())
}
}
#[test]
fn deref_signal() {
let mut dom = VirtualDom::new(|| {
rsx! {
for _ in 0..10 {
Child {}
}
}
});
fn Child() -> Element {
let signal = Signal::new("hello world".to_string());
// You can call signals like functions to get a Ref of their value.
assert_eq!(&*signal(), "hello world");
rsx! {
"hello world"
}
}
dom.rebuild_in_place();
}
#[test]
fn drop_signals() {
use std::sync::atomic::AtomicUsize;
use std::sync::atomic::Ordering;
static SIGNAL_DROP_COUNT: AtomicUsize = AtomicUsize::new(0);
let mut dom = VirtualDom::new(|| {
let generation = generation();
let count = if generation % 2 == 0 { 10 } else { 0 };
rsx! {
for _ in 0..count {
Child {}
}
}
});
fn Child() -> Element {
struct TracksDrops;
impl Drop for TracksDrops {
fn drop(&mut self) {
SIGNAL_DROP_COUNT.fetch_add(1, Ordering::Relaxed);
}
}
use_signal(|| TracksDrops);
rsx! {
""
}
}
dom.rebuild_in_place();
dom.mark_dirty(ScopeId::ROOT);
dom.render_immediate(&mut NoOpMutations);
assert_eq!(SIGNAL_DROP_COUNT.load(Ordering::Relaxed), 10);
}