Sha256: 174179192e395548dbe9bd9dc53447f5079243382b27a9491454361f13737b21

Contents?: true

Size: 1.4 KB

Versions: 7

Compression:

Stored size: 1.4 KB

Contents

require 'spec_helper'

describe Hydra::BatchEdit::SearchService do
  before do
    @login = 'vanessa'
    @session = {:history => [17, 14, 12, 9]}
    @service = Hydra::BatchEdit::SearchService.new(@session, @login)
  end

  it "should get the documents for the first history entry" do
    Search.should_receive(:find).with(17).and_return(Search.new(:query_params=>{:q=>"World Peace"}))
    @service.should_receive(:get_search_results).and_return([:one, [:doc1, :doc2]])
    @service.last_search_documents.should == [:doc1, :doc2]
  end

  describe 'apply_gated_search' do
    before(:each) do
      RoleMapper.stub(:roles).with(@login).and_return(['umg/test.group.1'])
      params = @service.apply_gated_search({}, {})
      @group_query = params[:fq].first.split(' OR ')[1]
    end
    it "should escape slashes in groups" do
      @group_query.should == 'edit_access_group_ssim:umg\/test.group.1'
    end
    it "should allow overriding Solr's access control suffix" do
      module Hydra
        module BatchEdit
          class SearchService
            def solr_access_control_suffix(key)
              "edit_#{key}_customfield"
            end
          end
        end
      end
      @service = Hydra::BatchEdit::SearchService.new({}, '')
      params = @service.apply_gated_search({}, {})
      @public_query = params[:fq].first.split(' OR ')[0]
      @public_query.should == 'edit_group_customfield:public'
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hydra-batch-edit-1.1.1 spec/lib/search_service_spec.rb
hydra-batch-edit-1.1.0 spec/lib/search_service_spec.rb
hydra-batch-edit-1.0.2 spec/lib/search_service_spec.rb
hydra-batch-edit-1.0.1 spec/lib/search_service_spec.rb
hydra-batch-edit-1.0.0 spec/lib/search_service_spec.rb
hydra-batch-edit-0.3.1 spec/lib/search_service_spec.rb
hydra-batch-edit-0.3.0 spec/lib/search_service_spec.rb