Sha256: e38e08c65ce371bbaa97e43764818c6ba4ca764b38a59f87486a5a0b4d5c12e1

Contents?: true

Size: 1.37 KB

Versions: 88

Compression:

Stored size: 1.37 KB

Contents

require 'test_helper'

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

      context "Indices: Close" do
        subject { FakeClient.new }

        should "require the :index argument" do
          assert_raise ArgumentError do
            subject.indices.close
          end
        end

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

          subject.indices.close :index => 'foo'
        end

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

          subject.indices.close :index => 'foo', :timeout => '1s'
        end

        should "URL-escape the parts" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo%5Ebar/_close', url
            true
          end.returns(FakeResponse.new)

          subject.indices.close :index => 'foo^bar'
        end

      end

    end
  end
end

Version data entries

88 entries across 88 versions & 6 rubygems

Version Path
elasticsearch-api-0.4.8 test/unit/indices/close_test.rb
elasticsearch-api-0.4.7 test/unit/indices/close_test.rb
elasticsearch-api-0.4.6 test/unit/indices/close_test.rb
elasticsearch-api-0.4.5 test/unit/indices/close_test.rb
elasticsearch-api-0.4.4 test/unit/indices/close_test.rb
elasticsearch-api-0.4.3 test/unit/indices/close_test.rb
elasticsearch-api-0.4.2 test/unit/indices/close_test.rb
elasticsearch-api-0.4.1 test/unit/indices/close_test.rb