mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-24 07:10:12 -05:00
Some checks failed
Check i18n / check-i18n (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Check formatting / lint (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
Ruby Testing / build (production) (push) Has been cancelled
Ruby Testing / build (test) (push) Has been cancelled
Ruby Testing / test (.ruby-version) (push) Has been cancelled
Ruby Testing / test (3.2) (push) Has been cancelled
Ruby Testing / Libvips tests (.ruby-version) (push) Has been cancelled
Ruby Testing / Libvips tests (3.2) (push) Has been cancelled
Ruby Testing / End to End testing (.ruby-version) (push) Has been cancelled
Ruby Testing / End to End testing (3.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Bundler Audit / security (push) Has been cancelled
81 lines
2.1 KiB
Ruby
81 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.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
|
|
|
|
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
|
|
|
|
describe '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.visibility_icon(status)
|
|
|
|
expect(result).to match('globe')
|
|
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.visibility_icon(status)
|
|
|
|
expect(result).to match('lock_open')
|
|
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.visibility_icon(status)
|
|
|
|
expect(result).to match('lock')
|
|
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.visibility_icon(status)
|
|
|
|
expect(result).to match('alternate_email')
|
|
end
|
|
end
|
|
end
|
|
end
|