pinafore/tests/spec/114-mute-unmute.js

67 wiersze
2.4 KiB
JavaScript
Czysty Zwykły widok Historia

2018-04-15 05:18:48 +00:00
import {
accountProfileFollowButton,
accountProfileMoreOptionsButton,
communityNavButton,
getNthSearchResult,
getNthStatus,
getNthStatusOptionsButton,
getNthDialogOptionsOption,
getUrl,
modalDialog,
closeDialogButton,
confirmationDialogOKButton, sleep
2018-04-15 05:18:48 +00:00
} from '../utils'
import { Selector as $ } from 'testcafe'
import { loginAsFoobar } from '../roles'
2018-04-15 05:18:48 +00:00
import { postAs } from '../serverActions'
fixture`114-mute-unmute.js`
.page`http://localhost:4002`
test('Can mute and unmute an account', async t => {
await loginAsFoobar(t)
2019-08-03 20:49:37 +00:00
const post = 'blah blah blah'
2018-04-15 05:18:48 +00:00
await postAs('admin', post)
await t.expect(getNthStatus(1).innerText).contains(post, { timeout: 20000 })
.click(getNthStatusOptionsButton(1))
2018-04-15 05:18:48 +00:00
.expect(getNthDialogOptionsOption(1).innerText).contains('Unfollow @admin')
.expect(getNthDialogOptionsOption(2).innerText).contains('Block @admin')
.expect(getNthDialogOptionsOption(3).innerText).contains('Mute @admin')
await sleep(1000)
await t
2018-04-15 05:18:48 +00:00
.click(getNthDialogOptionsOption(3))
await sleep(1000)
await t
.click(confirmationDialogOKButton)
2018-04-15 05:18:48 +00:00
.expect(modalDialog.exists).notOk()
await sleep(1000)
await t
2018-04-15 05:18:48 +00:00
.click(communityNavButton)
.click($('a[href="/muted"]'))
.expect(getNthSearchResult(1).innerText).contains('@admin')
.click(getNthSearchResult(1))
.expect(getUrl()).contains('/accounts/1')
.click(accountProfileMoreOptionsButton)
.expect(getNthDialogOptionsOption(1).innerText).contains('Mention @admin')
.expect(getNthDialogOptionsOption(2).innerText).contains('Unfollow @admin')
.expect(getNthDialogOptionsOption(3).innerText).contains('Block @admin')
.expect(getNthDialogOptionsOption(4).innerText).contains('Unmute @admin')
await sleep(1000)
await t
2018-04-15 05:18:48 +00:00
.click(getNthDialogOptionsOption(4))
await sleep(1000)
await t
2018-04-15 05:18:48 +00:00
.click(accountProfileMoreOptionsButton)
.expect(getNthDialogOptionsOption(1).innerText).contains('Mention @admin')
.expect(getNthDialogOptionsOption(2).innerText).contains('Unfollow @admin')
.expect(getNthDialogOptionsOption(3).innerText).contains('Block @admin')
.expect(getNthDialogOptionsOption(4).innerText).contains('Mute @admin')
await sleep(1000)
await t
2018-04-19 16:34:49 +00:00
.click(closeDialogButton)
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Follow')
.expect(accountProfileFollowButton.getAttribute('title')).eql('Unfollow')
.expect(accountProfileFollowButton.getAttribute('aria-pressed')).eql('true')
2018-04-15 05:18:48 +00:00
})