cartodb-4.42/spec/lib/carto/storage_options/local_spec.rb

71 lines
1.5 KiB
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
require 'spec_helper_min'
require 'tempfile'
require 'helpers/subdomainless_helper'
describe Carto::StorageOptions::Local do
# Just here to allow subdomainless helpers to work
def host!(_) end
shared_examples_for 'upload' do
before(:all) do
@prefix = unique_name('prefix')
@storage = Carto::StorageOptions::Local.new(@prefix)
@storage.stubs(:public_uploaded_assets_path).returns(upload_path)
@file = Tempfile.new('test')
@file.write('wadus')
@file.close
@path, @url = @storage.upload('123', @file)
end
it 'uploads a file' do
File.exists?(@path).should be_true
open(@path).read.should eq 'wadus'
end
it 'deletes source file' do
File.exists?(@file.path).should be_false
end
it 'url starts with domain/uploads/' do
@url.should start_with "/uploads/#{@prefix}/123/"
end
it 'url should not contain filesystem paths' do
@url.should_not include '/tmp'
@url.should_not include '/carto_uploads'
end
end
shared_examples_for 'upload paths' do
describe 'with default path' do
let(:upload_path) { 'public/uploads' }
it_behaves_like 'upload'
end
describe 'with custom path' do
let(:upload_path) { '/tmp/carto_uploads' }
it_behaves_like 'upload'
end
end
describe 'domainful' do
before(:each) do
stub_domainful('org')
end
it_behaves_like 'upload paths'
end
describe 'subdomainless' do
before(:each) do
stub_subdomainless
end
it_behaves_like 'upload paths'
end
end