Sha256: 691e7e47eaa4a5dc61b20d6020ce06746a0cbdd15dc3813f378367ddc23c7f65

Contents?: true

Size: 1.23 KB

Versions: 2

Compression:

Stored size: 1.23 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 "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

2 entries across 2 versions & 1 rubygems

Version Path
elasticsearch-api-0.4.0 test/unit/indices/flush_test.rb
elasticsearch-api-0.0.2 test/unit/indices/flush_test.rb