pinafore/tests/spec/013-compose-media.js

67 lines
2.7 KiB
JavaScript
Raw Normal View History

import {
composeInput, getNthDeleteMediaButton, getNthMedia, mediaButton,
uploadKittenImage
} from '../utils'
import { loginAsFoobar } from '../roles'
2018-03-03 06:55:04 +01:00
2018-03-07 06:32:51 +01:00
fixture`013-compose-media.js`
2018-03-03 06:55:04 +01:00
.page`http://localhost:4002`
test('inserts media', async t => {
await loginAsFoobar(t)
await t
2018-03-03 06:55:04 +01:00
.expect(mediaButton.hasAttribute('disabled')).notOk()
await (uploadKittenImage(1)())
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
await (uploadKittenImage(2)())
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
.expect(getNthMedia(2).getAttribute('alt')).eql('kitten2.jpg')
.expect(mediaButton.hasAttribute('disabled')).notOk()
await (uploadKittenImage(3)())
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
.expect(getNthMedia(2).getAttribute('alt')).eql('kitten2.jpg')
.expect(getNthMedia(3).getAttribute('alt')).eql('kitten3.jpg')
.expect(mediaButton.hasAttribute('disabled')).notOk()
await (uploadKittenImage(4)())
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
.expect(getNthMedia(2).getAttribute('alt')).eql('kitten2.jpg')
.expect(getNthMedia(3).getAttribute('alt')).eql('kitten3.jpg')
.expect(getNthMedia(4).getAttribute('alt')).eql('kitten4.jpg')
.expect(mediaButton.getAttribute('disabled')).eql('')
2018-03-03 19:27:14 +01:00
.click(getNthDeleteMediaButton(4))
.click(getNthDeleteMediaButton(3))
.click(getNthDeleteMediaButton(2))
.click(getNthDeleteMediaButton(1))
2018-03-11 20:10:59 +01:00
.expect(mediaButton.hasAttribute('disabled')).notOk()
2018-03-03 06:55:04 +01:00
})
test('removes media', async t => {
await loginAsFoobar(t)
await t
2018-03-14 04:00:35 +01:00
.expect(mediaButton.exists).ok()
2018-03-03 06:55:04 +01:00
await (uploadKittenImage(1)())
2018-03-04 00:44:43 +01:00
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
2018-03-03 06:55:04 +01:00
await (uploadKittenImage(2)())
await t.expect(getNthMedia(1).getAttribute('alt')).eql('kitten1.jpg')
.expect(getNthMedia(2).getAttribute('alt')).eql('kitten2.jpg')
2018-03-03 19:27:14 +01:00
.click(getNthDeleteMediaButton(2))
2018-03-03 06:55:04 +01:00
.expect(getNthMedia(2).exists).notOk()
.expect(getNthMedia(1).exists).ok()
2018-03-03 20:26:10 +01:00
.click(getNthDeleteMediaButton(1))
.expect(getNthMedia(2).exists).notOk()
})
test('changes URLs as media is added/removed', async t => {
await loginAsFoobar(t)
await t
2018-03-14 04:00:35 +01:00
.expect(mediaButton.exists).ok()
2018-03-03 20:26:10 +01:00
await (uploadKittenImage(1)())
await t.expect(composeInput.value).match(/^ http:\/\/localhost:3000\/media\/\S+$/)
await (uploadKittenImage(1)())
await t.expect(composeInput.value).match(/^ http:\/\/localhost:3000\/media\/\S+ http:\/\/localhost:3000\/media\/\S+$/)
.click(getNthDeleteMediaButton(1))
.expect(composeInput.value).match(/^ http:\/\/localhost:3000\/media\/\S+$/)
.click(getNthDeleteMediaButton(1))
.expect(composeInput.value).eql('')
2018-03-03 06:55:04 +01:00
})