Sha256: 610a0cda251ee82723409ad35968e4166689e64ab5b6de9434d92c45dbf3e8f7
Contents?: true
Size: 1.31 KB
Versions: 8
Compression:
Stored size: 1.31 KB
Contents
# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information require 'spec_helper' describe 'client#ping' do let(:expected_args) do [ 'HEAD', '', { }, nil ] end it 'performs the request' do expect(client_double.ping).to eq(true) end context 'when the response is a 404' do let(:response_double) do double('response', status: 404, body: {}, headers: {}) end it 'returns false' do expect(client_double.ping).to eq(false) end end context 'when a 404 \'not found\' exception is raised' do before do allow(client).to receive(:perform_request).and_raise(StandardError.new('404 NotFound')) end let(:client) do Class.new { include Elasticsearch::API }.new end it 'returns false' do expect(client.ping).to eq(false) end end context 'when \'connection failed\' exception is raised' do before do allow(client).to receive(:perform_request).and_raise(StandardError.new('ConnectionFailed')) end let(:client) do Class.new { include Elasticsearch::API }.new end it 'returns false' do expect(client.ping).to eq(false) end end end
Version data entries
8 entries across 8 versions & 1 rubygems