Sha256: 6c40325201edcec2f658521fbde9f369046ddab7ae19d92a189c00d60fb8cb9d

Contents?: true

Size: 1.61 KB

Versions: 2

Compression:

Stored size: 1.61 KB

Contents

require 'test_helper'

module Elasticsearch
  module Test
    class SuggestTest < ::Test::Unit::TestCase

      context "Suggest" do
        subject { FakeClient.new }

        should "perform correct request" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'POST', method
            assert_equal '_suggest', url
            assert_equal Hash.new, params
            assert_equal Hash.new, body
            true
          end.returns(FakeResponse.new)

          subject.suggest :body => {}
        end

        should "perform request against an index" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/_suggest', url
            true
          end.returns(FakeResponse.new)

          subject.suggest :index => 'foo', :body => {}
        end

        should "pass the URL parameters" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/_suggest', url
            assert_equal 'abc123', params[:routing]
            true
          end.returns(FakeResponse.new)

          subject.suggest :index => 'foo', :routing => 'abc123', :body => {}
        end

        should "pass the request definition in the body" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal '_suggest', url
            assert_equal 'tset', body[:my_suggest][:text]
            true
          end.returns(FakeResponse.new)

          subject.suggest :body => { :my_suggest => { :text => 'tset' } }
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elasticsearch-api-0.4.0 test/unit/suggest_test.rb
elasticsearch-api-0.0.2 test/unit/suggest_test.rb