Sha256: e7d9a3502059ca92d5cebe74c8fb0eb86f065b478af458164f406d513180c519

Contents?: true

Size: 1.51 KB

Versions: 50

Compression:

Stored size: 1.51 KB

Contents

require 'test_helper'

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

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

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

          subject.indices.flush
        end

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

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

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

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

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

          subject.indices.flush :index => 'foo', :refresh => true
        end

      end

    end
  end
end

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
elasticsearch-api-1.1.3 test/unit/indices/flush_test.rb
logstash-filter-cache-redis-0.3.1 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/flush_test.rb
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/flush_test.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/flush_test.rb
elasticsearch-api-5.0.4 test/unit/indices/flush_test.rb
elasticsearch-api-2.0.2 test/unit/indices/flush_test.rb
elasticsearch-api-5.0.3 test/unit/indices/flush_test.rb
elasticsearch-api-5.0.2 test/unit/indices/flush_test.rb
elasticsearch-api-5.0.1 test/unit/indices/flush_test.rb
elasticsearch-api-2.0.1 test/unit/indices/flush_test.rb
elasticsearch-api-1.1.2 test/unit/indices/flush_test.rb
elasticsearch-api-1.1.1 test/unit/indices/flush_test.rb
elasticsearch-api-5.0.0 test/unit/indices/flush_test.rb
elasticsearch-api-5.0.0.pre test/unit/indices/flush_test.rb
elasticsearch-api-2.0.0 test/unit/indices/flush_test.rb
elasticsearch-api-1.1.0 test/unit/indices/flush_test.rb
elasticsearch-api-2.0.0.pre test/unit/indices/flush_test.rb
elasticsearch-api-1.1.pre test/unit/indices/flush_test.rb
elasticsearch-api-1.0.18 test/unit/indices/flush_test.rb
elasticsearch-api-1.0.17 test/unit/indices/flush_test.rb