1
0
mirror of https://github.com/meineerde/rackstash.git synced 2026-02-01 01:37:12 +00:00
rackstash/spec/rackstash/rack/errors_spec.rb
Holger Just 26597680af Set rack.errors in the Rack::Middlware
This ensures that other middlewares whi want to log to the default
rack.errors stream will log to a sensible location instead of the usual
default of raw STDOUT or STDERR.
2017-12-05 18:55:08 +01:00

57 lines
1.3 KiB
Ruby

# frozen_string_literal: true
#
# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
require 'spec_helper'
require 'rackstash/rack/errors'
describe Rackstash::Rack::Errors do
let(:logger) { instance_double(Rackstash::Logger) }
let(:errors) { described_class.new(logger) }
describe '#initialize' do
it 'takes a logger' do
errors = described_class.new(logger)
expect(errors.logger).to equal logger
end
end
describe '#puts' do
it 'logs a formatted message' do
expect(logger).to receive(:unknown).with('an error')
errors.puts('an error')
end
it 'returns the stringified message' do
allow(logger).to receive(:unknown)
expect(errors.puts('error')).to eql 'error'
expect(errors.puts(123)).to eql '123'
end
end
describe '#write' do
it 'logs an unformatted message' do
expect(logger).to receive(:<<).with('an error')
errors.write('an error')
end
it 'returns the raw message' do
allow(logger).to receive(:<<)
expect(errors.write('error')).to eql 'error'
expect(errors.write(123)).to eql 123
end
end
describe '#flush' do
it 'does nothing' do
errors.flush
end
end
end