Pinafore-Web-Client-Frontend/tests/spec/108-compose-dialog.js

63 lines
2.0 KiB
JavaScript
Raw Permalink Normal View History

2018-03-27 09:02:55 +02:00
import {
composeButton,
getNthStatus,
scrollToStatus,
modalDialog,
sleep,
notificationsNavButton,
getUrl,
getNthStatusSelector,
composeModalEmojiButton,
composeModalInput,
composeModalComposeButton, emojiSearchInput, firstEmojiInPicker
2018-03-27 09:02:55 +02:00
} from '../utils'
import { loginAsFoobar } from '../roles'
import { Selector as $ } from 'testcafe'
2018-03-27 09:02:55 +02: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-04-01 07:08:24 +02:00
await t.expect(modalDialog.exists).notOk()
.expect(composeButton.getAttribute('aria-label')).eql('Compose toot')
2018-03-30 17:19:18 +02:00
await sleep(2000)
2018-03-27 17:38:40 +02:00
await t.click(composeButton)
2018-03-27 09:02:55 +02:00
.expect(modalDialog.hasAttribute('aria-hidden')).notOk()
.typeText(composeModalInput, 'hello from the modal')
.click(composeModalComposeButton)
2018-04-01 07:08:24 +02:00
.expect(modalDialog.exists).notOk()
2018-04-11 07:38:10 +02: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 09:02:55 +02:00
})
// Skipped because TestCafé seems to believe the elements are not visible when they are.
// Tested manually and it's fine; probably a TestCafé bug.
test.skip('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 toot')
await sleep(2000)
await t.click(composeButton)
await sleep(1000)
await t
.click(composeModalEmojiButton)
await sleep(1000)
await t
.typeText(emojiSearchInput, 'blobpats')
await sleep(1000)
await t
.click(firstEmojiInPicker)
.expect(composeModalInput.value).eql(':blobpats: ')
.click(composeModalComposeButton)
.expect(modalDialog.exists).notOk()
2018-04-11 07:38:10 +02:00
.click(notificationsNavButton)
.expect(getUrl()).contains('/notifications')
.navigateTo('/')
await t.expect($(`${getNthStatusSelector(1)} img[alt=":blobpats:"]`).exists).ok({ timeout: 20000 })
})