Class: Cucumber::Formatter::Pretty

Inherits:
Ast::Visitor show all
Includes:
Console, FileUtils
Defined in:
lib/cucumber/formatter/pretty.rb

Overview

This formatter prints features to plain text - exactly how they were parsed, just prettier. That means with proper indentation and alignment of table columns.

If the output is STDOUT (and not a file), there are bright colours to watch too.

Direct Known Subclasses

Cli::LanguageHelpFormatter

Constant Summary

Constants included from Console

Console::FORMATS

Constants included from ANSIColor

ANSIColor::ALIASES

Instance Attribute Summary collapse

Attributes inherited from Ast::Visitor

#options, #step_mother

Instance Method Summary collapse

Methods included from Console

#announce, #format_step, #format_string, #print_counts, #print_elements, #print_exception, #print_snippets, #print_steps

Methods included from ANSIColor

#grey

Methods inherited from Ast::Visitor

#announce, #matches_scenario_names?, #visit_examples, #visit_outline_table, #visit_steps, #visit_table_cell

Constructor Details

#initialize(step_mother, io, options, delim = '|') ⇒ Pretty

Returns a new instance of Pretty.



16
17
18
19
20
21
22
23
# File 'lib/cucumber/formatter/pretty.rb', line 16

def initialize(step_mother, io, options, delim='|')
  super(step_mother)
  @io = io
  @options = options
  @delim = delim
  @indent = 0
  @exceptions = []
end

Instance Attribute Details

#indent=(value) ⇒ Object (writeonly)

Sets the attribute indent

Parameters:

  • value

    the value to set the attribute indent to.



14
15
16
# File 'lib/cucumber/formatter/pretty.rb', line 14

def indent=(value)
  @indent = value
end

Instance Method Details

#visit_background(background) ⇒ Object



84
85
86
87
88
89
90
91
# File 'lib/cucumber/formatter/pretty.rb', line 84

def visit_background(background)
  @indent = 2
  @in_background = true
  super
  @in_background = nil
  @io.puts
  @io.flush
end

#visit_background_name(keyword, name, file_colon_line, source_indent) ⇒ Object



93
94
95
# File 'lib/cucumber/formatter/pretty.rb', line 93

def visit_background_name(keyword, name, file_colon_line, source_indent)
  visit_feature_element_name(keyword, name, file_colon_line, source_indent)
end

#visit_comment(comment) ⇒ Object



45
46
47
# File 'lib/cucumber/formatter/pretty.rb', line 45

def visit_comment(comment)
  comment.accept(self)
end

#visit_comment_line(comment_line) ⇒ Object



49
50
51
52
53
54
# File 'lib/cucumber/formatter/pretty.rb', line 49

def visit_comment_line(comment_line)
  unless comment_line.blank?
    @io.puts(comment_line.indent(@indent)) 
    @io.flush
  end
end

#visit_examples_name(keyword, name) ⇒ Object



97
98
99
100
101
# File 'lib/cucumber/formatter/pretty.rb', line 97

def visit_examples_name(keyword, name)
  @io.puts("\n  #{keyword} #{name}")
  @io.flush
  @indent = 4
end

#visit_exception(exception, status) ⇒ Object



149
150
151
152
# File 'lib/cucumber/formatter/pretty.rb', line 149

def visit_exception(exception, status)
  print_exception(exception, status, @indent)
  @io.flush
end

#visit_feature(feature) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/cucumber/formatter/pretty.rb', line 30

def visit_feature(feature)
  @indent = 0
  if @options[:autoformat]
    file = File.join(@options[:autoformat], feature.file)
    dir = File.dirname(file)
    mkdir_p(dir) unless File.directory?(dir)
    File.open(file, Cucumber.file_mode('w')) do |io|
      @io = io
      super
    end
  else
    super
  end
end

#visit_feature_element(feature_element) ⇒ Object



77
78
79
80
81
82
# File 'lib/cucumber/formatter/pretty.rb', line 77

def visit_feature_element(feature_element)
  @indent = 2
  super
  @io.puts
  @io.flush
end

#visit_feature_element_name(keyword, name, file_colon_line, source_indent) ⇒ Object



