mastodon/spec/helpers/media_component_helper_spec.rb
2025-09-02 10:59:56 -04:00

49 lines
1.2 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe MediaComponentHelper do
before { helper.extend controller_helpers }
let(:media) { Fabricate.build(:media_attachment, type:, status: Fabricate.build(:status)) }
describe 'render_video_component' do
let(:type) { :video }
let(:result) { helper.render_video_component(media.status) }
it 'renders a react component for the video' do
expect(parsed_html.div['data-component']).to eq('Video')
end
end
describe 'render_audio_component' do
let(:type) { :audio }
let(:result) { helper.render_audio_component(media.status) }
it 'renders a react component for the audio' do
expect(parsed_html.div['data-component']).to eq('Audio')
end
end
describe 'render_media_gallery_component' do
let(:type) { :audio }
let(:result) { helper.render_media_gallery_component(media.status) }
it 'renders a react component for the media gallery' do
expect(parsed_html.div['data-component']).to eq('MediaGallery')
end
end
private
def parsed_html
Nokogiri::Slop(result)
end
def controller_helpers
Module.new do
def current_account = Account.last
end
end
end