2017-05-04 21:45:18 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe 'The account show page' do
|
2017-05-04 21:45:18 +00:00
|
|
|
it 'has valid opengraph tags' do
|
|
|
|
alice = Fabricate(:account, username: 'alice', display_name: 'Alice')
|
|
|
|
_status = Fabricate(:status, account: alice, text: 'Hello World')
|
|
|
|
|
|
|
|
get '/@alice'
|
|
|
|
|
2024-06-26 13:44:08 +00:00
|
|
|
expect(head_link_icons.size).to eq(3) # Three favicons with sizes
|
2024-04-11 23:37:07 +00:00
|
|
|
|
2017-05-04 21:45:18 +00:00
|
|
|
expect(head_meta_content('og:title')).to match alice.display_name
|
|
|
|
expect(head_meta_content('og:type')).to eq 'profile'
|
|
|
|
expect(head_meta_content('og:image')).to match '.+'
|
2024-09-03 15:28:57 +00:00
|
|
|
expect(head_meta_content('og:url')).to eq short_account_url(username: alice.username)
|
2017-05-04 21:45:18 +00:00
|
|
|
end
|
|
|
|
|
2024-04-11 23:37:07 +00:00
|
|
|
def head_link_icons
|
2024-09-04 17:29:05 +00:00
|
|
|
response
|
|
|
|
.parsed_body
|
|
|
|
.search('html head link[rel=icon]')
|
2024-04-11 23:37:07 +00:00
|
|
|
end
|
|
|
|
|
2017-05-04 21:45:18 +00:00
|
|
|
def head_meta_content(property)
|
2024-09-04 17:29:05 +00:00
|
|
|
response
|
|
|
|
.parsed_body
|
|
|
|
.search("html head meta[property='#{property}']")
|
|
|
|
.attr('content')
|
|
|
|
.text
|
2017-05-04 21:45:18 +00:00
|
|
|
end
|
|
|
|
end
|