Sha256: 5288793cffec3c57d38698bcc93792e5fc721dcbe10b44a21d25dcee9ac623ad
Contents?: true
Size: 1.36 KB
Versions: 88
Compression:
Stored size: 1.36 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesOpenTest < ::Test::Unit::TestCase context "Indices: Open" do subject { FakeClient.new } should "require the :index argument" do assert_raise ArgumentError do subject.indices.open end end should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'POST', method assert_equal 'foo/_open', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.open :index => 'foo' end should "pass the URL parameters" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo/_open', url assert_equal '1s', params[:timeout] true end.returns(FakeResponse.new) subject.indices.open :index => 'foo', :timeout => '1s' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/_open', url true end.returns(FakeResponse.new) subject.indices.open :index => 'foo^bar' end end end end end
Version data entries
88 entries across 88 versions & 6 rubygems