2018-04-15 05:18:48 +00:00
|
|
|
import {
|
|
|
|
accountProfileFollowButton,
|
|
|
|
accountProfileMoreOptionsButton, closeDialogButton,
|
|
|
|
getNthDialogOptionsOption
|
|
|
|
} from '../utils'
|
2018-05-26 20:51:41 +00:00
|
|
|
import { loginAsFoobar } from '../roles'
|
2019-11-09 22:25:26 +00:00
|
|
|
import { unfollowAs } from '../serverActions'
|
2018-04-15 05:18:48 +00:00
|
|
|
|
|
|
|
fixture`115-follow-unfollow.js`
|
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
test('Can follow and unfollow an account from the profile page', async t => {
|
2019-11-09 22:25:26 +00:00
|
|
|
await unfollowAs('foobar', 'baz') // reset
|
2018-05-26 20:51:41 +00:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-04-15 05:18:48 +00:00
|
|
|
.navigateTo('/accounts/5')
|
|
|
|
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Follow')
|
2019-11-09 22:25:26 +00:00
|
|
|
.expect(accountProfileFollowButton.getAttribute('title')).eql('Follow')
|
2018-04-15 05:18:48 +00:00
|
|
|
.click(accountProfileMoreOptionsButton)
|
|
|
|
.expect(getNthDialogOptionsOption(1).innerText).contains('Mention @baz')
|
|
|
|
.expect(getNthDialogOptionsOption(2).innerText).contains('Follow @baz')
|
|
|
|
.click(getNthDialogOptionsOption(2))
|
2019-11-18 02:23:32 +00:00
|
|
|
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Unfollow')
|
2019-11-09 22:25:26 +00:00
|
|
|
.expect(accountProfileFollowButton.getAttribute('title')).eql('Unfollow')
|
2018-04-15 05:18:48 +00:00
|
|
|
.click(accountProfileMoreOptionsButton)
|
|
|
|
.expect(getNthDialogOptionsOption(2).innerText).contains('Unfollow @baz')
|
|
|
|
.click(getNthDialogOptionsOption(2))
|
|
|
|
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Follow')
|
2019-11-09 22:25:26 +00:00
|
|
|
.expect(accountProfileFollowButton.getAttribute('title')).eql('Follow')
|
2018-04-15 05:18:48 +00:00
|
|
|
.click(accountProfileMoreOptionsButton)
|
|
|
|
.expect(getNthDialogOptionsOption(2).innerText).contains('Follow @baz')
|
|
|
|
.click(closeDialogButton)
|
|
|
|
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Follow')
|
2019-11-09 22:25:26 +00:00
|
|
|
.expect(accountProfileFollowButton.getAttribute('title')).eql('Follow')
|
2018-04-15 05:18:48 +00:00
|
|
|
})
|