Class: Matcha::Runner::SpecRunner
- Inherits:
-
Object
- Object
- Matcha::Runner::SpecRunner
- Defined in:
- lib/matcha/runner.rb
Instance Attribute Summary collapse
-
#runner ⇒ Object
readonly
Returns the value of attribute runner.
-
#spec ⇒ Object
readonly
Returns the value of attribute spec.
Instance Method Summary collapse
- #dots ⇒ Object
- #examples ⇒ Object
- #failed_examples ⇒ Object
- #failure_messages ⇒ Object
-
#initialize(runner, spec) ⇒ SpecRunner
constructor
A new instance of SpecRunner.
- #io ⇒ Object
- #passed? ⇒ Boolean
- #run ⇒ Object
- #session ⇒ Object
Constructor Details
#initialize(runner, spec) ⇒ SpecRunner
Returns a new instance of SpecRunner.
30 31 32 33 |
# File 'lib/matcha/runner.rb', line 30 def initialize(runner, spec) @runner = runner @spec = spec end |
Instance Attribute Details
#runner ⇒ Object (readonly)
Returns the value of attribute runner.
28 29 30 |
# File 'lib/matcha/runner.rb', line 28 def runner @runner end |
#spec ⇒ Object (readonly)
Returns the value of attribute spec.
28 29 30 |
# File 'lib/matcha/runner.rb', line 28 def spec @spec end |
Instance Method Details
#dots ⇒ Object
81 82 83 |
# File 'lib/matcha/runner.rb', line 81 def dots examples; "" end |
#examples ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/matcha/runner.rb', line 50 def examples @results ||= begin session.visit(spec.url) previous_results = "" session.wait_until(300) do dots = session.evaluate_script('Matcha.dots') io.print dots.sub(/^#{Regexp.escape(previous_results)}/, '') io.flush previous_results = dots session.evaluate_script('Matcha.done') end dots = session.evaluate_script('Matcha.dots') io.print dots.sub(/^#{Regexp.escape(previous_results)}/, '') JSON.parse(session.evaluate_script('Matcha.getResults()')).map do |row| Example.new(row) end end end |
#failed_examples ⇒ Object
73 74 75 |
# File 'lib/matcha/runner.rb', line 73 def failed_examples examples.select { |example| not example.passed? } end |
#failure_messages ⇒ Object
85 86 87 88 89 |
# File 'lib/matcha/runner.rb', line 85 def unless passed? examples.map { |example| example. }.compact.join("\n\n") end end |
#io ⇒ Object
39 40 41 |
# File 'lib/matcha/runner.rb', line 39 def io runner.io end |
#passed? ⇒ Boolean
77 78 79 |
# File 'lib/matcha/runner.rb', line 77 def passed? examples.all? { |example| example.passed? } end |
#run ⇒ Object
43 44 45 46 47 48 |
# File 'lib/matcha/runner.rb', line 43 def run io.puts dots io.puts io.puts "\n#{examples.size} examples, #{failed_examples.size} failures" passed? end |
#session ⇒ Object
35 36 37 |
# File 'lib/matcha/runner.rb', line 35 def session runner.session end |