Sha256: 04269f29aa964041591fd279d91c6c7cd1f3bcb2c8f6d9c3af4cabf7ba3cc38a
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
# encoding: UTF-8 require "spec_helper" describe Timber::Events::HTTPRequest, :rails_23 => true do describe ".initialize" do it "should coerce content_length into an integer" do event = described_class.new(:method => 'GET', :content_length => "123") expect(event.content_length).to eq(123) end context "with a header filters" do around(:each) do |example| old_http_header_filters = Timber::Config.instance.http_header_filters Timber::Config.instance.http_header_filters += ['api-key'] example.run Timber::Config.instance.http_header_filters = old_http_header_filters end it "should sanitize headers when a config option is set" do event = described_class.new(:headers => {'Api-Key' => 'abcde'}, :host => 'my.host.com', :method => 'GET', :path => '/path', :scheme => 'https') expect(event.headers).to eq({'api-key' => '[sanitized]'}) end end it "should handle header encoding" do referer = 'http://www.metrojobb.se/jobb/1013893-skadeadministratör'.force_encoding('ASCII-8BIT') event = described_class.new(:headers => {'Referer' => referer}, :host => 'my.host.com', :method => 'GET', :path => '/path', :scheme => 'https') expect(event.headers.key?("referer")).to eq(false) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
timber-2.5.1 | spec/timber/events/http_request_spec.rb |