1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 22:36:45 +01:00
Pinafore-Web-Client-Frontend/tests/spec/108-compose-dialog.js

55 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-03-27 00:02:55 -07:00
import {
composeButton,
getNthStatus,
scrollToStatus,
modalDialog,
sleep,
notificationsNavButton,
getUrl,
getNthStatusSelector,
composeModalEmojiButton,
composeModalInput,
composeModalComposeButton, emojiSearchInput
2018-03-27 00:02:55 -07:00
} from '../utils'
import { loginAsFoobar } from '../roles'
import { Selector as $ } from 'testcafe'
2018-03-27 00:02:55 -07:00
fixture`108-compose-dialog.js`
.page`http://localhost:4002`
test('can compose using a dialog', async t => {
await loginAsFoobar(t)
await scrollToStatus(t, 16)
2018-03-31 22:08:24 -07:00
await t.expect(modalDialog.exists).notOk()
2018-03-30 08:19:18 -07:00
.expect(composeButton.getAttribute('aria-label')).eql('Compose')
await sleep(2000)
2018-03-27 08:38:40 -07:00
await t.click(composeButton)
2018-03-27 00:02:55 -07:00
.expect(modalDialog.hasAttribute('aria-hidden')).notOk()
.typeText(composeModalInput, 'hello from the modal')
.click(composeModalComposeButton)
2018-03-31 22:08:24 -07:00
.expect(modalDialog.exists).notOk()
2018-04-10 22:38:10 -07:00
.click(notificationsNavButton)
.expect(getUrl()).contains('/notifications')
.navigateTo('/')
.hover(getNthStatus(1))
.expect(getNthStatus(1).innerText).contains('hello from the modal', { timeout: 20000 })
2018-03-27 00:02:55 -07:00
})
test('can use emoji dialog within compose dialog', async t => {
await loginAsFoobar(t)
await scrollToStatus(t, 16)
await t.expect(composeButton.getAttribute('aria-label')).eql('Compose')
await sleep(2000)
await t.click(composeButton)
.click(composeModalEmojiButton)
.typeText(emojiSearchInput, 'blobpats')
.pressKey('enter')
.expect(composeModalInput.value).eql(':blobpats: ')
.click(composeModalComposeButton)
.expect(modalDialog.exists).notOk()
2018-04-10 22:38:10 -07:00
.click(notificationsNavButton)
.expect(getUrl()).contains('/notifications')
.navigateTo('/')
await t.expect($(`${getNthStatusSelector(1)} img[alt=":blobpats:"]`).exists).ok({ timeout: 20000 })
})