-
Notifications
You must be signed in to change notification settings - Fork 599
/
Copy pathslot.test.js
65 lines (58 loc) · 1.92 KB
/
slot.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import { mount } from '@vue/test-utils'
import VirtualList from '../src/index'
import Item from './item.vue'
import { getDatas } from './util'
describe('slot', () => {
const Instance = mount({
name: 'test',
components: {
'virtual-list': VirtualList
},
template: `
<div id="app">
<virtual-list class="my-list" style="height: 300px; overflow-y: auto;"
:data-key="'id'"
:data-sources="items"
:data-component="item"
:header-tag="'section'"
:header-class="'head1'"
:footer-tag="'article'"
:footer-class="'foot1'"
>
<div slot="header">Header</div>
<div slot="footer">Footer</div>
</virtual-list>
</div>
`,
data () {
return {
items: getDatas(1000),
item: Item
}
}
})
it('check mount', () => {
expect(Instance.name()).toBe('test')
expect(Instance.is('div')).toBe(true)
expect(Instance.isVueInstance()).toBe(true)
expect(Instance.find('.my-list').exists()).toBe(true)
})
it('check slot build', () => {
const vslVm = Instance.find('.my-list').vm
const rootEl = vslVm.$el
const wrapperEl = rootEl.querySelector('[role="group"]')
const headerEl = rootEl.querySelector('[role="header"]')
const footerEl = rootEl.querySelector('[role="footer"]')
// wrapper shoud be in middle between header and footer
expect(wrapperEl.previousElementSibling).toBe(headerEl)
expect(wrapperEl.nextElementSibling).toBe(footerEl)
expect(!!headerEl).toBe(true)
expect(!!footerEl).toBe(true)
expect(headerEl.className).toBe('head1')
expect(headerEl.tagName.toLowerCase()).toBe('section')
expect(headerEl.firstElementChild.textContent).toBe('Header')
expect(footerEl.className).toBe('foot1')
expect(footerEl.tagName.toLowerCase()).toBe('article')
expect(footerEl.firstElementChild.textContent).toBe('Footer')
})
})