class Cucumber::Formatter::Growl
Constants
- IMAGES
Attributes
indent[W]
step_mother[R]
Public Class Methods
new(step_mother, path_or_io, options)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 21 def initialize(step_mother, path_or_io, options) @step_mother, @io, @options = step_mother, ensure_io(path_or_io, "pretty"), options @exceptions = [] @indent = 0 @prefixes = options[:prefixes] || {} @delayed_announcements = [] @passed = 0 @skipped = 0 @pending = 0 @undefined = 0 @failure = 0 @scenarios = 0 end
Public Instance Methods
after_background(background)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 92 def after_background(background) @in_background = nil @io.puts @io.flush end
after_feature_element(feature_element)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 81 def after_feature_element(feature_element) @io.puts @io.flush end
after_features(features)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 35 def after_features(features) print_summary(features) unless @options[:autoformat] end
after_multiline_arg(multiline_arg)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 192 def after_multiline_arg(multiline_arg) @table = nil end
after_outline_table(outline_table)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 123 def after_outline_table(outline_table) @table = nil @indent = 4 end
after_table_cell(cell)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 211 def after_table_cell(cell) return unless @table @col_index += 1 end
after_table_row(table_row)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 202 def after_table_row(table_row) return if !@table || @hide_this_step print_table_row_announcements @io.puts if table_row.exception && !@exceptions.include?(table_row.exception) print_exception(table_row.exception, table_row.status, @indent) end end
background_name(keyword, name, file_colon_line, source_indent)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 98 def background_name(keyword, name, file_colon_line, source_indent) print_feature_element_name(keyword, name, file_colon_line, source_indent) end
before_background(background)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 86 def before_background(background) @indent = 2 @scenario_indent = 2 @in_background = true end
before_examples_array(examples_array)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 102 def before_examples_array(examples_array) @indent = 4 @io.puts @visiting_first_example_name = true end
before_feature(feature)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 39 def before_feature(feature) @exceptions = [] @indent = 0 if @options[:autoformat] file = File.join(@options[:autoformat], feature.file) dir = File.dirname(file) mkdir_p(dir) unless File.directory?(dir) @io = ensure_file(file, "pretty") end end
before_feature_element(feature_element)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 75 def before_feature_element(feature_element) @indent = 2 @scenario_indent = 2 @scenarios += 1 end
before_multiline_arg(multiline_arg)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 187 def before_multiline_arg(multiline_arg) return if @options[:no_multiline] || @hide_this_step @table = multiline_arg end
before_outline_table(outline_table)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 119 def before_outline_table(outline_table) @table = outline_table end
before_step(step)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 132 def before_step(step) @current_step = step @indent = 6 end
before_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 137 def before_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background) @hide_this_step = false if exception if @exceptions.include?(exception) @hide_this_step = true return end @exceptions << exception end if status != :failed && @in_background ^ background @hide_this_step = true return end @status = status end
before_table_row(table_row)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 196 def before_table_row(table_row) return if !@table || @hide_this_step @col_index = 0 @io.print ' |'.indent(@indent-2) end
comment_line(comment_line)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 50 def comment_line(comment_line) @io.puts(comment_line.indent(@indent)) @io.flush end
examples_name(keyword, name)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 108 def examples_name(keyword, name) puts unless @visiting_first_example_name @visiting_first_example_name = false names = name.strip.empty? ? [name.strip] : name.split("\n") @io.puts(" #{keyword}: #{names[0]}") names[1..-1].each {|s| @io.puts " #{s}" } unless names.empty? @io.flush @indent = 6 @scenario_indent = 6 end
exception(exception, status)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 181 def exception(exception, status) return if @hide_this_step print_exception(exception, status, @indent) @io.flush end
feature_name(keyword, name)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 69 def feature_name(keyword, name) @io.puts("#{keyword}: #{name}") @io.puts @io.flush end
py_string(string)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 173 def py_string(string) return if @hide_this_step s = %{"""\n#{string}\n"""}.indent(@indent) s = s.split("\n").map{|l| l =~ /^\s+$/ ? '' : l}.join("\n") @io.puts(format_string(s, @current_step.status)) @io.flush end
scenario_name(keyword, name, file_colon_line, source_indent)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 128 def scenario_name(keyword, name, file_colon_line, source_indent) print_feature_element_name(keyword, name, file_colon_line, source_indent) end
step_name(keyword, step_match, status, source_indent, background)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 153 def step_name(keyword, step_match, status, source_indent, background) return if @hide_this_step source_indent = nil unless @options[:source] name_to_report = format_step(keyword, step_match, status, source_indent) @io.puts(name_to_report.indent(@scenario_indent + 2)) case status when :passed @passed += 1 when :failed @failure += 1 when :skipped @skipped += 1 when :undefined @undefined += 1 when :pending @pending += 1 end print_announcements end
table_cell_value(value, status)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 216 def table_cell_value(value, status) return if !@table || @hide_this_step status ||= @status || :passed width = @table.col_width(@col_index) cell_text = escape_cell(value.to_s || '') padded = cell_text + (' ' * (width - cell_text.unpack('U*').length)) prefix = cell_prefix(status) @io.print(' ' + format_string("#{prefix}#{padded}", status) + ::Term::ANSIColor.reset(" |")) @io.flush end
tag_name(tag_name)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 62 def tag_name(tag_name) tag = format_string(tag_name, :tag).indent(@indent) @io.print(tag) @io.flush @indent = 1 end
Private Instance Methods
cell_prefix(status)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 243 def cell_prefix(status) @prefixes[status] end
growl(title, msg, image, pri=0, sticky="")
click to toggle source
# File lib/cucumber_growlnotify.rb, line 247 def growl(title, msg, image, pri=0, sticky="") system "growlnotify -p 0 -n '#{title}' --image #{image} -m '#{msg}' #{title}" end
print_feature_element_name(keyword, name, file_colon_line, source_indent)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 229 def print_feature_element_name(keyword, name, file_colon_line, source_indent) @io.puts if @scenario_indent == 6 names = name.empty? ? [name] : name.split("\n") line = "#{keyword}: #{names[0]}".indent(@scenario_indent) @io.print(line) if @options[:source] line_comment = " # #{file_colon_line}".indent(source_indent) @io.print(format_string(line_comment, :comment)) end @io.puts names[1..-1].each {|s| @io.puts " #{s}"} @io.flush end
print_summary(features)
click to toggle source
# File lib/cucumber_growlnotify.rb, line 251 def print_summary(features) print_stats(features, @options.custom_profiles) print_snippets(@options) print_passing_wip(@options) message = @scenarios.to_s + " scenarios \n" image = IMAGES[:success] if @passed > 0 message = message + @passed.to_s + " steps passed \n" end if @failure > 0 message = message + @failure.to_s + " steps failed\n" image = IMAGES[:fail] end if @pending > 0 message = message + @pending.to_s + " steps pending\n" end if @undefined > 0 message = message + @undefined.to_s + " steps undefined\n" end if @skipped > 0 message = message + @skipped.to_s + " steps skipped\n" image = IMAGES[:fail] end growl('Cucumber', message, image) end