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