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