1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- use html_parser::Dom;
- #[test]
- fn simple_elements() {
- let html = r#"
- <div>
- <div class="asd">hello world!</div>
- <div id="asd">hello world!</div>
- <div id="asd">hello world!</div>
- <div for="asd">hello world!</div>
- <div async="asd">hello world!</div>
- <div LargeThing="asd">hello world!</div>
- <ai-is-awesome>hello world!</ai-is-awesome>
- </div>
- "#
- .trim();
- let dom = Dom::parse(html).unwrap();
- let body = rsx_rosetta::rsx_from_html(&dom);
- let out = dioxus_autofmt::write_block_out(body).unwrap();
- let expected = r#"
- div {
- div { class: "asd", "hello world!" }
- div { id: "asd", "hello world!" }
- div { id: "asd", "hello world!" }
- div { r#for: "asd", "hello world!" }
- div { r#async: "asd", "hello world!" }
- div { large_thing: "asd", "hello world!" }
- ai_is_awesome { "hello world!" }
- }"#;
- pretty_assertions::assert_eq!(&out, &expected);
- }
- #[test]
- fn deeply_nested() {
- let html = r#"
- <div>
- <div class="asd">
- <div class="asd">
- <div class="asd">
- <div class="asd">
- </div>
- </div>
- </div>
- </div>
- </div>
- "#
- .trim();
- let dom = Dom::parse(html).unwrap();
- let body = rsx_rosetta::rsx_from_html(&dom);
- let out = dioxus_autofmt::write_block_out(body).unwrap();
- let expected = r#"
- div {
- div { class: "asd",
- div { class: "asd",
- div { class: "asd", div { class: "asd" } }
- }
- }
- }"#;
- pretty_assertions::assert_eq!(&out, &expected);
- }
|