Sha256: bbf42bcf5e58ab0f8fa9e7e13f085168836073836d97db4d8e3bdd80b71a7415

Contents?: true

Size: 1.63 KB

Versions: 2

Compression:

Stored size: 1.63 KB

Contents

require 'test_helper'

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

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

          subject.indices.refresh
        end

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

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

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

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

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

          subject.indices.refresh :index => ['foo','bar'], :ignore_indices => 'missing'
        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/refresh_test.rb
elasticsearch-api-0.0.2 test/unit/indices/refresh_test.rb