2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe Projects::DownloadService do
|
2015-09-25 12:07:36 +05:30
|
|
|
describe 'File service' do
|
|
|
|
before do
|
2017-08-17 22:00:37 +05:30
|
|
|
@user = create(:user)
|
2017-09-10 17:25:29 +05:30
|
|
|
@project = create(:project, creator_id: @user.id, namespace: @user.namespace)
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a URL that is not on whitelist' do
|
|
|
|
before do
|
|
|
|
url = 'https://code.jquery.com/jquery-2.1.4.min.js'
|
|
|
|
@link_to_file = download_file(@project, url)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(@link_to_file).to eq(nil) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for URLs that are on the whitelist' do
|
|
|
|
before do
|
2019-10-12 21:52:04 +05:30
|
|
|
stub_request(:get, 'http://mycompany.fogbugz.com/rails_sample.jpg').to_return(body: File.read(Rails.root + 'spec/fixtures/rails_sample.jpg'))
|
|
|
|
stub_request(:get, 'http://mycompany.fogbugz.com/doc_sample.txt').to_return(body: File.read(Rails.root + 'spec/fixtures/doc_sample.txt'))
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'an image file' do
|
|
|
|
before do
|
|
|
|
url = 'http://mycompany.fogbugz.com/rails_sample.jpg'
|
|
|
|
@link_to_file = download_file(@project, url)
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
|
|
it { expect(@link_to_file[:url]).to match('rails_sample.jpg') }
|
|
|
|
it { expect(@link_to_file[:alt]).to eq('rails_sample') }
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'a txt file' do
|
|
|
|
before do
|
|
|
|
url = 'http://mycompany.fogbugz.com/doc_sample.txt'
|
|
|
|
@link_to_file = download_file(@project, url)
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
it { expect(@link_to_file).to have_key(:alt) }
|
|
|
|
it { expect(@link_to_file).to have_key(:url) }
|
|
|
|
it { expect(@link_to_file[:url]).to match('doc_sample.txt') }
|
|
|
|
it { expect(@link_to_file[:alt]).to eq('doc_sample.txt') }
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def download_file(repository, url)
|
|
|
|
Projects::DownloadService.new(repository, url).execute
|
|
|
|
end
|
|
|
|
end
|