2017-05-05 07:45:18 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-15 10:37:00 +10:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 15:12:25 +10:00
|
|
|
RSpec.describe 'statuses/show.html.haml' do
|
2024-04-16 01:24:31 +10:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice', display_name: 'Alice') }
|
|
|
|
let(:status) { Fabricate(:status, account: alice, text: 'Hello World') }
|
|
|
|
|
2017-04-16 11:40:33 +10:00
|
|
|
before do
|
2024-09-04 01:23:57 +10:00
|
|
|
view.extend view_helpers
|
|
|
|
|
2018-07-29 03:25:33 +10:00
|
|
|
assign(:instance_presenter, InstancePresenter.new)
|
2017-04-16 11:40:33 +10:00
|
|
|
|
2023-10-20 01:55:06 +11:00
|
|
|
Fabricate(:media_attachment, account: alice, status: status, type: :video)
|
2017-04-23 01:29:46 +10:00
|
|
|
|
|
|
|
assign(:status, status)
|
|
|
|
assign(:account, alice)
|
2018-04-24 03:27:35 +10:00
|
|
|
assign(:descendant_threads, [])
|
2024-04-16 01:24:31 +10:00
|
|
|
end
|
2017-04-23 01:29:46 +10:00
|
|
|
|
2024-04-16 01:24:31 +10:00
|
|
|
it 'has valid opengraph tags' do
|
2017-04-23 01:29:46 +10:00
|
|
|
render
|
|
|
|
|
2024-04-12 19:50:46 +10: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-23 01:29:46 +10:00
|
|
|
end
|
2021-10-14 00:27:19 +11:00
|
|
|
|
|
|
|
it 'has twitter player tag' do
|
|
|
|
render
|
|
|
|
|
2024-04-12 19:50:46 +10: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-14 00:27:19 +11:00
|
|
|
|
2024-04-12 19:50:46 +10:00
|
|
|
def header_tags
|
|
|
|
view.content_for(:header_tags)
|
2021-10-14 00:27:19 +11:00
|
|
|
end
|
2024-09-04 01:23:57 +10: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 11:40:33 +10:00
|
|
|
end
|