Class: PowerAssert::Context
Relationships & Source Files | |
Namespace Children | |
Classes:
| |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Inherits: | Object |
Defined in: | lib/power_assert/context.rb |
Class Method Summary
- .new(base_caller_length) ⇒ Context constructor
Instance Attribute Summary
- #fired? ⇒ Boolean readonly private
Instance Method Summary
- #message
- #message_proc
- #build_assertion_message(parser, return_values) private
- #detect_path(parser, return_values) private
- #encoding_safe_rstrip(str) private
- #enum_count_by(enum, &blk) private
- #find_all_identified_calls(return_values, path) private
- #uniq_calls(paths) private
Constructor Details
.new(base_caller_length) ⇒ Context
# File 'lib/power_assert/context.rb', line 10
def initialize(base_caller_length) @fired = false @target_thread = Thread.current method_id_set = nil @return_values = [] trace_alias_method = PowerAssert.configuration._trace_alias_method @trace_return = TracePoint.new(:return, :c_return) do |tp| unless method_id_set next unless Thread.current == @target_thread method_id_set = @parser.method_id_set end method_id = SUPPORT_ALIAS_METHOD ? tp.callee_id : trace_alias_method && tp.event == :return ? tp.binding.eval('::Kernel.__callee__') : tp.method_id next if ! method_id_set[method_id] next if tp.event == :c_return and not (@parser.lineno == tp.lineno and @parser.path == tp.path) locs = PowerAssert.app_caller_locations diff = locs.length - base_caller_length if (tp.event == :c_return && diff == 1 || tp.event == :return && diff <= 2) and Thread.current == @target_thread idx = -(base_caller_length + 1) if @parser.path == locs[idx].path and @parser.lineno == locs[idx].lineno val = PowerAssert.configuration.lazy_inspection ? tp.return_value : InspectedValue.new(SafeInspectable.new(tp.return_value).inspect) @return_values << Value[method_id.to_s, val, locs[idx].lineno, nil] end end end end
Instance Attribute Details
#fired? ⇒ Boolean
(readonly, private)
[ GitHub ]
# File 'lib/power_assert/context.rb', line 52
def fired? @fired end
Instance Method Details
#build_assertion_message(parser, return_values) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 56
def (parser, return_values) if PowerAssert.configuration. line = Pry::Code.new(parser.line).highlighted else line = parser.line end path = detect_path(parser, return_values) return line unless path return_values, methods_in_path = find_all_identified_calls(return_values, path) return_values.zip(methods_in_path) do |i, j| unless i.name == j.name warn "power_assert: [BUG] Failed to get column: #{i.name}" return line end i.column = j.column end refs_in_path = path.find_all {|i| i.type == :ref } ref_values = refs_in_path.map {|i| Value[i.name, parser.binding.eval(i.name), parser.lineno, i.column] } vals = (return_values + ref_values).find_all(&:column).sort_by(&:column).reverse return line if vals.empty? fmt = (0..vals[0].column).map do |i| if vals.find {|v| v.column == i } "%<#{i}>s" else line[i] == "\t" ? "\t" : ' ' end end.join lines = [] lines << line.chomp lines << sprintf(fmt, vals.each_with_object({}) {|v, h| h[v.column.to_s.to_sym] = '|' }).chomp vals.each do |i| inspected_val = SafeInspectable.new(Formatter.new(i.value, i.column)).inspect inspected_val.each_line do |l| map_to = vals.each_with_object({}) do |j, h| h[j.column.to_s.to_sym] = [l, '|', ' '][i.column <=> j.column] end lines << encoding_safe_rstrip(sprintf(fmt, map_to)) end end lines.join("\n") end
#detect_path(parser, return_values) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 101
def detect_path(parser, return_values) return parser.call_paths.flatten.uniq if parser.method_id_set.empty? all_paths = parser.call_paths return_value_names = return_values.map(&:name) uniq_calls = uniq_calls(all_paths) uniq_call = return_value_names.find {|i| uniq_calls.include?(i) } detected_paths = all_paths.find_all do |path| method_names = path.find_all {|ident| ident.type == :method }.map(&:name) break [path] if uniq_call and method_names.include?(uniq_call) return_value_names == method_names end return nil unless detected_paths.length == 1 detected_paths[0] end
#encoding_safe_rstrip(str) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 135
def encoding_safe_rstrip(str) str.rstrip rescue ArgumentError, Encoding::CompatibilityError enc = str.encoding if enc.ascii_compatible? str.b.rstrip.force_encoding(enc) else str end end
#enum_count_by(enum, &blk) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 131
def enum_count_by(enum, &blk) Hash[enum.group_by(&blk).map{|k, v| [k, v.length] }] end
#find_all_identified_calls(return_values, path) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 121
def find_all_identified_calls(return_values, path) return_value_num_of_calls = enum_count_by(return_values, &:name) path_num_of_calls = enum_count_by(path.find_all {|ident| ident.type == :method }, &:name) identified_calls = return_value_num_of_calls.find_all {|name, num| path_num_of_calls[name] == num }.map(&:first) [ return_values.find_all {|val| identified_calls.include?(val.name) }, path.find_all {|ident| ident.type == :method and identified_calls.include?(ident.name) } ] end
#message
[ GitHub ]# File 'lib/power_assert/context.rb', line 41
def raise 'call #yield or #enable at first' unless fired? @message ||= (@parser, @return_values).freeze end
#message_proc
[ GitHub ]# File 'lib/power_assert/context.rb', line 46
def #=> { message } end
#uniq_calls(paths) (private)
[ GitHub ]# File 'lib/power_assert/context.rb', line 116
def uniq_calls(paths) all_calls = enum_count_by(paths.map {|path| path.find_all {|ident| ident.type == :method }.map(&:name).uniq }.flatten) {|i| i } all_calls.find_all {|_, call_count| call_count == 1 }.map {|name, _| name } end