2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-03-10 13:33:30 +01:00
|
|
|
describe StatusesHelper do
|
|
|
|
describe 'status_text_summary' do
|
|
|
|
context 'with blank text' do
|
|
|
|
let(:status) { Status.new(spoiler_text: '') }
|
|
|
|
|
|
|
|
it 'returns immediately with nil' do
|
|
|
|
result = helper.status_text_summary(status)
|
|
|
|
expect(result).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with present text' do
|
|
|
|
let(:status) { Status.new(spoiler_text: 'SPOILERS!!!') }
|
|
|
|
|
|
|
|
it 'returns the content warning' do
|
|
|
|
result = helper.status_text_summary(status)
|
|
|
|
expect(result).to eq(I18n.t('statuses.content_warning', warning: 'SPOILERS!!!'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-09-03 17:34:09 +02:00
|
|
|
describe '#media_summary' do
|
|
|
|
it 'describes the media on a status' do
|
|
|
|
status = Fabricate :status
|
|
|
|
Fabricate :media_attachment, status: status, type: :video
|
|
|
|
Fabricate :media_attachment, status: status, type: :audio
|
|
|
|
Fabricate :media_attachment, status: status, type: :image
|
|
|
|
|
|
|
|
result = helper.media_summary(status)
|
|
|
|
|
|
|
|
expect(result).to eq('Attached: 1 image · 1 video · 1 audio')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-04 16:58:11 +01:00
|
|
|
describe 'fa_visibility_icon' do
|
|
|
|
context 'with a status that is public' do
|
|
|
|
let(:status) { Status.new(visibility: 'public') }
|
|
|
|
|
|
|
|
it 'returns the correct fa icon' do
|
|
|
|
result = helper.fa_visibility_icon(status)
|
|
|
|
|
2024-08-08 00:53:15 +02:00
|
|
|
expect(result).to match('material-globe')
|
2023-03-04 16:58:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a status that is unlisted' do
|
|
|
|
let(:status) { Status.new(visibility: 'unlisted') }
|
|
|
|
|
|
|
|
it 'returns the correct fa icon' do
|
|
|
|
result = helper.fa_visibility_icon(status)
|
|
|
|
|
2024-08-08 00:53:15 +02:00
|
|
|
expect(result).to match('material-lock_open')
|
2023-03-04 16:58:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a status that is private' do
|
|
|
|
let(:status) { Status.new(visibility: 'private') }
|
|
|
|
|
|
|
|
it 'returns the correct fa icon' do
|
|
|
|
result = helper.fa_visibility_icon(status)
|
|
|
|
|
2024-08-08 00:53:15 +02:00
|
|
|
expect(result).to match('material-lock')
|
2023-03-04 16:58:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a status that is direct' do
|
|
|
|
let(:status) { Status.new(visibility: 'direct') }
|
|
|
|
|
|
|
|
it 'returns the correct fa icon' do
|
|
|
|
result = helper.fa_visibility_icon(status)
|
|
|
|
|
2024-08-08 00:53:15 +02:00
|
|
|
expect(result).to match('material-alternate_email')
|
2023-03-04 16:58:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-23 06:05:52 +02:00
|
|
|
describe '#stream_link_target' do
|
|
|
|
it 'returns nil if it is not an embedded view' do
|
|
|
|
set_not_embedded_view
|
|
|
|
|
|
|
|
expect(helper.stream_link_target).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns _blank if it is an embedded view' do
|
|
|
|
set_embedded_view
|
|
|
|
|
|
|
|
expect(helper.stream_link_target).to eq '_blank'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_not_embedded_view
|
2019-07-07 16:16:51 +02:00
|
|
|
params[:controller] = "not_#{StatusesHelper::EMBEDDED_CONTROLLER}"
|
|
|
|
params[:action] = "not_#{StatusesHelper::EMBEDDED_ACTION}"
|
2017-04-23 06:05:52 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_embedded_view
|
2019-07-07 16:16:51 +02:00
|
|
|
params[:controller] = StatusesHelper::EMBEDDED_CONTROLLER
|
|
|
|
params[:action] = StatusesHelper::EMBEDDED_ACTION
|
2017-04-23 06:05:52 +02:00
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|