Sha256: 21f5ae6d07d5d9c43a0624fc3077d81ba7a5d569bab988b42ca7a89498700878

Contents?: true

Size: 1.16 KB

Versions: 22

Compression:

Stored size: 1.16 KB

Contents

require 'test_helper'

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

      context "Indices: Delete template" 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 '_template/foo', url
            assert_equal Hash.new, params
            assert_nil   body
            true
          end.returns(FakeResponse.new)

          subject.indices.delete_template :name => 'foo'
        end

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

          subject.indices.delete_template :name => 'foo^bar'
        end

        should "ignore 404s" do
          subject.expects(:perform_request).raises(NotFound)

          assert_nothing_raised do
            assert ! subject.indices.delete_template(:name => 'foo^bar', :ignore => 404)
          end
        end

      end

    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
elasticsearch-api-1.0.11 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.10 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.9 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.7 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.6 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.5 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.4 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.2 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.1 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.0 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.11 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.10 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.9 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.0.rc2 test/unit/indices/delete_template_test.rb
elasticsearch-api-1.0.0.rc1 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.8 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.7 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.6 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.5 test/unit/indices/delete_template_test.rb
elasticsearch-api-0.4.4 test/unit/indices/delete_template_test.rb