about summary refs log tree commit diff
path: root/spec/services
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-09-20 18:36:00 +0200
committerThibaut Girka <thib@sitedethib.com>2018-09-20 18:36:00 +0200
commit343acd96cccb16b1ecdc3a52a8733359d4a92633 (patch)
treeecd2a077b038b864ac7912cba72dd59990fb6258 /spec/services
parentfba0200765c14d0ada47a44b5a8603001c92e069 (diff)
parent50c90a909e400628febd53c805165f1da5ecbfbd (diff)
Merge branch 'master' into glitch-soc/merge-upstream
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/verify_link_service_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/services/verify_link_service_spec.rb b/spec/services/verify_link_service_spec.rb
index acd4e851e..9b04d6136 100644
--- a/spec/services/verify_link_service_spec.rb
+++ b/spec/services/verify_link_service_spec.rb
@@ -7,6 +7,7 @@ RSpec.describe VerifyLinkService, type: :service do
   let(:field)   { Account::Field.new(account, 'name' => 'Website', 'value' => 'http://example.com') }
 
   before do
+    stub_request(:head, 'https://redirect.me/abc').to_return(status: 301, headers: { 'Location' => ActivityPub::TagManager.instance.url_for(account) })
     stub_request(:get, 'http://example.com').to_return(status: 200, body: html)
     subject.call(field)
   end
@@ -56,6 +57,21 @@ RSpec.describe VerifyLinkService, type: :service do
     end
   end
 
+  context 'when a link goes through a redirect back' do
+    let(:html) do
+      <<-HTML
+        <!doctype html>
+        <head>
+          <link type="text/html" href="https://redirect.me/abc" rel="me" />
+        </head>
+      HTML
+    end
+
+    it 'marks the field as verified' do
+      expect(field.verified?).to be true
+    end
+  end
+
   context 'when a link does not contain a link back' do
     let(:html) { '' }