107
108
109
110
111
112
113
114
115
116
# File 'lib/cucumber/formatter/pretty.rb', line 107

def visit_feature_element_name(keyword, name, file_colon_line, source_indent)
  line = "  #{keyword} #{name}"
  @io.print(line)
  if @options[:source]
    line_comment = " # #{file_colon_line}".indent(source_indent)
    @io.print(format_string(line_comment, :comment))
  end
  @io.puts
  @io.flush
end

#visit_feature_name(name) ⇒ Object



71
72
73
74
75
# File 'lib/cucumber/formatter/pretty.rb', line 71

def visit_feature_name(name)
  @io.puts(name)
  @io.puts
  @io.flush
end

#visit_features(features) ⇒ Object



25
26
27
28
# File 'lib/cucumber/formatter/pretty.rb', line 25

def visit_features(features)
  super
  print_summary unless @options[:autoformat]
end

#visit_multiline_arg(multiline_arg) ⇒ Object



144
145
146
147
# File 'lib/cucumber/formatter/pretty.rb', line 144

def visit_multiline_arg(multiline_arg)
  return if @options[:no_multiline]
  super
end

#visit_py_string(string) ⇒ Object



163
164
165
166
167
168
# File 'lib/cucumber/formatter/pretty.rb', line 163

def visit_py_string(string)
  s = %{"""\n#{string}\n"""}.indent(@indent)
  s = s.split("\n").map{|l| l =~ /^\s+$/ ? '' : l}.join("\n")
  @io.puts(format_string(s, @status))
  @io.flush
end

#visit_scenario_name(keyword, name, file_colon_line, source_indent) ⇒ Object



103
104
105
# File 'lib/cucumber/formatter/pretty.rb', line 103

def visit_scenario_name(keyword, name, file_colon_line, source_indent)
  visit_feature_element_name(keyword, name, file_colon_line, source_indent)
end

#visit_step(step) ⇒ Object



118
119
120
121
# File 'lib/cucumber/formatter/pretty.rb', line 118

def visit_step(step)
  @indent = 6
  super
end

#visit_step_name(keyword, step_match, status, source_indent, background) ⇒ Object



138
139
140
141
142
# File 'lib/cucumber/formatter/pretty.rb', line 138

def visit_step_name(keyword, step_match, status, source_indent, background)
  source_indent = nil unless @options[:source]
  formatted_step_name = format_step(keyword, step_match, status, source_indent)
  @io.puts("    " + formatted_step_name)
end

#visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background) ⇒ Object



123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/cucumber/formatter/pretty.rb', line 123

def visit_step_result(keyword, step_match, multiline_arg, status, exception, source_indent, background)
  if exception
    return if @exceptions.index(exception)
    @exceptions << exception
  end
  return if status != :failed && @in_background ^ background

  # @step_matches ||= []
  # return if @step_matches.index(step_match)
  # @step_matches << step_match

  @status = status
  super
end

#visit_table_cell_value(value, width, status) ⇒ Object



170
171
172
173
174
# File 'lib/cucumber/formatter/pretty.rb', line 170

def visit_table_cell_value(value, width, status)
  status ||= @status || :passed
  @io.print(' ' + format_string((value.to_s || '').ljust(width), status) + " #{@delim}")
  @io.flush
end

#visit_table_row(table_row) ⇒ Object



154
155
156
157
158
159
160
161
# File 'lib/cucumber/formatter/pretty.rb', line 154

def visit_table_row(table_row)
  @io.print @delim.indent(@indent)
  super
  @io.puts
  if table_row.exception && !@exceptions.index(table_row.exception)
    print_exception(table_row.exception, :failed, @indent) 
  end
end

#visit_tag_name(tag_name) ⇒ Object



64
65
66
67
68
69
# File 'lib/cucumber/formatter/pretty.rb', line 64

def visit_tag_name(tag_name)
  tag = format_string("@#{tag_name}", :tag).indent(@indent)
  @io.print(tag)
  @io.flush
  @indent = 1
end

#visit_tags(tags) ⇒ Object



56
57
58
59
60
61
62
# File 'lib/cucumber/formatter/pretty.rb', line 56

def visit_tags(tags)
  tags.accept(self)
  if @indent == 1
    @io.puts 
    @io.flush
  end
end