49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::Search::Query do
|
|
let(:query) { 'base filter:wow anotherfilter:noway name:maybe other:mmm leftover' }
|
|
let(:subject) do
|
|
described_class.new(query) do
|
|
filter :filter
|
|
filter :name, parser: :upcase.to_proc
|
|
filter :other
|
|
end
|
|
end
|
|
|
|
it { expect(described_class).to be < SimpleDelegator }
|
|
|
|
it 'leaves undefined filters in the main query' do
|
|
expect(subject.term).to eq('base anotherfilter:noway leftover')
|
|
end
|
|
|
|
it 'parses filters' do
|
|
expect(subject.filters.count).to eq(3)
|
|
expect(subject.filters.map { |f| f[:value] }).to match_array(%w[wow MAYBE mmm])
|
|
end
|
|
|
|
context 'with an empty filter' do
|
|
let(:query) { 'some bar name: baz' }
|
|
|
|
it 'ignores empty filters' do
|
|
expect(subject.term).to eq('some bar name: baz')
|
|
end
|
|
end
|
|
|
|
context 'with a pipe' do
|
|
let(:query) { 'base | nofilter' }
|
|
|
|
it 'does not escape the pipe' do
|
|
expect(subject.term).to eq(query)
|
|
end
|
|
end
|
|
|
|
context 'with an exclusive filter' do
|
|
let(:query) { 'something -name:bingo -other:dingo' }
|
|
|
|
it 'negates the filter' do
|
|
expect(subject.filters).to all(include(negated: true))
|
|
end
|
|
end
|
|
end
|