Sha256: 8b335f579f5a3568862ded985563d2f3af3fcbd8fcb8e44c0db1d7ec3da4a860

Contents?: true

Size: 1.86 KB

Versions: 10

Compression:

Stored size: 1.86 KB

Contents

describe 'catalog/index.html.erb', type: :view do
  let(:collection) { build(:collection, id: "abc123") }
  let(:doc) { SolrDocument.new(collection.to_solr) }

  before do
    view.extend Hyrax::CollectionsHelper
    allow(view).to receive(:current_users_collections).and_return([])
    stub_template 'catalog/_search_sidebar.html.erb' => ''
    stub_template 'catalog/_search_header.html.erb' => ''
    allow(view).to receive(:render_opensearch_response_metadata).and_return('')
    allow(view).to receive(:render_grouped_response?).and_return(false)
    allow(view).to receive(:search_session).and_return({})
    allow(view).to receive(:current_search_session).and_return(nil)
    allow(view).to receive(:document_counter_with_offset).and_return(5)
    allow(controller).to receive(:render_bookmarks_control?).and_return(false)

    params[:view] = 'gallery'

    resp = []
    assign(:response, resp)
    allow(resp).to receive(:total_pages).and_return(1)
    allow(resp).to receive(:current_page).and_return(1)
    allow(resp).to receive(:limit_value).and_return(10)
    allow(resp).to receive(:empty?).and_return(false)

    assign(:document_list, [doc])
  end

  context "when user does not have permissions" do
    before { allow(view).to receive(:can?).and_return(false) }
    it 'appears on page without error' do
      render
      expect(rendered).to include(collection.title.first)
      page = Capybara::Node::Simple.new(rendered)
      expect(page).to have_selector("span.fa.fa-cubes.collection-icon-search")
    end
  end
  context "when user has all the permissions" do
    before { allow(view).to receive(:can?).and_return(true) }
    it 'appears on page without error' do
      render
      expect(rendered).to include(collection.title.first)
      page = Capybara::Node::Simple.new(rendered)
      expect(page).to have_selector("span.fa.fa-cubes.collection-icon-search")
    end
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
hyrax-1.1.1 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.1.0 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.5 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.4 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.3 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.2 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.1 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.0.rc2 spec/views/catalog/index.html.erb_spec.rb
hyrax-1.0.0.rc1 spec/views/catalog/index.html.erb_spec.rb
test_hyrax-0.0.1.alpha spec/views/catalog/index.html.erb_spec.rb