98 lines
3 KiB
Ruby
98 lines
3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe UploadService do
|
|
describe 'File service' do
|
|
before do
|
|
@user = create(:user)
|
|
@project = create(:project, creator_id: @user.id, namespace: @user.namespace)
|
|
end
|
|
|
|
context 'for valid gif file' do
|
|
before do
|
|
gif = fixture_file_upload('spec/fixtures/banana_sample.gif', 'image/gif')
|
|
@link_to_file = upload_file(@project, gif)
|
|
end
|
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
it { expect(@link_to_file).to have_value('banana_sample') }
|
|
it { expect(@link_to_file[:url]).to match('banana_sample.gif') }
|
|
end
|
|
|
|
context 'for valid png file' do
|
|
before do
|
|
png = fixture_file_upload('spec/fixtures/dk.png',
|
|
'image/png')
|
|
@link_to_file = upload_file(@project, png)
|
|
end
|
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
it { expect(@link_to_file).to have_value('dk') }
|
|
it { expect(@link_to_file[:url]).to match('dk.png') }
|
|
end
|
|
|
|
context 'for valid jpg file' do
|
|
before do
|
|
jpg = fixture_file_upload('spec/fixtures/rails_sample.jpg', 'image/jpg')
|
|
@link_to_file = upload_file(@project, jpg)
|
|
end
|
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
it { expect(@link_to_file).to have_value('rails_sample') }
|
|
it { expect(@link_to_file[:url]).to match('rails_sample.jpg') }
|
|
end
|
|
|
|
context 'for txt file' do
|
|
before do
|
|
txt = fixture_file_upload('spec/fixtures/doc_sample.txt', 'text/plain')
|
|
@link_to_file = upload_file(@project, txt)
|
|
end
|
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
it { expect(@link_to_file).to have_value('doc_sample.txt') }
|
|
it { expect(@link_to_file[:url]).to match('doc_sample.txt') }
|
|
end
|
|
|
|
context 'for too large a file' do
|
|
before do
|
|
txt = fixture_file_upload('spec/fixtures/doc_sample.txt', 'text/plain')
|
|
allow(txt).to receive(:size) { 1000.megabytes.to_i }
|
|
@link_to_file = upload_file(@project, txt)
|
|
end
|
|
|
|
it { expect(@link_to_file).to eq({}) }
|
|
end
|
|
|
|
describe '#override_max_attachment_size' do
|
|
let(:txt) { fixture_file_upload('spec/fixtures/doc_sample.txt', 'text/plain') }
|
|
let(:service) { described_class.new(@project, txt, FileUploader) }
|
|
|
|
subject { service.execute.to_h }
|
|
|
|
before do
|
|
allow(txt).to receive(:size) { 100.megabytes.to_i }
|
|
end
|
|
|
|
it 'allows the upload' do
|
|
service.override_max_attachment_size = 101.megabytes
|
|
|
|
expect(subject.keys).to eq(%i(alt url markdown))
|
|
end
|
|
|
|
it 'disallows the upload' do
|
|
service.override_max_attachment_size = 99.megabytes
|
|
|
|
expect(subject).to eq({})
|
|
end
|
|
end
|
|
end
|
|
|
|
def upload_file(project, file)
|
|
described_class.new(project, file, FileUploader).execute.to_h
|
|
end
|
|
end
|