Sha256: 47d867f2b55102dd14b5bc02e45c6fa1903924eee3475c0cb7df48fb87e97cfc

Contents?: true

Size: 1.93 KB

Versions: 2

Compression:

Stored size: 1.93 KB

Contents

require 'test_helper'

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

      context "Explain document" do
        subject { FakeClient.new }

        should "require the :index argument" do
          assert_raise ArgumentError do
            subject.explain :type => 'bar', :id => '1'
          end
        end

        should "require the :type argument" do
          assert_raise ArgumentError do
            subject.explain :index => 'foo', :id => '1'
          end
        end

        should "require the :id argument" do
          assert_raise ArgumentError do
            subject.explain :index => 'foo', :type => 'bar'
          end
        end

        should "perform correct request" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'GET', method
            assert_equal 'foo/bar/1/_explain', url
            assert_equal Hash.new, params
            assert_equal Hash.new, body
            true
          end.returns(FakeResponse.new)

          subject.explain :index => 'foo', :type => 'bar', :id => 1, :body => {}
        end

        should "pass the query in URL parameters" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/bar/1/_explain', url
            assert_equal 'foo', params[:q]
            true
          end.returns(FakeResponse.new)

          subject.explain :index => 'foo', :type => 'bar', :id => 1, :q => 'foo'
        end

        should "pass the request definition in the body" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/bar/1/_explain', url
            assert_equal Hash.new, body[:query][:match]
            true
          end.returns(FakeResponse.new)

          subject.explain :index => 'foo', :type => 'bar', :id => 1, :body => { :query => { :match => {} } }
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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