0
0
Fork 0

Fix failed profile verification when rel attribute including values other than me (#8733)

This commit is contained in:
Yamagishi Kazutoshi 2018-09-19 23:47:31 +09:00 committed by Eugen Rochko
parent d149c2dc78
commit 3da1cc7d5e
2 changed files with 16 additions and 1 deletions

View file

@ -26,6 +26,21 @@ RSpec.describe VerifyLinkService, type: :service do
end
end
context 'when a link contains an <a rel="noopener"> back' do
let(:html) do
<<-HTML
<!doctype html>
<body>
<a href="#{ActivityPub::TagManager.instance.url_for(account)}" rel="noopener me" target="_blank">Follow me on Mastodon</a>
</body>
HTML
end
it 'marks the field as verified' do
expect(field.verified?).to be true
end
end
context 'when a link contains a <link> back' do
let(:html) do
<<-HTML