debian-mirror-gitlab/spec/services/upload_service_spec.rb

74 lines
2.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe UploadService, services: true do
2015-04-26 12:48:37 +05:30
describe 'File service' do
before do
2017-08-17 22:00:37 +05:30
@user = create(:user)
@project = create(:empty_project, creator_id: @user.id, namespace: @user.namespace)
2015-04-26 12:48:37 +05:30
end
context 'for valid gif file' do
before do
gif = fixture_file_upload(Rails.root + 'spec/fixtures/banana_sample.gif', 'image/gif')
2017-08-17 22:00:37 +05:30
@link_to_file = upload_file(@project, gif)
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file).to have_key(:alt) }
it { expect(@link_to_file).to have_key(:url) }
2015-04-26 12:48:37 +05:30
it { expect(@link_to_file).to have_value('banana_sample') }
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file[:url]).to match('banana_sample.gif') }
2015-04-26 12:48:37 +05:30
end
2015-09-11 14:41:01 +05:30
context 'for valid png file' do
2015-04-26 12:48:37 +05:30
before do
png = fixture_file_upload(Rails.root + 'spec/fixtures/dk.png',
'image/png')
2017-08-17 22:00:37 +05:30
@link_to_file = upload_file(@project, png)
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file).to have_key(:alt) }
it { expect(@link_to_file).to have_key(:url) }
2015-04-26 12:48:37 +05:30
it { expect(@link_to_file).to have_value('dk') }
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file[:url]).to match('dk.png') }
2015-04-26 12:48:37 +05:30
end
2015-09-11 14:41:01 +05:30
context 'for valid jpg file' do
2015-04-26 12:48:37 +05:30
before do
jpg = fixture_file_upload(Rails.root + 'spec/fixtures/rails_sample.jpg', 'image/jpg')
2017-08-17 22:00:37 +05:30
@link_to_file = upload_file(@project, jpg)
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file).to have_key(:alt) }
it { expect(@link_to_file).to have_key(:url) }
2015-04-26 12:48:37 +05:30
it { expect(@link_to_file).to have_value('rails_sample') }
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file[:url]).to match('rails_sample.jpg') }
2015-04-26 12:48:37 +05:30
end
context 'for txt file' do
before do
txt = fixture_file_upload(Rails.root + 'spec/fixtures/doc_sample.txt', 'text/plain')
2017-08-17 22:00:37 +05:30
@link_to_file = upload_file(@project, txt)
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file).to have_key(:alt) }
it { expect(@link_to_file).to have_key(:url) }
2015-04-26 12:48:37 +05:30
it { expect(@link_to_file).to have_value('doc_sample.txt') }
2015-09-25 12:07:36 +05:30
it { expect(@link_to_file[:url]).to match('doc_sample.txt') }
2015-04-26 12:48:37 +05:30
end
context 'for too large a file' do
before do
txt = fixture_file_upload(Rails.root + 'spec/fixtures/doc_sample.txt', 'text/plain')
allow(txt).to receive(:size) { 1000.megabytes.to_i }
2017-08-17 22:00:37 +05:30
@link_to_file = upload_file(@project, txt)
2015-04-26 12:48:37 +05:30
end
it { expect(@link_to_file).to eq(nil) }
end
end
2017-08-17 22:00:37 +05:30
def upload_file(project, file)
described_class.new(project, file, FileUploader).execute
2015-04-26 12:48:37 +05:30
end
end