Class: RuboCop::RSpec::ExpectOffense::AnnotatedSource
- Inherits:
-
Object
- Object
- RuboCop::RSpec::ExpectOffense::AnnotatedSource
- Defined in:
- lib/rubocop/rspec/expect_offense.rb
Overview
Parsed representation of code annotated with the ‘^^^ Message` style
Constant Summary collapse
- ANNOTATION_PATTERN =
/\A\s*\^+ /.freeze
Class Method Summary collapse
-
.parse(annotated_source) ⇒ AnnotatedSource
Separates annotation lines from source lines.
Instance Method Summary collapse
-
#initialize(lines, annotations) ⇒ AnnotatedSource
constructor
A new instance of AnnotatedSource.
-
#plain_source ⇒ String
Return the plain source code without annotations.
-
#to_s ⇒ String
Construct annotated source string (like what we parse).
-
#with_offense_annotations(offenses) ⇒ self
Annotate the source code with the RuboCop offenses provided.
Constructor Details
#initialize(lines, annotations) ⇒ AnnotatedSource
annotations are sorted so that reconstructing the annotation text via #to_s is deterministic
Returns a new instance of AnnotatedSource.
169 170 171 172 |
# File 'lib/rubocop/rspec/expect_offense.rb', line 169 def initialize(lines, annotations) @lines = lines.freeze @annotations = annotations.sort.freeze end |
Class Method Details
.parse(annotated_source) ⇒ AnnotatedSource
Separates annotation lines from source lines. Tracks the real source line number that each annotation corresponds to.
148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'lib/rubocop/rspec/expect_offense.rb', line 148 def self.parse(annotated_source) source = [] annotations = [] annotated_source.each_line do |source_line| if source_line =~ ANNOTATION_PATTERN annotations << [source.size, source_line] else source << source_line end end new(source, annotations) end |
Instance Method Details
#plain_source ⇒ String
Return the plain source code without annotations
210 211 212 |
# File 'lib/rubocop/rspec/expect_offense.rb', line 210 def plain_source lines.join end |
#to_s ⇒ String
Construct annotated source string (like what we parse)
Reconstruct a deterministic annotated source string. This is useful for eliminating semantically irrelevant annotation ordering differences.
197 198 199 200 201 202 203 204 205 |
# File 'lib/rubocop/rspec/expect_offense.rb', line 197 def to_s reconstructed = lines.dup annotations.reverse_each do |line_number, annotation| reconstructed.insert(line_number, annotation) end reconstructed.join end |
#with_offense_annotations(offenses) ⇒ self
Annotate the source code with the RuboCop offenses provided
219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/rubocop/rspec/expect_offense.rb', line 219 def with_offense_annotations(offenses) offense_annotations = offenses.map do |offense| indent = ' ' * offense.column carets = '^' * offense.column_length [offense.line, "#{indent}#{carets} #{offense.}\n"] end self.class.new(lines, offense_annotations) end |