|
|
@ -3,6 +3,7 @@ require 'rails_helper' |
|
|
|
RSpec.describe VerifyLinkService, type: :service do |
|
|
|
RSpec.describe VerifyLinkService, type: :service do |
|
|
|
subject { described_class.new } |
|
|
|
subject { described_class.new } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context 'given a local account' do |
|
|
|
let(:account) { Fabricate(:account, username: 'alice') } |
|
|
|
let(:account) { Fabricate(:account, username: 'alice') } |
|
|
|
let(:field) { Account::Field.new(account, 'name' => 'Website', 'value' => 'http://example.com') } |
|
|
|
let(:field) { Account::Field.new(account, 'name' => 'Website', 'value' => 'http://example.com') } |
|
|
|
|
|
|
|
|
|
|
@ -79,4 +80,30 @@ RSpec.describe VerifyLinkService, type: :service do |
|
|
|
expect(field.verified?).to be false |
|
|
|
expect(field.verified?).to be false |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context 'given a remote account' do |
|
|
|
|
|
|
|
let(:account) { Fabricate(:account, username: 'alice', domain: 'example.com', url: 'https://profile.example.com/alice') } |
|
|
|
|
|
|
|
let(:field) { Account::Field.new(account, 'name' => 'Website', 'value' => '<a href="http://example.com" rel="me"><span class="invisible">http://</span><span class="">example.com</span><span class="invisible"></span></a>') } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
before do |
|
|
|
|
|
|
|
stub_request(:get, 'http://example.com').to_return(status: 200, body: html) |
|
|
|
|
|
|
|
subject.call(field) |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context 'when a link contains an <a> back' do |
|
|
|
|
|
|
|
let(:html) do |
|
|
|
|
|
|
|
<<-HTML |
|
|
|
|
|
|
|
<!doctype html> |
|
|
|
|
|
|
|
<body> |
|
|
|
|
|
|
|
<a href="https://profile.example.com/alice" rel="me">Follow me on Mastodon</a> |
|
|
|
|
|
|
|
</body> |
|
|
|
|
|
|
|
HTML |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it 'marks the field as verified' do |
|
|
|
|
|
|
|
expect(field.verified?).to be true |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|