dioxus/packages/core/tests
2024-03-17 21:39:29 -07:00
..
.rustfmt.toml wip: add diffing tests 2022-11-22 20:16:14 -08:00
attr_cleanup.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
attributes_pass.rs Make clippy happy 2024-03-17 21:39:29 -07:00
boolattrs.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
bubble_error.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
children_drop_futures.rs fix clippy 2024-03-04 16:10:04 -06:00
context_api.rs restore core tests 2024-01-16 15:51:02 -06:00
create_dom.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
create_element.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
create_fragments.rs Make clippy happy 2024-02-04 23:03:52 -08:00
create_lists.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
create_passthru.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
cycle.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
diff_component.rs restore core tests 2024-01-16 15:51:02 -06:00
diff_element.rs fix 2020: return None if the root nodes are empty in rsx (#2026) 2024-03-08 15:57:46 -06:00
diff_keyed_list.rs fix replacing fragments 2024-01-19 19:23:01 -06:00
diff_unkeyed_list.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
error_boundary.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
event_propagation.rs Implement some clippy fixes 2024-01-30 18:17:45 -08:00
fuzzing.rs remove unsafe from tests in core 2024-02-22 17:46:51 -08:00
hotreloading.rs chore: make warnings go away 2022-11-29 16:31:04 -05:00
kitchen_sink.rs Feat: reject invalid keys 2024-03-07 16:03:00 -08:00
lifecycle.rs Switch todo!() to unreachable!/unimplemented! where it matters 2024-01-31 16:26:20 -08:00
miri_full_app.rs restore core tests 2024-01-16 15:51:02 -06:00
miri_simple.rs Switch todo!() to unreachable!/unimplemented! where it matters 2024-01-31 16:26:20 -08:00
miri_stress.rs Switch todo!() to unreachable!/unimplemented! where it matters 2024-01-31 16:26:20 -08:00
README.md work on fixing some core tests 2024-01-10 19:21:15 -06:00
safety.rs depreciate the render macro 2024-01-16 13:18:46 -06:00
suspense.rs fix memos during suspense 2024-03-07 11:49:51 -06:00
task.rs fix memos during suspense 2024-03-07 11:49:51 -06:00
tracing.rs Add tracing to virtual_dom (#1949) 2024-02-29 17:49:35 -06:00

Testing of Dioxus core

Diffing

  • create elements
  • create text
  • create fragments
  • create empty fragments (placeholders)
  • diff elements
  • diff from element/text to fragment
  • diff from element/text to empty fragment
  • diff to element with children works too
  • replace with works forward
  • replace with works backward
  • un-keyed diffing
  • keyed diffing
  • keyed diffing out of order
  • keyed diffing with prefix/suffix
  • suspended nodes work

Lifecycle

  • [] Components mount properly
  • [] Components create new child components
  • [] Replaced components unmount old components and mount new
  • [] Post-render effects are called

Shared Context

  • [] Shared context propagates downwards
  • [] unwrapping shared context if it doesn't exist works too

Suspense

  • [] use_suspense generates suspended nodes

Hooks

  • [] Drop order is maintained
  • [] Shared hook state is okay
  • [] use_hook works
  • [] use_ref works
  • [] use_noderef works
  • [] use_provide_state
  • [] use_consume_state

VirtualDOM API

  • [] work
  • [] rebuild_to_vec
  • [] change props