Sha256: 9715ef149cf3b5ac8c99d5376917b1ce6b4eb2d29cc2d82e069ad8d43ef6992d

Contents?: true

Size: 1.23 KB

Versions: 77

Compression:

Stored size: 1.23 KB

Contents

require 'test_helper'

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

      context "Indices: Get warmer" do
        subject { FakeClient.new }

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

          subject.indices.get_warmer :index => '_all'
        end

        should "return single warmer" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/_warmer/bar', url
            true
          end.returns(FakeResponse.new)

          subject.indices.get_warmer :index => 'foo', :name => 'bar'
        end

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

          subject.indices.get_warmer :index => 'foo^bar', :name => 'bar/bam'
        end

      end

    end
  end
end

Version data entries

77 entries across 77 versions & 6 rubygems

Version Path
logstash-output-scalyr-0.1.9 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.5/test/unit/indices/get_warmer_test.rb
elasticsearch-api-6.1.0 test/unit/indices/get_warmer_test.rb
elasticsearch-api-6.0.3 test/unit/indices/get_warmer_test.rb
elasticsearch-api-5.0.5 test/unit/indices/get_warmer_test.rb
elasticsearch-api-6.0.2 test/unit/indices/get_warmer_test.rb
elasticsearch-api-6.0.1 test/unit/indices/get_warmer_test.rb
elasticsearch-api-6.0.0 test/unit/indices/get_warmer_test.rb
elasticsearch-api-1.1.3 test/unit/indices/get_warmer_test.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/get_warmer_test.rb