Sha256: 921649d8d62d655c25b09c8039111771f4abb8a48dfd22cbaeb5ea111364174f

Contents?: true

Size: 1.59 KB

Versions: 5

Compression:

Stored size: 1.59 KB

Contents

module CloudSesame
  module Query
    module DSL
      describe AnyTermMethods do
        class Product
          include CloudSesame
          define_cloudsearch do
            field :name, query: { weight: 2 }, type: :string
            field :description, query: { weight: 0.4 }, type: :string
          end
        end

        subject(:cloudsearch) { Product.cloudsearch.builder }
        let(:root) { cloudsearch.request.filter_query.root }

        describe '#any_term' do
          let(:phrase) { 'listerine mouth wash' }

          it 'inserts an OR node at its scope level' do
            expect { cloudsearch.any_term(:name, phrase) }.to change { root.children }.by([AST::Or])
          end

          describe 'in the OR node' do
            let(:or_node) { root.children.first }

            it 'builds a term node with each word' do
              cloudsearch.any_term(:name, phrase)

              expect(or_node.children[0]).to be_kind_of AST::Term
              expect(or_node.children[0].child.value).to eq('listerine')
            end

            context 'when - is in phrase' do
              let(:phrase) { 'a-b c' }

              it 'only splits on space' do
                cloudsearch.any_term(:name, phrase)

                expect(or_node.children.length).to eq(2)
              end
            end
          end

          context 'when phrase is empty' do
            let(:phrase) { nil }

            it 'does not build anything' do
              expect { cloudsearch.any_term(:name, phrase) }.to_not change { root.children }
            end
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
CloudSesame-1.0.1 spec/cloud_sesame/query/dsl/any_term_methods_spec.rb
CloudSesame-1.0.0 spec/cloud_sesame/query/dsl/any_term_methods_spec.rb
CloudSesame-0.9.4 spec/cloud_sesame/query/dsl/any_term_methods_spec.rb
CloudSesame-0.9.3 spec/cloud_sesame/query/dsl/any_term_methods_spec.rb
CloudSesame-0.9.2 spec/cloud_sesame/query/dsl/any_term_methods_spec.rb