Sha256: f227e49eb40468e0875ef503f99eaa4185c682c8dcd1aec84e2acd719fcfd618

Contents?: true

Size: 1.7 KB

Versions: 36

Compression:

Stored size: 1.7 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)
    assert_equal('500', Zold::Http.new(URI('http://bad-host/')).get.code)
  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

36 entries across 36 versions & 1 rubygems

Version Path
zold-0.10.5 test/test_http.rb
zold-0.10.4 test/test_http.rb
zold-0.10.3 test/test_http.rb
zold-0.10.2 test/test_http.rb
zold-0.10.1 test/test_http.rb
zold-0.10 test/test_http.rb
zold-0.9.11 test/test_http.rb
zold-0.9.10 test/test_http.rb
zold-0.9.9 test/test_http.rb
zold-0.9.8 test/test_http.rb
zold-0.9.7 test/test_http.rb
zold-0.9.6 test/test_http.rb
zold-0.9.5 test/test_http.rb
zold-0.9.4 test/test_http.rb
zold-0.9.3 test/test_http.rb
zold-0.9.2 test/test_http.rb
zold-0.9.1 test/test_http.rb
zold-0.9 test/test_http.rb
zold-0.8 test/test_http.rb
zold-0.7 test/test_http.rb