Update Exception extension to show the first few framework frames in an application trace.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2654 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Nicholas Seckar
2005-10-16 17:47:19 +00:00
parent 98c1735f03
commit 57f43473d7
3 changed files with 24 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
*SVN*
* Added Extension extension to provide support for clean backtraces. [Nicholas Seckar]
* Update Exception extension to show the first few framework frames in an application trace. [Nicholas Seckar]
* Added Exception extension to provide support for clean backtraces. [Nicholas Seckar]
* Updated whiny nil to be more concise and useful. [Nicholas Seckar]

View File

@@ -13,6 +13,12 @@ class Exception
end
def application_backtrace
clean_backtrace.reject { |line| line =~ /(vendor|dispatch|ruby|script\/\w+)/ }
before_application_frame = true
clean_backtrace.reject do |line|
non_app_frame = !! (line =~ /vendor|dispatch|ruby|script\/\w+/)
before_application_frame = false unless non_app_frame
non_app_frame && ! before_application_frame
end
end
end

View File

@@ -21,4 +21,18 @@ class ExceptionExtTests < Test::Unit::TestCase
assert_equal ['bhal.rb', 'rawh hid den stuff is not here', 'almost all'], e.clean_backtrace
end
def test_app_backtrace
Exception::TraceSubstitutions << [/\s*hidden.*/, '']
e = get_exception RuntimeError, 'RAWR', ['bhal.rb', ' vendor/file.rb some stuff', 'almost all']
assert_kind_of Exception, e
assert_equal ['bhal.rb', 'almost all'], e.application_backtrace
end
def test_app_backtrace_with_before
Exception::TraceSubstitutions << [/\s*hidden.*/, '']
e = get_exception RuntimeError, 'RAWR', ['vendor/file.rb some stuff', 'bhal.rb', ' vendor/file.rb some stuff', 'almost all']
assert_kind_of Exception, e
assert_equal ['vendor/file.rb some stuff', 'bhal.rb', 'almost all'], e.application_backtrace
end
end