Sha256: df47c6c8b94e923945a6fec80bd2519f0077eabb34437c501792e3ae150b51df

Contents?: true

Size: 1.75 KB

Versions: 3

Compression:

Stored size: 1.75 KB

Contents

require File.dirname(__FILE__) + '/test_helper'

class Twurl::RequestController::AbstractTestCase < MiniTest::Unit::TestCase
  attr_reader :options, :client, :controller
  def setup
    Twurl::CLI.output = StringIO.new
    @options    = Twurl::Options.test_exemplar
    @client     = Twurl::OAuthClient.test_exemplar
    @controller = Twurl::RequestController.new(client, options)
  end

  def teardown
    super
    Twurl::CLI.output = STDOUT
  end

  def test_nothing
    # Appeasing test/unit
  end
end

class Twurl::RequestController::DispatchTest < Twurl::RequestController::AbstractTestCase
  def test_request_will_be_made_if_client_is_authorized
    mock(client).needs_to_authorize? { false }.times(1)
    mock(controller).perform_request.times(1)

    controller.dispatch
  end

  def test_request_will_not_be_made_if_client_is_not_authorized
    mock(client).needs_to_authorize? { true }.times(1)
    mock(controller).perform_request.never

    assert_raises Twurl::Exception do
      controller.dispatch
    end
  end
end

class Twurl::RequestController::RequestTest < Twurl::RequestController::AbstractTestCase
  def test_request_response_is_written_to_output
    expected_body = 'this is a fake response body'
    response      = Object.new
    mock(response).read_body { |block| block.call expected_body }
    mock(client).perform_request_from_options(options).times(1) { |options, block| block.call(response) }

    controller.perform_request

    assert_equal expected_body, Twurl::CLI.output.string
  end

  def test_invalid_or_unspecified_urls_report_error
    mock(Twurl::CLI).puts(Twurl::RequestController::NO_URI_MESSAGE).times(1)
    mock(client).perform_request_from_options(options).times(1) { raise URI::InvalidURIError }

    controller.perform_request
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
twurl-0.8.1 test/request_controller_test.rb
twurl-0.8.0 test/request_controller_test.rb
twurl-0.7.0 test/request_controller_test.rb