require 'test_helper'

class TestMissingPathname < Test::Unit::TestCase

  def setup
    super
    @saved_pathname = Pathname
    Object.send(:remove_const, :Pathname)
  end

  def teardown
    super
    Object.const_set(:Pathname, @saved_pathname)
  end

  # FakeWeb supports using Pathname objects where filenames are expected, but
  # Pathname isn't required to use FakeWeb. Make sure everything still works
  # when Pathname isn't in use.

  def test_register_using_body_without_pathname
    FakeWeb.register_uri(:get, "http://example.com/", :body => fixture_path("test_example.txt"))
    Net::HTTP.start("example.com") { |http| http.get("/") }
  end

  def _test_register_using_response_without_pathname
    FakeWeb.register_uri(:get, "http://example.com/", :response => fixture_path("google_response_without_transfer_encoding"))
    Net::HTTP.start("example.com") { |http| http.get("/") }
  end

  def test_register_using_unsupported_response_without_pathname
    FakeWeb.register_uri(:get, "http://example.com/", :response => 1)
    assert_raises ArgumentError do
      Net::HTTP.start("example.com") { |http| http.get("/") }
    end
  end

end
