Sha256: c7ffbae12b9a4cffcc39aad8843a8e9e883212f61811f58cd29842b01c5f08c0

Contents?: true

Size: 1.24 KB

Versions: 2

Compression:

Stored size: 1.24 KB

Contents

require 'test_helper'

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

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

          subject.indices.clear_cache
        end

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

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

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

          subject.indices.clear_cache :field_data => 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/clear_cache_test.rb
elasticsearch-api-0.0.2 test/unit/indices/clear_cache_test.rb