2018-02-21 17:26:22 +00:00
|
|
|
import {
|
2019-02-23 17:47:36 +00:00
|
|
|
getNthStatus, scrollToStatus, closeDialogButton, modalDialogContents, goBack, getUrl,
|
2018-04-17 17:44:28 +01:00
|
|
|
goBackButton, getActiveElementInnerText, getNthReplyButton, getActiveElementInsideNthStatus, focus,
|
2019-02-23 17:47:36 +00:00
|
|
|
getNthStatusSelector, getActiveElementTagName, getActiveElementClassList
|
2018-02-21 17:26:22 +00:00
|
|
|
} from '../utils'
|
2018-05-26 21:51:41 +01:00
|
|
|
import { loginAsFoobar } from '../roles'
|
2018-06-09 05:54:21 +01:00
|
|
|
import { Selector as $ } from 'testcafe'
|
2019-03-31 17:21:57 +01:00
|
|
|
|
2018-11-12 20:59:47 +00:00
|
|
|
import { homeTimeline } from '../fixtures'
|
2018-02-21 17:26:22 +00:00
|
|
|
|
2018-03-07 05:32:51 +00:00
|
|
|
fixture`010-focus.js`
|
2018-02-21 17:26:22 +00:00
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
test('modal preserves focus', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
2018-11-12 20:59:47 +00:00
|
|
|
|
2019-03-31 17:21:57 +01:00
|
|
|
let idx = homeTimeline.findIndex(_ => _.content === "here's a video")
|
2018-11-12 20:59:47 +00:00
|
|
|
|
2019-02-28 16:56:25 +00:00
|
|
|
await scrollToStatus(t, 1 + idx)
|
2018-04-17 17:44:28 +01:00
|
|
|
// explicitly hover-focus-click
|
2019-02-28 16:56:25 +00:00
|
|
|
await t.hover($(`${getNthStatusSelector(1 + idx)} .play-video-button`))
|
|
|
|
await focus(`${getNthStatusSelector(1 + idx)} .play-video-button`)()
|
|
|
|
await t.click($(`${getNthStatusSelector(1 + idx)} .play-video-button`))
|
2018-02-21 17:26:22 +00:00
|
|
|
.click(closeDialogButton)
|
|
|
|
.expect(modalDialogContents.exists).notOk()
|
2019-02-23 17:47:36 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('play-video-button')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql((idx + 1).toString())
|
2018-02-21 17:26:22 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('timeline preserves focus', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
2018-04-17 17:44:28 +01:00
|
|
|
// explicitly hover-focus-click
|
2019-02-28 16:56:25 +00:00
|
|
|
await t.hover(getNthStatus(1))
|
|
|
|
await focus(getNthStatusSelector(1))()
|
|
|
|
await t.click(getNthStatus(1))
|
2018-03-06 06:36:54 +00:00
|
|
|
.expect(getUrl()).contains('/statuses/')
|
2018-02-21 17:26:22 +00:00
|
|
|
|
|
|
|
await goBack()
|
2018-03-16 03:31:58 +00:00
|
|
|
await t.expect(getUrl()).eql('http://localhost:4002/')
|
2019-02-23 17:47:36 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('status-article')
|
|
|
|
.expect(getActiveElementClassList()).contains('status-in-timeline')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql('1')
|
2018-03-16 03:31:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('timeline link preserves focus', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(1).exists).ok({ timeout: 20000 })
|
|
|
|
.click($(`${getNthStatusSelector(1)} .status-header a`))
|
2018-03-16 03:31:58 +00:00
|
|
|
.expect(getUrl()).contains('/accounts/')
|
|
|
|
.click(goBackButton)
|
|
|
|
.expect(getUrl()).eql('http://localhost:4002/')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(1).exists).ok()
|
2018-03-16 03:31:58 +00:00
|
|
|
.expect(getActiveElementInnerText()).eql('admin')
|
2019-02-28 16:56:25 +00:00
|
|
|
.click($(`${getNthStatusSelector(1)} .status-sidebar`))
|
2018-03-17 01:48:24 +00:00
|
|
|
.expect(getUrl()).contains('/accounts/')
|
|
|
|
.click(goBackButton)
|
|
|
|
.expect(getUrl()).eql('http://localhost:4002/')
|
2019-02-23 17:47:36 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('status-sidebar')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql('1')
|
2018-03-16 03:31:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
test('notification timeline preserves focus', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-16 03:31:58 +00:00
|
|
|
.navigateTo('/notifications')
|
2019-02-28 16:56:25 +00:00
|
|
|
await scrollToStatus(t, 6)
|
|
|
|
await t.click($(`${getNthStatusSelector(6)} .status-header a`))
|
2018-03-16 03:31:58 +00:00
|
|
|
.expect(getUrl()).contains('/accounts/')
|
|
|
|
.click(goBackButton)
|
2019-02-24 00:09:48 +00:00
|
|
|
.expect(getUrl()).contains('/notifications')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(1).exists).ok()
|
2018-03-16 03:31:58 +00:00
|
|
|
.expect(getActiveElementInnerText()).eql('quux')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql('6')
|
2018-03-17 02:04:48 +00:00
|
|
|
})
|
|
|
|
|
2019-02-23 17:47:36 +00:00
|
|
|
test('thread preserves focus', async t => {
|
2019-02-23 20:32:10 +00:00
|
|
|
const timeout = 30000
|
|
|
|
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-21 03:28:53 +00:00
|
|
|
.navigateTo('/accounts/3')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(1).exists).ok({ timeout })
|
|
|
|
.hover(getNthStatus(1))
|
|
|
|
await scrollToStatus(t, 3)
|
|
|
|
await t.click(getNthStatus(3))
|
2018-03-21 03:28:53 +00:00
|
|
|
.expect(getUrl()).contains('/statuses/')
|
2019-02-28 16:56:25 +00:00
|
|
|
.click($(`${getNthStatusSelector(25)} .status-sidebar`))
|
2018-03-21 03:28:53 +00:00
|
|
|
.expect(getUrl()).contains('/accounts/')
|
|
|
|
.click(goBackButton)
|
|
|
|
.expect(getUrl()).contains('/statuses/')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(25).exists).ok()
|
2019-02-23 17:47:36 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('status-sidebar')
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql('25')
|
|
|
|
.hover(getNthStatus(24))
|
|
|
|
.click(getNthStatus(24))
|
|
|
|
.expect($(`${getNthStatusSelector(24)} .status-absolute-date`).exists).ok({ timeout })
|
2018-03-21 03:28:53 +00:00
|
|
|
await goBack()
|
2019-02-28 16:56:25 +00:00
|
|
|
await t.expect($(`${getNthStatusSelector(25)} .status-absolute-date`).exists).ok({ timeout })
|
2019-02-23 20:32:10 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('status-article', { timeout })
|
|
|
|
.expect(getActiveElementClassList()).contains('status-in-timeline', { timeout })
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getActiveElementInsideNthStatus()).eql('24', { timeout })
|
2018-03-21 03:28:53 +00:00
|
|
|
})
|
|
|
|
|
2018-03-17 02:04:48 +00:00
|
|
|
test('reply preserves focus and moves focus to the text input', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2019-02-28 16:56:25 +00:00
|
|
|
.expect(getNthStatus(2).exists).ok({ timeout: 20000 })
|
|
|
|
.click(getNthReplyButton(2))
|
2019-02-23 17:47:36 +00:00
|
|
|
.expect(getActiveElementClassList()).contains('compose-box-input')
|
2018-02-21 17:26:22 +00:00
|
|
|
})
|
2018-04-17 17:42:10 +01:00
|
|
|
|
2018-11-24 08:41:36 +00:00
|
|
|
test('focus main content element on index page load', async t => {
|
|
|
|
await t.expect(getActiveElementTagName()).match(/body/i)
|
2018-04-17 17:42:10 +01:00
|
|
|
})
|