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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
require_relative '../setup'
module TestLogging
module TestLayouts
class TestNestedExceptions < Test::Unit::TestCase
include LoggingTestCase
def test_basic_format_obj
err = nil
begin
begin
raise ArgumentError, 'nested exception'
rescue
raise StandardError, 'root exception'
end
rescue => e
err = e
end
layout = Logging.layouts.basic({})
log = layout.format_obj(e)
assert_not_nil log.index('<StandardError> root exception')
if err.respond_to?(:cause)
assert_not_nil log.index('<ArgumentError> nested exception')
assert(log.index('<StandardError> root exception') < log.index('<ArgumentError> nested exception'))
end
end
def test_cause_depth_limiting
err = nil
begin
begin
begin
raise TypeError, 'nested exception 2'
rescue
raise ArgumentError, 'nested exception 1'
end
rescue
raise StandardError, 'root exception'
end
rescue => e
err = e
end
layout = Logging.layouts.basic(cause_depth: 1)
log = layout.format_obj(e)
assert_not_nil log.index('<StandardError> root exception')
if err.respond_to?(:cause)
assert_not_nil log.index('<ArgumentError> nested exception 1')
assert_nil log.index('<TypeError> nested exception 2')
assert_equal '--- Further #cause backtraces were omitted ---', log.split("\n\t").last
end
end
def test_parseable_format_obj
err = nil
begin
begin
raise ArgumentError, 'nested exception'
rescue
raise StandardError, 'root exception'
end
rescue => e
err = e
end
layout = Logging.layouts.parseable.new
log = layout.format_obj(e)
assert_equal 'StandardError', log[:class]
assert_equal 'root exception', log[:message]
assert log[:backtrace].size > 0
if e.respond_to?(:cause)
assert_not_nil log[:cause]
log = log[:cause]
assert_equal 'ArgumentError', log[:class]
assert_equal 'nested exception', log[:message]
assert_nil log[:cause]
assert log[:backtrace].size > 0
end
end
def test_parseable_cause_depth_limiting
err = nil
begin
begin
begin
raise TypeError, 'nested exception 2'
rescue
raise ArgumentError, 'nested exception 1'
end
rescue
raise StandardError, 'root exception'
end
rescue => e
err = e
end
layout = Logging.layouts.parseable.new(cause_depth: 1)
log = layout.format_obj(e)
assert_equal 'StandardError', log[:class]
assert_equal 'root exception', log[:message]
assert log[:backtrace].size > 0
if e.respond_to?(:cause)
assert_not_nil log[:cause]
log = log[:cause]
assert_equal 'ArgumentError', log[:class]
assert_equal 'nested exception 1', log[:message]
assert_equal({message: "Further #cause backtraces were omitted"}, log[:cause])
assert log[:backtrace].size > 0
end
end
end
end
end
require 'pp'
|