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

Version Path
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/get_aliases_test.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.4 test/unit/indices/get_aliases_test.rb
elasticsearch-api-2.0.2 test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.3 test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.2 test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.1 test/unit/indices/get_aliases_test.rb
elasticsearch-api-2.0.1 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.1.2 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.1.1 test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.0 test/unit/indices/get_aliases_test.rb
elasticsearch-api-5.0.0.pre test/unit/indices/get_aliases_test.rb
elasticsearch-api-2.0.0 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.1.0 test/unit/indices/get_aliases_test.rb
elasticsearch-api-2.0.0.pre test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.1.pre test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.0.18 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.0.17 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.0.16 test/unit/indices/get_aliases_test.rb
elasticsearch-api-1.0.16.pre2 test/unit/indices/get_aliases_test.rb