Sha256: 4e8da257dff2dcc01756bce77d6befc4bc1913167e273e77b2c8a1d438f22c0d
Contents?: true
Size: 1.4 KB
Versions: 11
Compression:
Stored size: 1.4 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesGetAliasTest < ::Test::Unit::TestCase context "Indices: Get alias" do subject { FakeClient.new } should "require the :name argument" do assert_raise ArgumentError do subject.indices.get_alias end end should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_alias/foo', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.get_alias :name => 'foo' end should "perform request against multiple indices" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo,bar/_alias/bam', url true end.returns(FakeResponse.new) subject.indices.get_alias :index => ['foo','bar'], :name => 'bam' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/_alias/bar%2Fbam', url true end.returns(FakeResponse.new) subject.indices.get_alias :index => 'foo^bar', :name => 'bar/bam' end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems