Sha256: 7839645f416fbd8e6d623c640b139500aebde91369929a86b6cb1fa7e7f29958

Contents?: true

Size: 1.99 KB

Versions: 29

Compression:

Stored size: 1.99 KB

Contents

# Copyright (c) 2018 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'minitest/autorun'
require 'tmpdir'
require 'uri'
require 'webmock/minitest'
require_relative '../lib/zold/http'

# Http test.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2018 Yegor Bugayenko
# License:: MIT
class TestHttp < Minitest::Test
  def test_pings_broken_uri
    stub_request(:get, 'http://bad-host/').to_return(status: 500)
    res = Zold::Http.new(URI('http://bad-host/')).get
    assert_equal('500', res.code)
    assert_equal('', res.body)
  end

  def test_pings_with_exception
    stub_request(:get, 'http://exception/').to_return { raise 'Intentionally' }
    res = Zold::Http.new(URI('http://exception/')).get
    assert_equal('599', res.code)
    assert(res.body.include?('Intentionally'))
  end

  def test_pings_live_uri
    stub_request(:get, 'http://good-host/').to_return(status: 200)
    res = Zold::Http.new(URI('http://good-host/')).get
    assert_equal('200', res.code)
  end
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
zold-0.11.10 test/test_http.rb
zold-0.11.9 test/test_http.rb
zold-0.11.8 test/test_http.rb
zold-0.11.7 test/test_http.rb
zold-0.11.6 test/test_http.rb
zold-0.11.5 test/test_http.rb
zold-0.11.4 test/test_http.rb
zold-0.11.3 test/test_http.rb
zold-0.11.2 test/test_http.rb
zold-0.11.1 test/test_http.rb
zold-0.11 test/test_http.rb
zold-0.10.23 test/test_http.rb
zold-0.10.22 test/test_http.rb
zold-0.10.21 test/test_http.rb
zold-0.10.20 test/test_http.rb
zold-0.10.19 test/test_http.rb
zold-0.10.18 test/test_http.rb
zold-0.10.17 test/test_http.rb
zold-0.10.16 test/test_http.rb
zold-0.10.15 test/test_http.rb