2023-07-20 01:40:43 +00:00
|
|
|
#![cfg(not(miri))]
|
|
|
|
|
2023-01-05 16:28:07 +00:00
|
|
|
use dioxus::prelude::Props;
|
|
|
|
use dioxus_core::*;
|
2023-06-02 19:20:03 +00:00
|
|
|
use std::{cell::Cell, collections::HashSet};
|
2023-01-05 16:28:07 +00:00
|
|
|
|
|
|
|
fn random_ns() -> Option<&'static str> {
|
|
|
|
let namespace = rand::random::<u8>() % 2;
|
|
|
|
match namespace {
|
|
|
|
0 => None,
|
|
|
|
1 => Some(Box::leak(
|
|
|
|
format!("ns{}", rand::random::<usize>()).into_boxed_str(),
|
|
|
|
)),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_random_attribute(attr_idx: &mut usize) -> TemplateAttribute<'static> {
|
|
|
|
match rand::random::<u8>() % 2 {
|
|
|
|
0 => TemplateAttribute::Static {
|
|
|
|
name: Box::leak(format!("attr{}", rand::random::<usize>()).into_boxed_str()),
|
|
|
|
value: Box::leak(format!("value{}", rand::random::<usize>()).into_boxed_str()),
|
|
|
|
namespace: random_ns(),
|
|
|
|
},
|
|
|
|
1 => TemplateAttribute::Dynamic {
|
|
|
|
id: {
|
|
|
|
let old_idx = *attr_idx;
|
|
|
|
*attr_idx += 1;
|
|
|
|
old_idx
|
|
|
|
},
|
|
|
|
},
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_random_template_node(
|
2023-01-12 22:34:46 +00:00
|
|
|
dynamic_node_types: &mut Vec<DynamicNodeType>,
|
2023-01-05 16:28:07 +00:00
|
|
|
template_idx: &mut usize,
|
|
|
|
attr_idx: &mut usize,
|
|
|
|
depth: usize,
|
|
|
|
) -> TemplateNode<'static> {
|
2023-01-12 21:28:10 +00:00
|
|
|
match rand::random::<u8>() % 4 {
|
2023-01-05 16:28:07 +00:00
|
|
|
0 => {
|
|
|
|
let attrs = {
|
|
|
|
let attrs: Vec<_> = (0..(rand::random::<usize>() % 10))
|
|
|
|
.map(|_| create_random_attribute(attr_idx))
|
|
|
|
.collect();
|
|
|
|
Box::leak(attrs.into_boxed_slice())
|
|
|
|
};
|
|
|
|
TemplateNode::Element {
|
|
|
|
tag: Box::leak(format!("tag{}", rand::random::<usize>()).into_boxed_str()),
|
|
|
|
namespace: random_ns(),
|
|
|
|
attrs,
|
|
|
|
children: {
|
2023-01-12 22:34:46 +00:00
|
|
|
if depth > 4 {
|
2023-01-05 16:28:07 +00:00
|
|
|
&[]
|
|
|
|
} else {
|
|
|
|
let children: Vec<_> = (0..(rand::random::<usize>() % 3))
|
2023-01-12 22:34:46 +00:00
|
|
|
.map(|_| {
|
|
|
|
create_random_template_node(
|
|
|
|
dynamic_node_types,
|
|
|
|
template_idx,
|
|
|
|
attr_idx,
|
|
|
|
depth + 1,
|
|
|
|
)
|
|
|
|
})
|
2023-01-05 16:28:07 +00:00
|
|
|
.collect();
|
|
|
|
Box::leak(children.into_boxed_slice())
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
1 => TemplateNode::Text {
|
|
|
|
text: Box::leak(format!("{}", rand::random::<usize>()).into_boxed_str()),
|
|
|
|
},
|
|
|
|
2 => TemplateNode::DynamicText {
|
|
|
|
id: {
|
|
|
|
let old_idx = *template_idx;
|
|
|
|
*template_idx += 1;
|
2023-01-12 22:34:46 +00:00
|
|
|
dynamic_node_types.push(DynamicNodeType::Text);
|
2023-01-05 16:28:07 +00:00
|
|
|
old_idx
|
|
|
|
},
|
|
|
|
},
|
2023-01-12 21:28:10 +00:00
|
|
|
3 => TemplateNode::Dynamic {
|
2023-01-05 16:28:07 +00:00
|
|
|
id: {
|
|
|
|
let old_idx = *template_idx;
|
|
|
|
*template_idx += 1;
|
2023-01-12 22:34:46 +00:00
|
|
|
dynamic_node_types.push(DynamicNodeType::Other);
|
2023-01-05 16:28:07 +00:00
|
|
|
old_idx
|
|
|
|
},
|
|
|
|
},
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_paths(
|
|
|
|
node: &TemplateNode<'static>,
|
2023-01-12 21:53:33 +00:00
|
|
|
current_path: &[u8],
|
2023-01-05 16:28:07 +00:00
|
|
|
node_paths: &mut Vec<Vec<u8>>,
|
|
|
|
attr_paths: &mut Vec<Vec<u8>>,
|
|
|
|
) {
|
|
|
|
match node {
|
|
|
|
TemplateNode::Element { children, attrs, .. } => {
|
|
|
|
for attr in *attrs {
|
|
|
|
match attr {
|
|
|
|
TemplateAttribute::Static { .. } => {}
|
|
|
|
TemplateAttribute::Dynamic { .. } => {
|
2023-01-12 21:53:33 +00:00
|
|
|
attr_paths.push(current_path.to_vec());
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i, child) in children.iter().enumerate() {
|
2023-01-12 21:53:33 +00:00
|
|
|
let mut current_path = current_path.to_vec();
|
2023-01-05 16:28:07 +00:00
|
|
|
current_path.push(i as u8);
|
|
|
|
generate_paths(child, ¤t_path, node_paths, attr_paths);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TemplateNode::Text { .. } => {}
|
|
|
|
TemplateNode::DynamicText { .. } => {
|
2023-01-12 21:53:33 +00:00
|
|
|
node_paths.push(current_path.to_vec());
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
TemplateNode::Dynamic { .. } => {
|
2023-01-12 21:53:33 +00:00
|
|
|
node_paths.push(current_path.to_vec());
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-12 22:34:46 +00:00
|
|
|
enum DynamicNodeType {
|
|
|
|
Text,
|
|
|
|
Other,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_random_template(name: &'static str) -> (Template<'static>, Vec<DynamicNodeType>) {
|
|
|
|
let mut dynamic_node_type = Vec::new();
|
2023-01-05 16:28:07 +00:00
|
|
|
let mut template_idx = 0;
|
|
|
|
let mut attr_idx = 0;
|
|
|
|
let roots = (0..(1 + rand::random::<usize>() % 5))
|
2023-01-12 22:34:46 +00:00
|
|
|
.map(|_| {
|
|
|
|
create_random_template_node(&mut dynamic_node_type, &mut template_idx, &mut attr_idx, 0)
|
|
|
|
})
|
2023-01-05 16:28:07 +00:00
|
|
|
.collect::<Vec<_>>();
|
2023-01-12 21:53:33 +00:00
|
|
|
assert!(!roots.is_empty());
|
2023-01-05 16:28:07 +00:00
|
|
|
let roots = Box::leak(roots.into_boxed_slice());
|
|
|
|
let mut node_paths = Vec::new();
|
|
|
|
let mut attr_paths = Vec::new();
|
|
|
|
for (i, root) in roots.iter().enumerate() {
|
2023-01-12 21:53:33 +00:00
|
|
|
generate_paths(root, &[i as u8], &mut node_paths, &mut attr_paths);
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
let node_paths = Box::leak(
|
|
|
|
node_paths
|
|
|
|
.into_iter()
|
|
|
|
.map(|v| &*Box::leak(v.into_boxed_slice()))
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.into_boxed_slice(),
|
|
|
|
);
|
|
|
|
let attr_paths = Box::leak(
|
|
|
|
attr_paths
|
|
|
|
.into_iter()
|
|
|
|
.map(|v| &*Box::leak(v.into_boxed_slice()))
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
.into_boxed_slice(),
|
|
|
|
);
|
2023-01-12 22:34:46 +00:00
|
|
|
(
|
|
|
|
Template { name, roots, node_paths, attr_paths },
|
|
|
|
dynamic_node_type,
|
|
|
|
)
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 21:53:33 +00:00
|
|
|
fn create_random_dynamic_node(cx: &ScopeState, depth: usize) -> DynamicNode {
|
2023-06-02 19:20:03 +00:00
|
|
|
let range = if depth > 5 { 1 } else { 4 };
|
2023-01-05 16:28:07 +00:00
|
|
|
match rand::random::<u8>() % range {
|
2023-01-12 22:34:46 +00:00
|
|
|
0 => DynamicNode::Placeholder(Default::default()),
|
|
|
|
1 => cx.make_node((0..(rand::random::<u8>() % 5)).map(|_| VNode {
|
2023-01-05 16:28:07 +00:00
|
|
|
key: None,
|
|
|
|
parent: Default::default(),
|
|
|
|
template: Cell::new(Template {
|
|
|
|
name: concat!(file!(), ":", line!(), ":", column!(), ":0"),
|
|
|
|
roots: &[TemplateNode::Dynamic { id: 0 }],
|
|
|
|
node_paths: &[&[0]],
|
|
|
|
attr_paths: &[],
|
|
|
|
}),
|
|
|
|
root_ids: Default::default(),
|
|
|
|
dynamic_nodes: cx.bump().alloc([cx.component(
|
|
|
|
create_random_element,
|
2023-01-08 00:52:37 +00:00
|
|
|
DepthProps { depth, root: false },
|
2023-01-05 16:28:07 +00:00
|
|
|
"create_random_element",
|
|
|
|
)]),
|
|
|
|
dynamic_attrs: &[],
|
|
|
|
})),
|
2023-01-12 22:34:46 +00:00
|
|
|
2 => cx.component(
|
2023-01-05 16:28:07 +00:00
|
|
|
create_random_element,
|
2023-01-08 00:52:37 +00:00
|
|
|
DepthProps { depth, root: false },
|
2023-01-05 16:28:07 +00:00
|
|
|
"create_random_element",
|
|
|
|
),
|
2023-06-02 19:20:03 +00:00
|
|
|
3 => {
|
|
|
|
let data = String::from("borrowed data");
|
|
|
|
let bumpped = cx.bump().alloc(data);
|
|
|
|
cx.component(
|
|
|
|
create_random_element_borrowed,
|
|
|
|
BorrowedDepthProps { borrow: &*bumpped, inner: DepthProps { depth, root: false } },
|
|
|
|
"create_random_element_borrowed",
|
|
|
|
)
|
|
|
|
}
|
2023-01-05 16:28:07 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-12 21:53:33 +00:00
|
|
|
fn create_random_dynamic_attr(cx: &ScopeState) -> Attribute {
|
2023-06-02 19:20:03 +00:00
|
|
|
let value = match rand::random::<u8>() % 7 {
|
2023-01-05 16:28:07 +00:00
|
|
|
0 => AttributeValue::Text(Box::leak(
|
|
|
|
format!("{}", rand::random::<usize>()).into_boxed_str(),
|
|
|
|
)),
|
|
|
|
1 => AttributeValue::Float(rand::random()),
|
|
|
|
2 => AttributeValue::Int(rand::random()),
|
|
|
|
3 => AttributeValue::Bool(rand::random()),
|
|
|
|
4 => cx.any_value(rand::random::<usize>()),
|
|
|
|
5 => AttributeValue::None,
|
2023-06-02 19:20:03 +00:00
|
|
|
6 => {
|
|
|
|
let value = cx.listener(|e: Event<String>| println!("{:?}", e));
|
|
|
|
return Attribute {
|
|
|
|
name: "ondata",
|
|
|
|
value,
|
|
|
|
namespace: None,
|
|
|
|
mounted_element: Default::default(),
|
|
|
|
volatile: false,
|
|
|
|
};
|
|
|
|
}
|
2023-01-05 16:28:07 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
Attribute {
|
|
|
|
name: Box::leak(format!("attr{}", rand::random::<usize>()).into_boxed_str()),
|
|
|
|
value,
|
|
|
|
namespace: random_ns(),
|
|
|
|
mounted_element: Default::default(),
|
|
|
|
volatile: rand::random(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static mut TEMPLATE_COUNT: usize = 0;
|
|
|
|
|
2023-06-02 19:20:03 +00:00
|
|
|
#[derive(Props)]
|
|
|
|
struct BorrowedDepthProps<'a> {
|
|
|
|
borrow: &'a str,
|
|
|
|
inner: DepthProps,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_random_element_borrowed<'a>(cx: Scope<'a, BorrowedDepthProps<'a>>) -> Element<'a> {
|
|
|
|
println!("{}", cx.props.borrow);
|
|
|
|
let bump = cx.bump();
|
|
|
|
let allocated = bump.alloc(Scoped { scope: cx, props: &cx.props.inner });
|
|
|
|
create_random_element(allocated)
|
|
|
|
}
|
|
|
|
|
2023-01-05 16:28:07 +00:00
|
|
|
#[derive(PartialEq, Props)]
|
|
|
|
struct DepthProps {
|
|
|
|
depth: usize,
|
2023-01-08 00:52:37 +00:00
|
|
|
root: bool,
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 21:53:33 +00:00
|
|
|
fn create_random_element(cx: Scope<DepthProps>) -> Element {
|
2023-06-02 19:20:03 +00:00
|
|
|
if rand::random::<usize>() % 10 == 0 {
|
|
|
|
cx.needs_update();
|
|
|
|
}
|
2023-01-08 00:52:37 +00:00
|
|
|
let range = if cx.props.root { 2 } else { 3 };
|
|
|
|
let node = match rand::random::<usize>() % range {
|
2023-01-05 16:28:07 +00:00
|
|
|
0 | 1 => {
|
2023-01-12 22:34:46 +00:00
|
|
|
let (template, dynamic_node_types) = create_random_template(Box::leak(
|
2023-01-05 16:28:07 +00:00
|
|
|
format!(
|
|
|
|
"{}{}",
|
|
|
|
concat!(file!(), ":", line!(), ":", column!(), ":"),
|
|
|
|
{
|
|
|
|
unsafe {
|
|
|
|
let old = TEMPLATE_COUNT;
|
|
|
|
TEMPLATE_COUNT += 1;
|
|
|
|
old
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.into_boxed_str(),
|
|
|
|
));
|
2023-06-02 19:20:03 +00:00
|
|
|
// println!("{template:#?}");
|
2023-01-05 16:28:07 +00:00
|
|
|
let node = VNode {
|
|
|
|
key: None,
|
|
|
|
parent: None,
|
|
|
|
template: Cell::new(template),
|
|
|
|
root_ids: Default::default(),
|
|
|
|
dynamic_nodes: {
|
2023-01-12 22:34:46 +00:00
|
|
|
let dynamic_nodes: Vec<_> = dynamic_node_types
|
|
|
|
.iter()
|
|
|
|
.map(|ty| match ty {
|
|
|
|
DynamicNodeType::Text => DynamicNode::Text(VText {
|
|
|
|
value: Box::leak(
|
|
|
|
format!("{}", rand::random::<usize>()).into_boxed_str(),
|
|
|
|
),
|
|
|
|
id: Default::default(),
|
|
|
|
}),
|
|
|
|
DynamicNodeType::Other => {
|
|
|
|
create_random_dynamic_node(cx, cx.props.depth + 1)
|
|
|
|
}
|
|
|
|
})
|
2023-01-05 16:28:07 +00:00
|
|
|
.collect();
|
|
|
|
cx.bump().alloc(dynamic_nodes)
|
|
|
|
},
|
|
|
|
dynamic_attrs: cx.bump().alloc(
|
|
|
|
(0..template.attr_paths.len())
|
|
|
|
.map(|_| create_random_dynamic_attr(cx))
|
|
|
|
.collect::<Vec<_>>(),
|
|
|
|
),
|
|
|
|
};
|
|
|
|
Some(node)
|
|
|
|
}
|
|
|
|
_ => None,
|
2023-01-08 00:52:37 +00:00
|
|
|
};
|
2023-06-02 19:20:03 +00:00
|
|
|
// println!("{node:#?}");
|
2023-01-08 00:52:37 +00:00
|
|
|
node
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// test for panics when creating random nodes and templates
|
2023-07-20 01:40:43 +00:00
|
|
|
#[cfg(not(miri))]
|
2023-01-05 16:28:07 +00:00
|
|
|
#[test]
|
|
|
|
fn create() {
|
2023-06-02 19:20:03 +00:00
|
|
|
for _ in 0..1000 {
|
2023-01-08 00:52:37 +00:00
|
|
|
let mut vdom =
|
|
|
|
VirtualDom::new_with_props(create_random_element, DepthProps { depth: 0, root: true });
|
2023-01-12 21:28:10 +00:00
|
|
|
let _ = vdom.rebuild();
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test for panics when diffing random nodes
|
|
|
|
// This test will change the template every render which is not very realistic, but it helps stress the system
|
2023-07-20 01:40:43 +00:00
|
|
|
#[cfg(not(miri))]
|
2023-01-05 16:28:07 +00:00
|
|
|
#[test]
|
|
|
|
fn diff() {
|
2023-06-02 19:20:03 +00:00
|
|
|
for _ in 0..100000 {
|
2023-01-08 00:52:37 +00:00
|
|
|
let mut vdom =
|
|
|
|
VirtualDom::new_with_props(create_random_element, DepthProps { depth: 0, root: true });
|
2023-01-12 21:28:10 +00:00
|
|
|
let _ = vdom.rebuild();
|
2023-06-02 19:20:03 +00:00
|
|
|
// A list of all elements that have had event listeners
|
|
|
|
// This is intentionally never cleared, so that we can test that calling event listeners that are removed doesn't cause a panic
|
|
|
|
let mut event_listeners = HashSet::new();
|
|
|
|
for _ in 0..100 {
|
|
|
|
for &id in &event_listeners {
|
|
|
|
println!("firing event on {:?}", id);
|
|
|
|
vdom.handle_event(
|
|
|
|
"data",
|
|
|
|
std::rc::Rc::new(String::from("hello world")),
|
|
|
|
id,
|
|
|
|
true,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let muts = vdom.render_immediate();
|
|
|
|
for mut_ in muts.edits {
|
|
|
|
if let Mutation::NewEventListener { name, id } = mut_ {
|
|
|
|
println!("new event listener on {:?} for {:?}", id, name);
|
|
|
|
event_listeners.insert(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-05 16:28:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|