| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- import { defineComponent, h, nextTick, ref } from 'vue'
- import { mathmlNS, nodeOps, svgNS } from '../src/nodeOps'
- import { render } from '@vue/runtime-dom'
- describe('runtime-dom: node-ops', () => {
- test("the <select>'s multiple attr should be set in createElement", () => {
- const el = nodeOps.createElement('select', undefined, undefined, {
- multiple: '',
- }) as HTMLSelectElement
- const option1 = nodeOps.createElement('option') as HTMLOptionElement
- const option2 = nodeOps.createElement('option') as HTMLOptionElement
- option1.selected = true
- option2.selected = true
- nodeOps.insert(option1, el)
- nodeOps.insert(option2, el)
- expect(el.multiple).toBe(true)
- expect(option1.selected).toBe(true)
- expect(option2.selected).toBe(true)
- })
- test('create custom elements', () => {
- const spyCreateElement = vi.spyOn(document, 'createElement')
- nodeOps.createElement('custom-element')
- expect(spyCreateElement).toHaveBeenLastCalledWith('custom-element')
- nodeOps.createElement('custom-element', undefined, 'li')
- expect(spyCreateElement).toHaveBeenLastCalledWith('custom-element', {
- is: 'li',
- })
- spyCreateElement.mockClear()
- })
- describe('insertStaticContent', () => {
- test('fresh insertion', () => {
- const content = `<div>one</div><div>two</div>three`
- const parent = document.createElement('div')
- const nodes = nodeOps.insertStaticContent!(
- content,
- parent,
- null,
- undefined,
- )
- expect(parent.innerHTML).toBe(content)
- expect(nodes[0]).toBe(parent.firstChild)
- expect(nodes[1]).toBe(parent.lastChild)
- })
- test('fresh insertion with anchor', () => {
- const content = `<div>one</div><div>two</div>three`
- const existing = `<div>existing</div>`
- const parent = document.createElement('div')
- parent.innerHTML = existing
- const anchor = parent.firstChild
- const nodes = nodeOps.insertStaticContent!(
- content,
- parent,
- anchor,
- undefined,
- )
- expect(parent.innerHTML).toBe(content + existing)
- expect(nodes[0]).toBe(parent.firstChild)
- expect(nodes[1]).toBe(parent.childNodes[parent.childNodes.length - 2])
- })
- test('fresh insertion as svg', () => {
- const content = `<text>hello</text><circle cx="100" cy="100" r="80"></circle>`
- const parent = document.createElementNS(svgNS, 'svg')
- const [first, last] = nodeOps.insertStaticContent!(
- content,
- parent,
- null,
- 'svg',
- )
- expect(parent.innerHTML).toBe(content)
- expect(first).toBe(parent.firstChild)
- expect(last).toBe(parent.lastChild)
- expect((first as Element).namespaceURI).toMatch('svg')
- expect((last as Element).namespaceURI).toMatch('svg')
- })
- test('fresh insertion as svg, with anchor', () => {
- const content = `<text>hello</text><circle cx="100" cy="100" r="80"></circle>`
- const existing = `<path></path>`
- const parent = document.createElementNS(svgNS, 'svg')
- parent.innerHTML = existing
- const anchor = parent.firstChild
- const [first, last] = nodeOps.insertStaticContent!(
- content,
- parent,
- anchor,
- 'svg',
- )
- expect(parent.innerHTML).toBe(content + existing)
- expect(first).toBe(parent.firstChild)
- expect(last).toBe(parent.childNodes[parent.childNodes.length - 2])
- expect((first as Element).namespaceURI).toMatch('svg')
- expect((last as Element).namespaceURI).toMatch('svg')
- })
- test('cached insertion', () => {
- const content = `<div>one</div><div>two</div>three`
- const existing = `<div>existing</div>`
- const parent = document.createElement('div')
- parent.innerHTML = existing
- const anchor = parent.firstChild
- const cached = document.createElement('div')
- cached.innerHTML = content
- const nodes = nodeOps.insertStaticContent!(
- content,
- parent,
- anchor,
- undefined,
- cached.firstChild,
- cached.lastChild,
- )
- expect(parent.innerHTML).toBe(content + existing)
- expect(nodes[0]).toBe(parent.firstChild)
- expect(nodes[1]).toBe(parent.childNodes[parent.childNodes.length - 2])
- })
- test('The math elements should keep their MathML namespace', async () => {
- let root = document.createElement('div') as any
- let countRef: any
- const component = defineComponent({
- data() {
- return { value: 0 }
- },
- setup() {
- const count = ref(0)
- countRef = count
- return {
- count,
- }
- },
- template: `
- <div>
- <math>
- <mrow class="bar" v-if="count % 2">Bar</mrow>
- <msup class="foo" v-else>Foo</msup>
- </math>
- </div>
- `,
- })
- render(h(component), root)
- const foo = root.querySelector('.foo')
- expect(foo.namespaceURI).toBe(mathmlNS)
- countRef.value++
- await nextTick()
- const bar = root.querySelector('.bar')
- expect(bar.namespaceURI).toBe(mathmlNS)
- })
- })
- })
|