Sha256: 159179beb421f68325117e99ce7f80bde632db5aeb70fe6a3bd51a4aea402258
Contents?: true
Size: 1.53 KB
Versions: 38
Compression:
Stored size: 1.53 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[:ignore_unavailable] true end.returns(FakeResponse.new) subject.indices.flush :index => 'foo', :ignore_unavailable => true end end end end end
Version data entries
38 entries across 38 versions & 5 rubygems