Pinafore-Web-Client-Frontend/tests/spec/004-pinned-statuses.js

39 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-02-20 03:24:22 +01:00
import { Selector as $ } from 'testcafe'
import { communityNavButton, getNthPinnedStatus, getUrl } from '../utils'
import { loginAsFoobar } from '../roles'
2018-02-20 03:24:22 +01:00
2018-03-07 06:32:51 +01:00
fixture`004-pinned-statuses.js`
2018-02-20 03:25:59 +01:00
.page`http://localhost:4002`
2018-02-20 03:24:22 +01:00
test("shows a user's pinned statuses", async t => {
await loginAsFoobar(t)
await t
.click(communityNavButton)
2018-02-20 03:24:22 +01:00
.expect(getUrl()).contains('/community')
.click($('a[href="/pinned"]'))
2018-02-20 03:24:22 +01:00
.expect(getUrl()).contains('/pinned')
.expect($('.status-article').getAttribute('aria-posinset')).eql('1')
2018-02-20 03:24:22 +01:00
.expect($('.status-article').getAttribute('aria-setsize')).eql('1')
.expect($('.status-article .status-content').innerText).contains('this is unlisted')
})
test("shows pinned statuses on a user's account page", async t => {
await loginAsFoobar(t)
await t
2018-02-20 03:24:22 +01:00
.navigateTo('/accounts/2')
.expect(getNthPinnedStatus(1).getAttribute('aria-posinset')).eql('1')
.expect(getNthPinnedStatus(1).getAttribute('aria-setsize')).eql('1')
.expect(getNthPinnedStatus(1).innerText).contains('this is unlisted')
2018-02-20 03:24:22 +01:00
})
test("shows pinned statuses on a user's account page 2", async t => {
await loginAsFoobar(t)
await t
2018-02-20 03:24:22 +01:00
.navigateTo('/accounts/3')
.expect(getNthPinnedStatus(1).getAttribute('aria-posinset')).eql('1')
.expect(getNthPinnedStatus(1).getAttribute('aria-setsize')).eql('2')
.expect(getNthPinnedStatus(1).innerText).contains('pinned toot 1')
.expect(getNthPinnedStatus(2).getAttribute('aria-setsize')).eql('2')
.expect(getNthPinnedStatus(2).innerText).contains('pinned toot 2')
2018-02-20 03:25:59 +01:00
})