request_controller_test.rb
1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require File.dirname(__FILE__) + '/test_helper'
class Twurl::RequestController::AbstractTestCase < Minitest::Test
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