2018-03-04 23:31:31 +00:00
|
|
|
import { getNthStatus, getUrl } from '../utils'
|
2018-05-26 21:51:41 +01:00
|
|
|
import { loginAsFoobar } from '../roles'
|
2018-03-04 23:31:31 +00:00
|
|
|
import { Selector as $ } from 'testcafe'
|
|
|
|
|
2018-03-07 05:32:51 +00:00
|
|
|
fixture`016-external-links.js`
|
2018-03-04 23:31:31 +00:00
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
function getAnchor (nthStatus, nthAnchor) {
|
|
|
|
return getNthStatus(nthStatus).find('.status-content').find('a').nth(nthAnchor)
|
|
|
|
}
|
|
|
|
|
|
|
|
function getAnchorInProfile (n) {
|
|
|
|
return $('.account-profile-note').find('a').nth(n)
|
|
|
|
}
|
|
|
|
|
|
|
|
test('converts external links in statuses', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-04 23:31:31 +00:00
|
|
|
.hover(getNthStatus(0))
|
|
|
|
.navigateTo('/accounts/4')
|
|
|
|
.expect(getUrl()).contains('/accounts/4')
|
|
|
|
.expect(getAnchor(0, 0).getAttribute('href')).eql('/accounts/1')
|
|
|
|
.expect(getAnchor(0, 1).getAttribute('href')).eql('/accounts/3')
|
|
|
|
.expect(getAnchor(1, 0).getAttribute('href')).eql('https://joinmastodon.org')
|
|
|
|
.expect(getAnchor(1, 0).getAttribute('title')).eql('https://joinmastodon.org')
|
|
|
|
.expect(getAnchor(1, 0).getAttribute('rel')).eql('nofollow noopener')
|
|
|
|
.expect(getAnchor(1, 1).getAttribute('href')).eql('https://github.com/tootsuite/mastodon')
|
|
|
|
.expect(getAnchor(1, 1).getAttribute('title')).eql('https://github.com/tootsuite/mastodon')
|
|
|
|
.expect(getAnchor(1, 1).getAttribute('rel')).eql('nofollow noopener')
|
|
|
|
.expect(getAnchor(2, 0).getAttribute('href')).eql('/tags/kitten')
|
|
|
|
.expect(getAnchor(2, 1).getAttribute('href')).eql('/tags/kitties')
|
|
|
|
})
|
|
|
|
|
|
|
|
test('converts external links in profiles', async t => {
|
2018-05-26 21:51:41 +01:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-04 23:31:31 +00:00
|
|
|
.hover(getNthStatus(0))
|
|
|
|
.navigateTo('/accounts/4')
|
|
|
|
.expect(getUrl()).contains('/accounts/4')
|
|
|
|
.expect($('.account-profile-name').innerText).eql('External Lonk')
|
|
|
|
.expect($('.account-profile-name a').getAttribute('href')).eql('http://localhost:3000/@ExternalLinks')
|
|
|
|
.expect($('.account-profile-name a').getAttribute('rel')).eql('nofollow noopener')
|
|
|
|
.expect(getAnchorInProfile(0).getAttribute('href')).eql('https://joinmastodon.org')
|
|
|
|
.expect(getAnchorInProfile(0).getAttribute('rel')).eql('nofollow noopener')
|
|
|
|
.expect(getAnchorInProfile(1).getAttribute('href')).eql('http://localhost:3000/tags/cat')
|
|
|
|
.expect(getAnchorInProfile(2).getAttribute('href')).eql('http://localhost:3000/tags/mastocats')
|
|
|
|
.expect(getAnchorInProfile(3).getAttribute('href')).eql('http://localhost:3000/@quux')
|
|
|
|
})
|