Sha256: c0f51b5e7f66ce95a2f4bda5d97ae075ea42233534ca6f8ffe1563fe02a63570

Contents?: true

Size: 1.64 KB

Versions: 2

Compression:

Stored size: 1.64 KB

Contents

require 'test_helper'

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

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

          subject.indices.segments
        end

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

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

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

          subject.indices.segments :index => ['foo','bar']
          subject.indices.segments :index => 'foo,bar'
        end

        should "pass the URL parameters" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'foo,bar/_segments', url
            assert_equal 'missing', params[:ignore_indices]
            true
          end.returns(FakeResponse.new)

          subject.indices.segments :index => ['foo','bar'], :ignore_indices => 'missing'
        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/segments_test.rb
elasticsearch-api-0.0.2 test/unit/indices/segments_test.rb