Sha256: 4343c0a656af675d6be4a7571e032f30ac1909085382312396928fc725695fbe

Contents?: true

Size: 1.66 KB

Versions: 88

Compression:

Stored size: 1.66 KB

Contents

require 'test_helper'

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

      context "Indices: Put template" do
        subject { FakeClient.new }

        should "require the :name argument" do
          assert_raise ArgumentError do
            subject.indices.put_template :body => {}
          end
        end

        should "require the :body argument" do
          assert_raise ArgumentError do
            subject.indices.put_template :name => 'foo'
          end
        end

        should "perform correct request" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'PUT', method
            assert_equal '_template/foo', url
            assert_equal Hash.new, params
            assert_equal 'bar', body[:template]
            true
          end.returns(FakeResponse.new)

          subject.indices.put_template :name => 'foo', :body => { :template => 'bar' }
        end

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

          subject.indices.put_template :name => 'foo', :body => {}, :order => 3
        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.put_template :name => 'foo^bar', :body => {}
        end

      end

    end
  end
end

Version data entries

88 entries across 88 versions & 6 rubygems

Version Path
elasticsearch-api-1.0.16.pre test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.15 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.14 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.13 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.12 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.11 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.10 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.9 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.7 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.6 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.5 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.4 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.2 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.1 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.0 test/unit/indices/put_template_test.rb
elasticsearch-api-0.4.11 test/unit/indices/put_template_test.rb
elasticsearch-api-0.4.10 test/unit/indices/put_template_test.rb
elasticsearch-api-0.4.9 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.0.rc2 test/unit/indices/put_template_test.rb
elasticsearch-api-1.0.0.rc1 test/unit/indices/put_template_test.rb