dioxus/packages/core/tests
Jonathan Kelley 2f30c73678
Fix side-by-side fragments by walking in reverse (#2841)
* got a repro, but no solution :(

* hmmmmm 🤔

* awyayayayayayya

* omg it's because we dont create in rev

* Make nodes rev

* fix tests compile

* Clean up PR

* revert changes to native

* Clean up PR, add test
2024-08-14 19:38:54 +00:00
..
.rustfmt.toml wip: add diffing tests 2022-11-22 20:16:14 -08:00
attr_cleanup.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
attributes_pass.rs Switch to a pool of dynamic values for hot reloading (#2705) 2024-07-30 17:16:27 +00:00
boolattrs.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
bubble_error.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
children_drop_futures.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
context_api.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
create_dom.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
create_fragments.rs Fix rsx autocomplete and diagnostics in the root; provide better completions after attributes are finished (#2656) 2024-07-23 16:34:50 -07:00
create_lists.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
create_passthru.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
cycle.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
diff_component.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
diff_dynamic_node.rs Fix mount use after removal/Simplify mounts a bit (#2834) 2024-08-13 22:47:12 -07:00
diff_element.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
diff_keyed_list.rs Fix mount use after removal/Simplify mounts a bit (#2834) 2024-08-13 22:47:12 -07:00
diff_unkeyed_list.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
error_boundary.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
event_propagation.rs Synchronous prevent default (#2792) 2024-08-13 11:57:54 -07:00
fuzzing.rs Fix templates merging in debug mode in macros (#2828) 2024-08-13 20:18:54 +00:00
hotreloading.rs chore: make warnings go away 2022-11-29 16:31:04 -05:00
kitchen_sink.rs Fix nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
lifecycle.rs Synchronous prevent default (#2792) 2024-08-13 11:57:54 -07:00
many_roots.rs Fix side-by-side fragments by walking in reverse (#2841) 2024-08-14 19:38:54 +00:00
miri_full_app.rs Synchronous prevent default (#2792) 2024-08-13 11:57:54 -07:00
miri_simple.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
miri_stress.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07: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 nested rsx expansion by not using template titles (#2799) 2024-08-13 01:59:04 +00:00
task.rs Suspense boundaries/out of order streaming/anyhow like error handling (#2365) 2024-07-01 20:50:36 -07:00
tracing.rs Synchronous prevent default (#2792) 2024-08-13 11:57:54 -07: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