2018-03-04 00:12:48 +00:00
|
|
|
import {
|
|
|
|
composeContentWarning, composeInput, composeLengthIndicator, contentWarningButton, homeNavButton,
|
|
|
|
notificationsNavButton
|
|
|
|
} from '../utils'
|
2018-05-26 20:51:41 +00:00
|
|
|
import { loginAsFoobar } from '../roles'
|
2018-03-04 00:12:48 +00:00
|
|
|
|
2018-03-07 05:32:51 +00:00
|
|
|
fixture`015-compose-content-warnings.js`
|
2018-03-04 00:12:48 +00:00
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
test('Changes content warnings', async t => {
|
2018-05-26 20:51:41 +00:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeContentWarning.exists).notOk()
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-label')).eql('Add content warning')
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-pressed')).eql('false')
|
|
|
|
.click(contentWarningButton)
|
|
|
|
.expect(composeContentWarning.exists).ok()
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-label')).eql('Remove content warning')
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-pressed')).eql('true')
|
2018-08-30 04:42:57 +00:00
|
|
|
.typeText(composeContentWarning, 'hello content warning', { paste: true })
|
|
|
|
.typeText(composeInput, 'secret text', { paste: true })
|
2018-03-04 00:12:48 +00:00
|
|
|
.click(notificationsNavButton)
|
|
|
|
.click(homeNavButton)
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-label')).eql('Remove content warning')
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-pressed')).eql('true')
|
|
|
|
.expect(composeContentWarning.value).eql('hello content warning')
|
|
|
|
.expect(composeInput.value).eql('secret text')
|
|
|
|
.selectText(composeInput)
|
|
|
|
.pressKey('delete')
|
|
|
|
.selectText(composeContentWarning)
|
|
|
|
.pressKey('delete')
|
|
|
|
.expect(composeContentWarning.value).eql('')
|
|
|
|
.expect(composeInput.value).eql('')
|
|
|
|
.click(contentWarningButton)
|
|
|
|
.expect(composeContentWarning.exists).notOk()
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-label')).eql('Add content warning')
|
|
|
|
.expect(contentWarningButton.getAttribute('aria-pressed')).eql('false')
|
|
|
|
})
|
|
|
|
|
|
|
|
test('Considers content warnings for length limits', async t => {
|
2018-05-26 20:51:41 +00:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeLengthIndicator.innerText).eql('500')
|
|
|
|
.click(contentWarningButton)
|
2018-08-30 04:42:57 +00:00
|
|
|
.typeText(composeContentWarning, 'my content warning', { paste: true })
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeLengthIndicator.innerText).eql('482')
|
2018-08-30 04:42:57 +00:00
|
|
|
.typeText(composeInput, 'secret text', { paste: true })
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeLengthIndicator.innerText).eql('471')
|
|
|
|
.selectText(composeContentWarning)
|
|
|
|
.pressKey('delete')
|
|
|
|
.expect(composeLengthIndicator.innerText).eql('489')
|
|
|
|
.selectText(composeInput)
|
|
|
|
.pressKey('delete')
|
|
|
|
.expect(composeLengthIndicator.innerText).eql('500')
|
|
|
|
})
|
|
|
|
|
2018-03-29 01:37:53 +00:00
|
|
|
test('Content warning goes away if you hide it', async t => {
|
2018-05-26 20:51:41 +00:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-04 00:12:48 +00:00
|
|
|
.click(contentWarningButton)
|
2018-03-29 01:37:53 +00:00
|
|
|
.expect(composeContentWarning.value).eql('')
|
2018-08-30 04:42:57 +00:00
|
|
|
.typeText(composeContentWarning, 'yo', { paste: true })
|
2018-03-29 01:37:53 +00:00
|
|
|
.expect(composeContentWarning.value).eql('yo')
|
|
|
|
.expect(composeLengthIndicator.innerText).eql('498')
|
2018-03-04 00:12:48 +00:00
|
|
|
.click(contentWarningButton)
|
2018-03-29 01:37:53 +00:00
|
|
|
.expect(composeContentWarning.exists).notOk()
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeLengthIndicator.innerText).eql('500')
|
|
|
|
.click(contentWarningButton)
|
2018-03-29 01:37:53 +00:00
|
|
|
.expect(composeContentWarning.value).eql('')
|
2018-03-04 00:12:48 +00:00
|
|
|
.expect(composeLengthIndicator.innerText).eql('500')
|
2018-03-04 00:32:10 +00:00
|
|
|
})
|