Class: Adapters::LoggerTest

Inherits:
Faraday::TestCase show all
Defined in:
test/adapters/logger_test.rb

Instance Method Summary collapse

Methods inherited from Faraday::TestCase

#capture_warnings, jruby?, rbx?, ssl_mode?, #test_default

Methods included from Faraday::LiveServerConfig

#live_server, #live_server=, #live_server?

Instance Method Details

#conn(logger, logger_options = {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'test/adapters/logger_test.rb', line 7

def conn(logger, logger_options={})
  rubbles = ['Barney', 'Betty', 'Bam Bam']

  Faraday.new do |b|
    b.response :logger, logger, logger_options
    b.adapter :test do |stubs|
      stubs.get('/hello') { [200, {'Content-Type' => 'text/html'}, 'hello'] }
      stubs.post('/ohai') { [200, {'Content-Type' => 'text/html'}, 'fred'] }
      stubs.get('/ohno') { [200, {'Content-Type' => 'text/html'}, 'wilma'] }
      stubs.post('/ohyes') { [200, {'Content-Type' => 'text/html'}, 'pebbles'] }
      stubs.get('/rubbles') { [200, {'Content-Type' => 'application/json'}, rubbles] }
    end
  end
end

#setupObject



22
23
24
25
26
27
28
29
# File 'test/adapters/logger_test.rb', line 22

def setup
  @io     = StringIO.new
  @logger = Logger.new(@io)
  @logger.level = Logger::DEBUG

  @conn = conn(@logger)
  @resp = @conn.get '/hello', nil, :accept => 'text/html'
end

#test_does_not_log_request_body_by_defaultObject



47
48
49
50
# File 'test/adapters/logger_test.rb', line 47

def test_does_not_log_request_body_by_default
  @conn.post '/ohai', 'name=Unagi', :accept => 'text/html'
  refute_match %(name=Unagi), @io.string
end

#test_does_not_log_response_body_by_defaultObject



52
53
54
55
# File 'test/adapters/logger_test.rb', line 52

def test_does_not_log_response_body_by_default
  @conn.post '/ohai', 'name=Toro', :accept => 'text/html'
  refute_match %(fred), @io.string
end

#test_log_request_and_response_bodyObject



69
70
71
72
73
74
# File 'test/adapters/logger_test.rb', line 69

def test_log_request_and_response_body
  app = conn(@logger, :bodies => true)
  app.post '/ohyes', 'name=Ebi', :accept => 'text/html'
  assert_match %(name=Ebi), @io.string
  assert_match %(pebbles), @io.string
end

#test_log_request_bodyObject



57
58
59
60
61
# File 'test/adapters/logger_test.rb', line 57

def test_log_request_body
  app = conn(@logger, :bodies => { :request => true })
  app.post '/ohyes', 'name=Tamago', :accept => 'text/html'
  assert_match %(name=Tamago), @io.string
end

#test_log_response_bodyObject



63
64
65
66
67
# File 'test/adapters/logger_test.rb', line 63

def test_log_response_body
  app = conn(@logger, :bodies => { :response => true })
  app.get '/ohno', :accept => 'text/html'
  assert_match %(wilma), @io.string
end

#test_log_response_body_objectObject



76
77
78
79
80
# File 'test/adapters/logger_test.rb', line 76

def test_log_response_body_object
  app = conn(@logger, :bodies => true)
  app.get '/rubbles', nil, :accept => 'text/html'
  assert_match %([\"Barney\", \"Betty\", \"Bam Bam\"]\n), @io.string
end

#test_logs_method_and_urlObject



35
36
37
# File 'test/adapters/logger_test.rb', line 35

def test_logs_method_and_url
  assert_match "get http:/hello", @io.string
end

#test_logs_request_headersObject



39
40
41
# File 'test/adapters/logger_test.rb', line 39

def test_logs_request_headers
  assert_match %(Accept: "text/html), @io.string
end

#test_logs_response_headersObject



43
44
45
# File 'test/adapters/logger_test.rb', line 43

def test_logs_response_headers
  assert_match %(Content-Type: "text/html), @io.string
end

#test_still_returns_outputObject



31
32
33
# File 'test/adapters/logger_test.rb', line 31

def test_still_returns_output
  assert_equal 'hello', @resp.body
end