This repository was archived by the owner on Nov 30, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathformatters.rb
More file actions
191 lines (170 loc) · 6.03 KB
/
Copy pathformatters.rb
File metadata and controls
191 lines (170 loc) · 6.03 KB
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
require 'rspec/core/formatters/legacy_formatter'
# ## Built-in Formatters
#
# * progress (default) - prints dots for passing examples, `F` for failures, `*` for pending
# * documentation - prints the docstrings passed to `describe` and `it` methods (and their aliases)
# * html
# * json - useful for archiving data for subsequent analysis
#
# The progress formatter is the default, but you can choose any one or more of
# the other formatters by passing with the `--format` (or `-f` for short)
# command-line option, e.g.
#
# rspec --format documentation
#
# You can also send the output of multiple formatters to different streams, e.g.
#
# rspec --format documentation --format html --out results.html
#
# This example sends the output of the documentation formatter to `$stdout`, and
# the output of the html formatter to results.html.
#
# ## Custom Formatters
#
# You can tell RSpec to use a custom formatter by passing its path and name to
# the `rspec` commmand. For example, if you define MyCustomFormatter in
# path/to/my_custom_formatter.rb, you would type this command:
#
# rspec --require path/to/my_custom_formatter.rb --format MyCustomFormatter
#
# The reporter calls every formatter with this protocol:
#
# * `start(expected_example_count)`
# * zero or more of the following
# * `example_group_started(group)`
# * `example_started(example)`
# * `example_passed(example)`
# * `example_failed(example)`
# * `example_pending(example)`
# * `message(string)`
# * `stop`
# * `start_dump`
# * `dump_pending`
# * `dump_failures`
# * `dump_summary(duration, example_count, failure_count, pending_count)`
# * `seed(value)`
# * `close`
#
# You can either implement all of those methods or subclass
# `RSpec::Core::Formatters::BaseTextFormatter` and override the methods you want
# to enhance.
#
# @see RSpec::Core::Formatters::BaseTextFormatter
# @see RSpec::Core::Reporter
module RSpec::Core::Formatters
autoload :DocumentationFormatter, 'rspec/core/formatters/documentation_formatter'
autoload :HtmlFormatter, 'rspec/core/formatters/html_formatter'
autoload :ProgressFormatter, 'rspec/core/formatters/progress_formatter'
autoload :JsonFormatter, 'rspec/core/formatters/json_formatter'
def self.register(formatter_class, *notifications)
Loader.formatters[formatter_class] = notifications
end
# @api private
#
# `RSpec::Core::Formatters::Loader` is an internal class for
# managing formatters used by a particular configuration. It is
# not expected to be used directly, but only through the configuration
# interface.
class Loader
# @api private
#
# Internal formatters are stored here when loaded
def self.formatters
@formatters ||= {}
end
# @api private
def initialize(reporter)
@formatters = []
@reporter = reporter
end
attr_reader :formatters, :reporter
# @api private
def setup_default(output_stream, deprecation_stream)
if @formatters.empty?
add 'progress', output_stream
end
unless @formatters.any? { |formatter| DeprecationFormatter === formatter }
add DeprecationFormatter, deprecation_stream, output_stream
end
end
# @api private
def add(formatter_to_use, *paths)
formatter_class = find_formatter(formatter_to_use)
args = paths.map { |p| String === p ? file_at(p) : p }
if !Loader.formatters[formatter_class].nil?
formatter = formatter_class.new(*args)
@reporter.register_listener formatter, *notifications_for(formatter_class)
else
formatter = LegacyFormatter.new(formatter_class, *args)
@reporter.register_listener formatter, *formatter.notifications
end
@formatters << formatter unless duplicate_formatter_exists?(formatter)
if formatter.is_a?(LegacyFormatter)
RSpec.warn_deprecation "The #{formatter_class} formatter uses the deprecated formatter interface.\n Formatter added at: #{::RSpec::CallerFilter.first_non_rspec_line}"
end
formatter
end
private
def find_formatter(formatter_to_use)
built_in_formatter(formatter_to_use) ||
custom_formatter(formatter_to_use) ||
(raise ArgumentError, "Formatter '#{formatter_to_use}' unknown - maybe you meant 'documentation' or 'progress'?.")
end
def duplicate_formatter_exists?(new_formatter)
@formatters.any? do |formatter|
formatter.class === new_formatter && formatter.output == new_formatter.output
end
end
def built_in_formatter(key)
case key.to_s
when 'd', 'doc', 'documentation'
DocumentationFormatter
when 'h', 'html'
HtmlFormatter
when 'p', 'progress'
ProgressFormatter
when 'j', 'json'
JsonFormatter
end
end
def notifications_for(formatter_class)
formatter_class.ancestors.inject(Set.new) do |notifications, klass|
notifications + Loader.formatters.fetch(klass) { Set.new }
end
end
def custom_formatter(formatter_ref)
if Class === formatter_ref
formatter_ref
elsif string_const?(formatter_ref)
begin
formatter_ref.gsub(/^::/,'').split('::').inject(Object) { |const,string| const.const_get string }
rescue NameError
require( path_for(formatter_ref) ) ? retry : raise
end
end
end
def string_const?(str)
str.is_a?(String) && /\A[A-Z][a-zA-Z0-9_:]*\z/ =~ str
end
def path_for(const_ref)
underscore_with_fix_for_non_standard_rspec_naming(const_ref)
end
def underscore_with_fix_for_non_standard_rspec_naming(string)
underscore(string).sub(%r{(^|/)r_spec($|/)}, '\\1rspec\\2')
end
# activesupport/lib/active_support/inflector/methods.rb, line 48
def underscore(camel_cased_word)
word = camel_cased_word.to_s.dup
word.gsub!(/::/, '/')
word.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2')
word.gsub!(/([a-z\d])([A-Z])/,'\1_\2')
word.tr!("-", "_")
word.downcase!
word
end
def file_at(path)
FileUtils.mkdir_p(File.dirname(path))
File.new(path, 'w')
end
end
end