debian-mirror-gitlab/spec/models/concerns/optionally_search_spec.rb

67 lines
1.6 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe OptionallySearch do
2020-04-22 19:07:51 +05:30
describe '.search' do
let(:model) do
Class.new do
include OptionallySearch
end
2018-11-20 20:47:30 +05:30
end
it 'raises NotImplementedError' do
expect { model.search('foo') }.to raise_error(NotImplementedError)
end
end
describe '.optionally_search' do
2020-04-22 19:07:51 +05:30
let(:model) do
Class.new(ActiveRecord::Base) do
self.table_name = 'users'
include OptionallySearch
def self.search(query, **options)
[query, options]
end
end
end
2018-11-20 20:47:30 +05:30
context 'when a query is given' do
it 'delegates to the search method' do
expect(model)
.to receive(:search)
2021-01-29 00:20:46 +05:30
.with('foo')
2020-04-22 19:07:51 +05:30
.and_call_original
expect(model.optionally_search('foo')).to eq(['foo', {}])
end
end
context 'when an option is provided' do
it 'delegates to the search method' do
expect(model)
.to receive(:search)
.with('foo', some_option: true)
.and_call_original
2018-11-20 20:47:30 +05:30
2020-04-22 19:07:51 +05:30
expect(model.optionally_search('foo', some_option: true)).to eq(['foo', { some_option: true }])
2018-11-20 20:47:30 +05:30
end
end
context 'when no query is given' do
it 'returns the current relation' do
expect(model.optionally_search).to be_a_kind_of(ActiveRecord::Relation)
end
end
context 'when an empty query is given' do
it 'returns the current relation' do
expect(model.optionally_search(''))
.to be_a_kind_of(ActiveRecord::Relation)
end
end
end
end