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
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'spec_helper'))
RSpec.describe HTTParty::Logger::ApacheFormatter do
let(:subject) { described_class.new(logger_double, :info) }
let(:logger_double) { double('Logger') }
let(:request_double) { double('Request', http_method: Net::HTTP::Get, path: "http://my.domain.com/my_path") }
let(:request_time) { Time.new.strftime("%Y-%m-%d %H:%M:%S %z") }
before do
subject.current_time = request_time
expect(logger_double).to receive(:info).with(log_message)
end
describe "#format" do
let(:log_message) { "[HTTParty] [#{request_time}] 302 \"GET http://my.domain.com/my_path\" - " }
it "formats a response in a style that resembles apache's access log" do
response_double = double(
code: 302,
:[] => nil
)
subject.format(request_double, response_double)
end
context 'when there is a parsed response' do
let(:log_message) { "[HTTParty] [#{request_time}] 200 \"GET http://my.domain.com/my_path\" 512 "}
it "can handle the Content-Length header" do
# Simulate a parsed response that is an array, where accessing a string key will raise an error. See Issue #299.
response_double = double(
code: 200,
headers: { 'Content-Length' => 512 }
)
allow(response_double).to receive(:[]).with('Content-Length').and_raise(TypeError.new('no implicit conversion of String into Integer'))
subject.format(request_double, response_double)
end
end
end
end
|