Sha256: 15f99ce38b171148568e79721a05cbbb2b4b82ca2d7b71771143f1f782337844

Contents?: true

Size: 1.44 KB

Versions: 9

Compression:

Stored size: 1.44 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(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

9 entries across 9 versions & 1 rubygems

Version Path
geoblacklight-0.7.0 spec/controllers/download_controller_spec.rb
geoblacklight-0.6.2 spec/controllers/download_controller_spec.rb
geoblacklight-0.6.1 spec/controllers/download_controller_spec.rb
geoblacklight-0.6.0 spec/controllers/download_controller_spec.rb
geoblacklight-0.5.1 spec/controllers/download_controller_spec.rb
geoblacklight-0.5.0 spec/controllers/download_controller_spec.rb
geoblacklight-0.4.2 spec/controllers/download_controller_spec.rb
geoblacklight-0.4.1 spec/controllers/download_controller_spec.rb
geoblacklight-0.4.0 spec/controllers/download_controller_spec.rb