Sha256: c2c5ef8cf1c636b8052a2048cc2afa0f47d98eec64245c1288af606272f79251

Contents?: true

Size: 1.7 KB

Versions: 7

Compression:

Stored size: 1.7 KB

Contents

# frozen_string_literal: true
require 'cucumber/core/test/result'
require 'cucumber/core/test/timer'
require 'cucumber/core/test/result'
require 'cucumber/core/ast/location'

module Cucumber
  module Core
    module Test
      class Action
        def initialize(location = nil, &block)
          raise ArgumentError, "Passing a block to execute the action is mandatory." unless block
          @location = location ? location : Ast::Location.new(*block.source_location)
          @block = block
          @timer = Timer.new
        end

        def skip(*)
          skipped
        end

        def execute(*args)
          @timer.start
          @block.call(*args)
          passed
        rescue Result::Raisable => exception
          exception.with_duration(@timer.duration)
        rescue Exception => exception
          failed(exception)
        end

        def location
          @location
        end

        def inspect
          "#<#{self.class}: #{location}>"
        end

        private

        def passed
          Result::Passed.new(@timer.duration)
        end

        def failed(exception)
          Result::Failed.new(@timer.duration, exception)
        end

        def skipped
          Result::Skipped.new
        end
      end

      class UnskippableAction < Action
        def skip(*args)
          execute(*args)
        end
      end

      class UndefinedAction
        attr_reader :location

        def initialize(source_location)
          @location = source_location
        end

        def execute(*)
          undefined
        end

        def skip(*)
          undefined
        end

        private

        def undefined
          Result::Undefined.new
        end
      end

    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/cucumber-core-3.2.1/lib/cucumber/core/test/action.rb
cucumber-core-3.2.1 lib/cucumber/core/test/action.rb
cucumber-core-3.2.0 lib/cucumber/core/test/action.rb
cucumber-core-3.1.0 lib/cucumber/core/test/action.rb
cucumber-core-3.0.0 lib/cucumber/core/test/action.rb
cucumber-core-3.0.0.pre.2 lib/cucumber/core/test/action.rb
cucumber-core-2.0.0 lib/cucumber/core/test/action.rb