mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
77eb2ea4e4
Co-authored-by: 三咲智子 <sxzz@sxzz.moe>
193 lines
5.4 KiB
TypeScript
193 lines
5.4 KiB
TypeScript
import { nextTick } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { defineGetter, makeScroll } from '@element-plus/test-utils'
|
|
import Affix from '../src/affix.vue'
|
|
import type { VNode } from 'vue'
|
|
|
|
let clientHeightRestore: () => void
|
|
|
|
const _mount = (render: () => VNode) => {
|
|
return mount(render, { attachTo: document.body })
|
|
}
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
beforeAll(() => {
|
|
clientHeightRestore = defineGetter(
|
|
window.HTMLElement.prototype,
|
|
'clientHeight',
|
|
1000,
|
|
0
|
|
)
|
|
})
|
|
|
|
afterAll(() => {
|
|
clientHeightRestore()
|
|
})
|
|
|
|
describe('Affix.vue', () => {
|
|
test('render test', async () => {
|
|
const wrapper = _mount(() => <Affix>{AXIOM}</Affix>)
|
|
await nextTick()
|
|
|
|
expect(wrapper.text()).toEqual(AXIOM)
|
|
const mockAffixRect = jest
|
|
.spyOn(wrapper.find('.el-affix').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -100,
|
|
bottom: -80,
|
|
} as DOMRect)
|
|
const mockDocumentRect = jest
|
|
.spyOn(document.documentElement, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 200,
|
|
width: 1000,
|
|
top: 0,
|
|
bottom: 200,
|
|
} as DOMRect)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(false)
|
|
await makeScroll(document.documentElement, 'scrollTop', 200)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(true)
|
|
mockAffixRect.mockRestore()
|
|
mockDocumentRect.mockRestore()
|
|
})
|
|
|
|
test('should render offset props', async () => {
|
|
const wrapper = _mount(() => <Affix offset={30}>AXIOM</Affix>)
|
|
await nextTick()
|
|
const mockAffixRect = jest
|
|
.spyOn(wrapper.find('.el-affix').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -100,
|
|
bottom: -80,
|
|
} as DOMRect)
|
|
const mockDocumentRect = jest
|
|
.spyOn(document.documentElement, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 200,
|
|
width: 1000,
|
|
top: 0,
|
|
bottom: 200,
|
|
} as DOMRect)
|
|
await makeScroll(document.documentElement, 'scrollTop', 200)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(true)
|
|
expect(wrapper.find('.el-affix--fixed').attributes('style')).toContain(
|
|
'top: 30px;'
|
|
)
|
|
mockAffixRect.mockRestore()
|
|
mockDocumentRect.mockRestore()
|
|
})
|
|
|
|
test('should render position props', async () => {
|
|
const wrapper = _mount(() => (
|
|
<Affix position="bottom" offset={20}>
|
|
AXIOM
|
|
</Affix>
|
|
))
|
|
await nextTick()
|
|
|
|
const mockAffixRect = jest
|
|
.spyOn(wrapper.find('.el-affix').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: 2000,
|
|
bottom: 2040,
|
|
} as DOMRect)
|
|
const mockDocumentRect = jest
|
|
.spyOn(document.documentElement, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 200,
|
|
width: 1000,
|
|
top: 0,
|
|
bottom: 200,
|
|
} as DOMRect)
|
|
await makeScroll(document.documentElement, 'scrollTop', 0)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(true)
|
|
expect(wrapper.find('.el-affix--fixed').attributes('style')).toContain(
|
|
'bottom: 20px;'
|
|
)
|
|
mockAffixRect.mockRestore()
|
|
mockDocumentRect.mockRestore()
|
|
})
|
|
|
|
test('should render target props', async () => {
|
|
const wrapper = _mount(() => (
|
|
<>
|
|
<div class="target" style="height: 200px">
|
|
<Affix target=".target">AXIOM</Affix>
|
|
</div>
|
|
<div style="height: 1000px"></div>
|
|
</>
|
|
))
|
|
await nextTick()
|
|
|
|
const mockAffixRect = jest
|
|
.spyOn(wrapper.find('.el-affix').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -100,
|
|
bottom: -60,
|
|
} as DOMRect)
|
|
const mockTargetRect = jest
|
|
.spyOn(wrapper.find('.target').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 200,
|
|
width: 1000,
|
|
top: -100,
|
|
bottom: 100,
|
|
} as DOMRect)
|
|
await makeScroll(document.documentElement, 'scrollTop', 100)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(true)
|
|
mockAffixRect.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -300,
|
|
bottom: -260,
|
|
} as DOMRect)
|
|
mockTargetRect.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -300,
|
|
bottom: -260,
|
|
} as DOMRect)
|
|
await makeScroll(document.documentElement, 'scrollTop', 300)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(false)
|
|
mockAffixRect.mockRestore()
|
|
mockTargetRect.mockRestore()
|
|
})
|
|
|
|
test('should render z-index props', async () => {
|
|
const wrapper = _mount(() => <Affix z-index={1000}>AXIOM</Affix>)
|
|
await nextTick()
|
|
const mockAffixRect = jest
|
|
.spyOn(wrapper.find('.el-affix').element, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 40,
|
|
width: 1000,
|
|
top: -100,
|
|
bottom: -80,
|
|
} as DOMRect)
|
|
const mockDocumentRect = jest
|
|
.spyOn(document.documentElement, 'getBoundingClientRect')
|
|
.mockReturnValue({
|
|
height: 200,
|
|
width: 1000,
|
|
top: 0,
|
|
bottom: 200,
|
|
} as DOMRect)
|
|
await makeScroll(document.documentElement, 'scrollTop', 200)
|
|
expect(wrapper.find('.el-affix--fixed').exists()).toBe(true)
|
|
expect(wrapper.find('.el-affix--fixed').attributes('style')).toContain(
|
|
'z-index: 1000;'
|
|
)
|
|
mockAffixRect.mockRestore()
|
|
mockDocumentRect.mockRestore()
|
|
})
|
|
})
|