test(e2e): add test for grid example (#545)
This commit is contained in:
parent
5cf7523787
commit
abfea8eb45
@ -70,6 +70,12 @@ export function setupPuppeteer() {
|
|||||||
return await page.$eval(selector, node => node === document.activeElement)
|
return await page.$eval(selector, node => node === document.activeElement)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function setValue(selector: string, value: string) {
|
||||||
|
const el = (await page.$(selector))!
|
||||||
|
await el.evaluate((node: HTMLInputElement) => (node.value = ''))
|
||||||
|
await el.type(value)
|
||||||
|
}
|
||||||
|
|
||||||
async function enterValue(selector: string, value: string) {
|
async function enterValue(selector: string, value: string) {
|
||||||
const el = (await page.$(selector))!
|
const el = (await page.$(selector))!
|
||||||
await el.evaluate((node: HTMLInputElement) => (node.value = ''))
|
await el.evaluate((node: HTMLInputElement) => (node.value = ''))
|
||||||
@ -96,6 +102,7 @@ export function setupPuppeteer() {
|
|||||||
isVisible,
|
isVisible,
|
||||||
isChecked,
|
isChecked,
|
||||||
isFocused,
|
isFocused,
|
||||||
|
setValue,
|
||||||
enterValue,
|
enterValue,
|
||||||
clearValue
|
clearValue
|
||||||
}
|
}
|
||||||
|
113
packages/vue/examples/__tests__/grid.spec.ts
Normal file
113
packages/vue/examples/__tests__/grid.spec.ts
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
import path from 'path'
|
||||||
|
import { setupPuppeteer } from './e2eUtils'
|
||||||
|
|
||||||
|
interface TableData {
|
||||||
|
name: string
|
||||||
|
power: number
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('e2e: grid', () => {
|
||||||
|
const { page, click, text, count, setValue, clearValue } = setupPuppeteer()
|
||||||
|
const columns = ['name', 'power'] as const
|
||||||
|
|
||||||
|
async function assertTable(data: TableData[]) {
|
||||||
|
expect(await count('td')).toBe(data.length * columns.length)
|
||||||
|
for (let i = 0; i < data.length; i++) {
|
||||||
|
for (let j = 0; j < columns.length; j++) {
|
||||||
|
expect(
|
||||||
|
await text(`tr:nth-child(${i + 1}) td:nth-child(${j + 1})`)
|
||||||
|
).toContain(data[i][columns[j]])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function testGrid(apiType: 'classic' | 'composition') {
|
||||||
|
const baseUrl = `file://${path.resolve(
|
||||||
|
__dirname,
|
||||||
|
`../${apiType}/grid.html`
|
||||||
|
)}`
|
||||||
|
|
||||||
|
await page().goto(baseUrl)
|
||||||
|
await page().waitFor('table')
|
||||||
|
expect(await count('th')).toBe(2)
|
||||||
|
expect(await count('th.active')).toBe(0)
|
||||||
|
expect(await text('th:nth-child(1)')).toContain('Name')
|
||||||
|
expect(await text('th:nth-child(2)')).toContain('Power')
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Chuck Norris', power: Infinity },
|
||||||
|
{ name: 'Bruce Lee', power: 9000 },
|
||||||
|
{ name: 'Jackie Chan', power: 7000 },
|
||||||
|
{ name: 'Jet Li', power: 8000 }
|
||||||
|
])
|
||||||
|
|
||||||
|
await click('th:nth-child(1)')
|
||||||
|
expect(await count('th.active:nth-child(1)')).toBe(1)
|
||||||
|
expect(await count('th.active:nth-child(2)')).toBe(0)
|
||||||
|
expect(await count('th:nth-child(1) .arrow.dsc')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(2) .arrow.dsc')).toBe(0)
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Jet Li', power: 8000 },
|
||||||
|
{ name: 'Jackie Chan', power: 7000 },
|
||||||
|
{ name: 'Chuck Norris', power: Infinity },
|
||||||
|
{ name: 'Bruce Lee', power: 9000 }
|
||||||
|
])
|
||||||
|
|
||||||
|
await click('th:nth-child(2)')
|
||||||
|
expect(await count('th.active:nth-child(1)')).toBe(0)
|
||||||
|
expect(await count('th.active:nth-child(2)')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(1) .arrow.dsc')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(2) .arrow.dsc')).toBe(1)
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Chuck Norris', power: Infinity },
|
||||||
|
{ name: 'Bruce Lee', power: 9000 },
|
||||||
|
{ name: 'Jet Li', power: 8000 },
|
||||||
|
{ name: 'Jackie Chan', power: 7000 }
|
||||||
|
])
|
||||||
|
|
||||||
|
await click('th:nth-child(2)')
|
||||||
|
expect(await count('th.active:nth-child(1)')).toBe(0)
|
||||||
|
expect(await count('th.active:nth-child(2)')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(1) .arrow.dsc')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(2) .arrow.asc')).toBe(1)
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Jackie Chan', power: 7000 },
|
||||||
|
{ name: 'Jet Li', power: 8000 },
|
||||||
|
{ name: 'Bruce Lee', power: 9000 },
|
||||||
|
{ name: 'Chuck Norris', power: Infinity }
|
||||||
|
])
|
||||||
|
|
||||||
|
await click('th:nth-child(1)')
|
||||||
|
expect(await count('th.active:nth-child(1)')).toBe(1)
|
||||||
|
expect(await count('th.active:nth-child(2)')).toBe(0)
|
||||||
|
expect(await count('th:nth-child(1) .arrow.asc')).toBe(1)
|
||||||
|
expect(await count('th:nth-child(2) .arrow.asc')).toBe(1)
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Bruce Lee', power: 9000 },
|
||||||
|
{ name: 'Chuck Norris', power: Infinity },
|
||||||
|
{ name: 'Jackie Chan', power: 7000 },
|
||||||
|
{ name: 'Jet Li', power: 8000 }
|
||||||
|
])
|
||||||
|
|
||||||
|
await setValue('input[name="query"]', 'j')
|
||||||
|
await assertTable([
|
||||||
|
{ name: 'Jackie Chan', power: 7000 },
|
||||||
|
{ name: 'Jet Li', power: 8000 }
|
||||||
|
])
|
||||||
|
|
||||||
|
await setValue('input[name="query"]', 'infinity')
|
||||||
|
await assertTable([{ name: 'Chuck Norris', power: Infinity }])
|
||||||
|
|
||||||
|
await clearValue('input[name="query"]')
|
||||||
|
expect(await count('p')).toBe(0)
|
||||||
|
await setValue('input[name="query"]', 'stringthatdoesnotexistanywhere')
|
||||||
|
expect(await count('p')).toBe(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
test('classic', async () => {
|
||||||
|
await testGrid('classic')
|
||||||
|
})
|
||||||
|
|
||||||
|
test('composition', async () => {
|
||||||
|
await testGrid('composition')
|
||||||
|
})
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user