81 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'rails_helper'
 | |
| 
 | |
| describe SearchQueryTransformer do
 | |
|   subject { described_class.new.apply(parser, current_account: account) }
 | |
| 
 | |
|   let(:account) { Fabricate(:account) }
 | |
|   let(:parser) { SearchQueryParser.new.parse(query) }
 | |
| 
 | |
|   context 'with "hello world"' do
 | |
|     let(:query) { 'hello world' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:term)).to match_array %w(hello world)
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses)).to be_empty
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with "hello -world"' do
 | |
|     let(:query) { 'hello -world' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:term)).to match_array %w(hello)
 | |
|       expect(subject.send(:must_not_clauses).map(&:term)).to match_array %w(world)
 | |
|       expect(subject.send(:filter_clauses)).to be_empty
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with "hello is:reply"' do
 | |
|     let(:query) { 'hello is:reply' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:term)).to match_array %w(hello)
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses).map(&:term)).to match_array %w(reply)
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with "foo: bar"' do
 | |
|     let(:query) { 'foo: bar' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:term)).to match_array %w(foo bar)
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses)).to be_empty
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with "foo:bar"' do
 | |
|     let(:query) { 'foo:bar' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:term)).to contain_exactly('foo bar')
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses)).to be_empty
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with \'"hello world"\'' do
 | |
|     let(:query) { '"hello world"' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses).map(&:phrase)).to contain_exactly('hello world')
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses)).to be_empty
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   context 'with \'before:"2022-01-01 23:00"\'' do
 | |
|     let(:query) { 'before:"2022-01-01 23:00"' }
 | |
| 
 | |
|     it 'transforms clauses' do
 | |
|       expect(subject.send(:must_clauses)).to be_empty
 | |
|       expect(subject.send(:must_not_clauses)).to be_empty
 | |
|       expect(subject.send(:filter_clauses).map(&:term)).to contain_exactly(lt: '2022-01-01 23:00', time_zone: 'UTC')
 | |
|     end
 | |
|   end
 | |
| end
 |