839f893168
* Change public accounts pages to mount the web UI * Fix handling of remote usernames in routes - When logged in, serve web app - When logged out, redirect to permalink - Fix `app-body` class not being set sometimes due to name conflict * Fix missing `multiColumn` prop * Fix failing test * Use `discoverable` attribute to control indexing directives * Fix `<ColumnLoading />` not using `multiColumn` * Add `noindex` to accounts in REST API * Change noindex directive to not be rendered by default before a route is mounted * Add loading indicator for detailed status in web UI * Fix missing indicator appearing while account is loading in web UI
25 lines
716 B
Ruby
25 lines
716 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe 'The account show page' do
|
|
it 'has valid opengraph tags' do
|
|
alice = Fabricate(:account, username: 'alice', display_name: 'Alice')
|
|
_status = Fabricate(:status, account: alice, text: 'Hello World')
|
|
|
|
get '/@alice'
|
|
|
|
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 '.+'
|
|
expect(head_meta_content('og:url')).to match 'http://.+'
|
|
end
|
|
|
|
def head_meta_content(property)
|
|
head_section.meta("[@property='#{property}']")[:content]
|
|
end
|
|
|
|
def head_section
|
|
Nokogiri::Slop(response.body).html.head
|
|
end
|
|
end
|