Sha256: d1e4ec992c5cb46d827ad758c422e45e85e93a32291e1013ea44f30b02ae70ce

Contents?: true

Size: 1.57 KB

Versions: 2

Compression:

Stored size: 1.57 KB

Contents

require 'test_helper'

module Elasticsearch
  module Test
    class IndicesGetMappingTest < ::Test::Unit::TestCase

      context "Indices: Get mapping" 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 '_mapping', url
            assert_equal Hash.new, params
            assert_nil   body
            true
          end.returns(FakeResponse.new)

          subject.indices.get_mapping
        end

        should "perform request against an index" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/_mapping', url
            true
          end.returns(FakeResponse.new)

          subject.indices.get_mapping :index => 'foo'
        end

        should "perform request against an index and type" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo/bar/_mapping', url
            true
          end.returns(FakeResponse.new)

          subject.indices.get_mapping :index => 'foo', :type => 'bar'
        end

        should "perform request against multiple indices and types" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo,bar/bam,baz/_mapping', url
            true
          end.returns(FakeResponse.new)

          subject.indices.get_mapping :index => ['foo', 'bar'], :type => ['bam', 'baz']
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elasticsearch-api-0.4.0 test/unit/indices/get_mapping_test.rb
elasticsearch-api-0.0.2 test/unit/indices/get_mapping_test.rb