Sha256: 47ca9dd8edd8f00c19cab60188d4bf66b7f92ab980471e8d8037d21bee48bc15

Contents?: true

Size: 1.81 KB

Versions: 2

Compression:

Stored size: 1.81 KB

Contents

require 'cucumber/ast/feature_element'

module Cucumber
  module Ast
    class Scenario
      include FeatureElement
      
      def initialize(background, comment, tags, line, keyword, name, steps)
        @background, @comment, @tags, @line, @keyword, @name = background, comment, tags, line, keyword, name
        attach_steps(steps)

        step_invocations = steps.map{|step| step.step_invocation}
        if @background
          @steps = @background.step_collection(step_invocations)
          @background.feature_elements << self
        else
          @steps = StepCollection.new(step_invocations)
        end
      end

      def accept(visitor)
        visitor.visit_comment(@comment)
        visitor.visit_tags(@tags)
        visitor.visit_scenario_name(@keyword, @name, file_colon_line(@line), source_indent(first_line_length))

        skip = @background && @background.failed?
        skip_invoke! if skip
        visitor.step_mother.before_and_after(self, skip) do
          visitor.visit_steps(@steps)
        end
      end

      # Returns true if one or more steps failed
      def failed?
        @steps.failed?
      end

      # Returns true if all steps passed
      def passed?
        @steps.passed?
      end

      # Returns the first exception (if any)
      def exception
        @steps.exception
      end

      def skip_invoke!
        @steps.each{|step_invocation| step_invocation.skip_invoke!}
        @feature.next_feature_element(self) do |next_one|
          next_one.skip_invoke!
        end
      end

      def to_sexp
        sexp = [:scenario, @line, @keyword, @name]
        comment = @comment.to_sexp
        sexp += [comment] if comment
        tags = @tags.to_sexp
        sexp += tags if tags.any?
        steps = @steps.to_sexp
        sexp += steps if steps.any?
        sexp
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
aslakhellesoy-cucumber-0.3.1 lib/cucumber/ast/scenario.rb
cucumber-0.3.1 lib/cucumber/ast/scenario.rb