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