This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-09-05 17:46:36 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe MediaAttachment, type: :model do
|
2017-04-19 23:21:00 +02:00
|
|
|
describe 'animated gif conversion' do
|
|
|
|
let(:media) { MediaAttachment.create(account: Fabricate(:account), file: attachment_fixture('avatar.gif')) }
|
2016-09-09 20:04:34 +02:00
|
|
|
|
2017-04-19 23:21:00 +02:00
|
|
|
it 'sets type to gifv' do
|
|
|
|
expect(media.type).to eq 'gifv'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'converts original file to mp4' do
|
|
|
|
expect(media.file_content_type).to eq 'video/mp4'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'non-animated gif non-conversion' do
|
|
|
|
let(:media) { MediaAttachment.create(account: Fabricate(:account), file: attachment_fixture('attachment.gif')) }
|
|
|
|
|
|
|
|
it 'sets type to image' do
|
|
|
|
expect(media.type).to eq 'image'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'leaves original file as-is' do
|
|
|
|
expect(media.file_content_type).to eq 'image/gif'
|
|
|
|
end
|
|
|
|
end
|
2016-09-05 17:46:36 +02:00
|
|
|
end
|