Class: SnippetExtractor

Inherits:
Object show all
Defined in:
lib/cucumber/formatter/html.rb

Overview

:nodoc:

Defined Under Namespace

Classes: NullConverter

Instance Method Summary collapse

Instance Method Details

#lines_around(file, line) ⇒ Object



548
549
550
551
552
553
554
555
556
557
558
559
# File 'lib/cucumber/formatter/html.rb', line 548

def lines_around(file, line)
  if File.file?(file)
    lines = File.open(file).read.split("\n")
    min = [0, line-3].max
    max = [line+1, lines.length-1].min
    selected_lines = []
    selected_lines.join("\n")
    lines[min..max].join("\n")
  else
    "# Couldn't get snippet for #{file}"
  end
end

#post_process(highlighted, offending_line) ⇒ Object



561
562
563
564
565
566
567
568
569
# File 'lib/cucumber/formatter/html.rb', line 561

def post_process(highlighted, offending_line)
  new_lines = []
  highlighted.split("\n").each_with_index do |line, i|
    new_line = "<span class=\"linenum\">#{offending_line+i-2}</span>#{line}"
    new_line = "<span class=\"offending\">#{new_line}</span>" if i == 2
    new_lines << new_line
  end
  new_lines.join("\n")
end

#snippet(error) ⇒ Object



530
531
532
533
534
535
# File 'lib/cucumber/formatter/html.rb', line 530

def snippet(error)
  raw_code, line = snippet_for(error[0])
  highlighted = @@converter.convert(raw_code, false)
  highlighted << "\n<span class=\"comment\"># gem install syntax to get syntax highlighting</span>" if @@converter.is_a?(NullConverter)
  post_process(highlighted, line)
end

#snippet_for(error_line) ⇒ Object



537
538
539
540
541
542
543
544
545
546
# File 'lib/cucumber/formatter/html.rb', line 537

def snippet_for(error_line)
  if error_line =~ /(.*):(\d+)/
    file = $1
    line = $2.to_i
    [lines_around(file, line), line]
  else
    return snippet_for()
    ["# Couldn't get snippet for #{error_line}", 1]
  end
end