Sha256: 62559bba7ea6d656c47bb02f3091d9a41bb7d48c25755a554430758ed7a25f87
Contents?: true
Size: 1.53 KB
Versions: 77
Compression:
Stored size: 1.53 KB
Contents
require 'test_helper' module Elasticsearch module Test class IndicesGetAliasesTest < ::Test::Unit::TestCase context "Indices: Get aliases" do subject { FakeClient.new } should "perform correct request" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'GET', method assert_equal '_aliases', url assert_equal Hash.new, params assert_nil body true end.returns(FakeResponse.new) subject.indices.get_aliases end should "perform request against an index" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo/_aliases', url true end.returns(FakeResponse.new) subject.indices.get_aliases :index => 'foo' end should "get a specific alias" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo/_aliases/bar', url assert_equal Hash.new, params true end.returns(FakeResponse.new) subject.indices.get_aliases :index => 'foo', :name => 'bar' end should "URL-escape the parts" do subject.expects(:perform_request).with do |method, url, params, body| assert_equal 'foo%5Ebar/_aliases', url true end.returns(FakeResponse.new) subject.indices.get_aliases :index => 'foo^bar' end end end end end
Version data entries
77 entries across 77 versions & 6 rubygems