Sha256: 38ab9fc388a7c778229bd95e48a6ba5aa7928db8f7667181d8f5ea40aa93b80b

Contents?: true

Size: 1.51 KB

Versions: 19

Compression:

Stored size: 1.51 KB

Contents

require 'test_helper'

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

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

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

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

        should "perform the request for more indices" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo,bar', url
            true
          end.returns(FakeResponse.new)

          subject.indices.delete :index => ['foo','bar']
        end

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

          subject.indices.delete :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', url
            true
          end.returns(FakeResponse.new)

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

      end

    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
elasticsearch-api-1.0.6 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.5 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.4 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.2 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.1 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.0 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.11 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.10 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.9 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.0.rc2 test/unit/indices/delete_test.rb
elasticsearch-api-1.0.0.rc1 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.8 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.7 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.6 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.5 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.4 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.3 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.2 test/unit/indices/delete_test.rb
elasticsearch-api-0.4.1 test/unit/indices/delete_test.rb