Sha256: 671a7c1bc2562c804c094541889262f16fc863cfd9b49f7c99c27d69742848cb

Contents?: true

Size: 1.71 KB

Versions: 2

Compression:

Stored size: 1.71 KB

Contents

require 'test_helper'

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

      context "Indices: Snapshot index" do
        subject { FakeClient.new }

        should "perform correct request" do
          subject.expects(:perform_request).with do |method, url, params, body|
            assert_equal 'POST', method
            assert_equal '_gateway/snapshot', url
            assert_equal Hash.new, params
            assert_nil   body
            true
          end.returns(FakeResponse.new)

          subject.indices.snapshot_index
        end

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

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

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

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

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

          subject.indices.snapshot_index :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/snapshot_index_test.rb
elasticsearch-api-0.0.2 test/unit/indices/snapshot_index_test.rb