2018-04-12 07:55:11 +02:00
|
|
|
import {
|
|
|
|
composeButton, composeContentWarning, composeInput, contentWarningButton,
|
|
|
|
getNthShowOrHideButton, getNthStatus
|
|
|
|
} from '../utils'
|
|
|
|
import { foobarRole } from '../roles'
|
|
|
|
|
|
|
|
fixture`110-compose-content-warnings.js`
|
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
test('content warnings are posted', async t => {
|
|
|
|
await t.useRole(foobarRole)
|
|
|
|
.typeText(composeInput, 'hello this is a toot', {paste: true})
|
|
|
|
.click(contentWarningButton)
|
|
|
|
.typeText(composeContentWarning, 'CW', {paste: true})
|
|
|
|
.click(composeButton)
|
|
|
|
.expect(getNthStatus(0).find('.status-spoiler').innerText).contains('CW', {timeout: 30000})
|
|
|
|
.click(getNthShowOrHideButton(0))
|
|
|
|
.expect(getNthStatus(0).find('.status-content').innerText).contains('hello this is a toot')
|
|
|
|
.click(getNthShowOrHideButton(0))
|
2018-04-14 19:47:53 +02:00
|
|
|
.expect(getNthStatus(0).innerText).notContains('hello this is a toot')
|
2018-04-12 07:55:11 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
test('content warnings are not posted if removed', async t => {
|
|
|
|
await t.useRole(foobarRole)
|
|
|
|
.typeText(composeInput, 'hi this is another toot', {paste: true})
|
|
|
|
.click(contentWarningButton)
|
|
|
|
.typeText(composeContentWarning, 'content warning!', {paste: true})
|
|
|
|
.click(contentWarningButton)
|
|
|
|
.expect(composeContentWarning.exists).notOk()
|
|
|
|
.click(composeButton)
|
2018-04-14 19:47:53 +02:00
|
|
|
.expect(getNthStatus(0).innerText).contains('hi this is another toot', {timeout: 30000})
|
|
|
|
.expect(getNthStatus(0).innerText).notContains('content warning!')
|
2018-04-12 07:55:11 +02:00
|
|
|
.expect(getNthStatus(0).find('.status-content').innerText).contains('hi this is another toot')
|
|
|
|
})
|