Sha256: c89493330af3a0938e272fd95122baf56fb7624371468223e2bdb610faef0416

Contents?: true

Size: 1.93 KB

Versions: 88

Compression:

Stored size: 1.93 KB

Contents

require 'test_helper'

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

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

          subject.indices.segments
        end

        should "perform request against an index" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/_segments', url
            true
          end.returns(FakeResponse.new)

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

        should "perform request against multiple indices" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo,bar/_segments', url
            true
          end.returns(FakeResponse.new).twice

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

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

          subject.indices.segments :index => ['foo','bar'], :ignore_indices => 'missing'
        end

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

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

      end

    end
  end
end

Version data entries

88 entries across 88 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/segments_test.rb
logstash-output-scalyr-0.1.8 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.7 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.6 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-newrelic-1.2.0 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.5 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.4 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.3 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-output-scalyr-0.1.2 vendor/bundle/jruby/2.5.0/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
logstash-filter-device_detection-1.0.7-java vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.5/test/unit/indices/segments_test.rb
elasticsearch-api-6.1.0 test/unit/indices/segments_test.rb
elasticsearch-api-6.0.3 test/unit/indices/segments_test.rb
elasticsearch-api-5.0.5 test/unit/indices/segments_test.rb
elasticsearch-api-6.0.2 test/unit/indices/segments_test.rb
elasticsearch-api-6.0.1 test/unit/indices/segments_test.rb
elasticsearch-api-6.0.0 test/unit/indices/segments_test.rb
elasticsearch-api-1.1.3 test/unit/indices/segments_test.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/segments_test.rb