2017-05-04 21:45:18 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-15 00:37:00 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe 'statuses/show.html.haml' do
|
2024-04-15 15:24:31 +00:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice', display_name: 'Alice') }
|
|
|
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello World') }
|
|
|
|
|
2017-04-16 01:40:33 +00:00
|
|
|
before do
|
2024-09-03 15:23:57 +00:00
|
|
|
view.extend view_helpers
|
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
assign(:instance_presenter, InstancePresenter.new)
|
2017-04-16 01:40:33 +00:00
|
|
|
|
2023-10-19 14:55:06 +00:00
|
|
|
Fabricate(:media_attachment, account: alice, status: status, type: :video)
|
2017-04-22 15:29:46 +00:00
|
|
|
|
|
|
|
assign(:status, status)
|
|
|
|
assign(:account, alice)
|
2018-04-23 17:27:35 +00:00
|
|
|
assign(:descendant_threads, [])
|
2024-04-15 15:24:31 +00:00
|
|
|
end
|
2017-04-22 15:29:46 +00:00
|
|
|
|
2024-04-15 15:24:31 +00:00
|
|
|
it 'has valid opengraph tags' do
|
2017-04-22 15:29:46 +00:00
|
|
|
render
|
|
|
|
|
2024-04-12 09:50:46 +00:00
|
|
|
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">})
|
2017-04-22 15:29:46 +00:00
|
|
|
end
|
2021-10-13 13:27:19 +00:00
|
|
|
|
|
|
|
it 'has twitter player tag' do
|
|
|
|
render
|
|
|
|
|
2024-04-12 09:50:46 +00:00
|
|
|
expect(header_tags)
|
|
|
|
.to match(%r{<meta content="http://.+/media/.+/player" property="twitter:player">})
|
|
|
|
.and match(/<meta content="player" property="twitter:card">/)
|
|
|
|
end
|
2021-10-13 13:27:19 +00:00
|
|
|
|
2024-04-12 09:50:46 +00:00
|
|
|
def header_tags
|
|
|
|
view.content_for(:header_tags)
|
2021-10-13 13:27:19 +00:00
|
|
|
end
|
2024-09-03 15:23:57 +00:00
|
|
|
|
|
|
|
def view_helpers
|
|
|
|
Module.new do
|
|
|
|
def api_oembed_url(_) = ''
|
|
|
|
def show_landing_strip? = true
|
|
|
|
def site_title = 'example site'
|
|
|
|
def site_hostname = 'example.com'
|
|
|
|
def full_asset_url(_) = '//asset.host/image.svg'
|
|
|
|
def current_account = nil
|
|
|
|
def single_user_mode? = false
|
|
|
|
def local_time = nil
|
|
|
|
def local_time_ago = nil
|
|
|
|
end
|
|
|
|
end
|
2017-04-16 01:40:33 +00:00
|
|
|
end
|