You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
|
|
describe 'statuses/show.html.haml', :without_verify_partial_doubles do |
|
let(:alice) { Fabricate(:account, username: 'alice', display_name: 'Alice') } |
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello World') } |
|
|
|
before do |
|
allow(view).to receive_messages(api_oembed_url: '', site_title: 'example site', site_hostname: 'example.com', full_asset_url: '//asset.host/image.svg', current_account: nil, single_user_mode?: false) |
|
allow(view).to receive(:local_time) |
|
allow(view).to receive(:local_time_ago) |
|
assign(:instance_presenter, InstancePresenter.new) |
|
|
|
Fabricate(:media_attachment, account: alice, status: status, type: :video) |
|
|
|
assign(:status, status) |
|
assign(:account, alice) |
|
assign(:descendant_threads, []) |
|
end |
|
|
|
it 'has valid opengraph tags' do |
|
render |
|
|
|
expect(header_tags) |
|
.to match(/<meta content=".+" property="og:title">/) |
|
.and match(/<meta content="article" property="og:type">/) |
|
.and match(/<meta content=".+" property="og:image">/) |
|
.and match(%r{<meta content="http://.+" property="og:url">}) |
|
end |
|
|
|
it 'has twitter player tag' do |
|
render |
|
|
|
expect(header_tags) |
|
.to match(%r{<meta content="http://.+/media/.+/player" property="twitter:player">}) |
|
.and match(/<meta content="player" property="twitter:card">/) |
|
end |
|
|
|
def header_tags |
|
view.content_for(:header_tags) |
|
end |
|
end
|
|
|