Sha256: dcaba4825bcbeb8039e0591690bdc091bfa8d8bf64c3bef6f4908739a8d42404
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
require 'spec_helper' describe Geoblacklight::DownloadController, type: :controller do describe '#file' do describe 'restricted file' do it 'should redirect to login for authentication' do get :file, id: 'stanford-cg357zz0321-shapefile', format: 'zip' expect(response.status).to eq 401 end end describe 'public file' do it 'should initiate download' do expect(controller).to receive(:render) expect(controller).to receive(:send_file) get :file, id: 'mit-us-ma-e25zcta5dct-2000-shapefile', format: 'zip' expect(response.status).to eq 200 end end end describe '#show' do describe 'restricted file' do it 'should redirect to login for authentication' do get 'show', id: 'stanford-cg357zz0321', format: 'json' expect(response.status).to eq 401 end end describe 'public file' do it 'should initiate download creation' do get 'show', id: 'mit-us-ma-e25zcta5dct-2000' expect(response.status).to eq 200 end end end describe '#hgl' do it 'should request file' do expect_any_instance_of(Geoblacklight::HglDownload).to receive(:get).and_return('success') get :hgl, id: 'harvard-g7064-s2-1834-k3', email: 'foo@example.com' expect(response.status).to eq 200 end it 'should render form' do get :hgl, id: 'harvard-g7064-s2-1834-k3' expect(response).to render_template('hgl') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
geoblacklight-0.7.1 | spec/controllers/download_controller_spec.rb |