Sha256: c232b68607e271cb1ec1d10c73f46214098d56c5a9dfee082dc1b4b20d700ece

Contents?: true

Size: 1.66 KB

Versions: 3

Compression:

Stored size: 1.66 KB

Contents

require 'rake'

module Henry

  class Task

    # The Henry Task implementation for Rake Tasks
    class RakeTask < Task

      # The temporary output file path for the RakeTask execution.
      #
      # @return [String] the output file path.
      OUT_PATH = 'rake.out'

      # The Rake Application name.
      #
      # @return [String] the rake application name.
      APPLICATION_NAME = 'rake'

      # Executes the Task and returns its results.
      def execute
        begin 
          Rake.application[self.application_name].invoke 
 
          self.execution.code = 'OK'
          self.execution.message = 'OK'
          self.execution.output = File.open(self.out_path, 'r').read
          self.execution.log = self.logger.log_as_hash
        rescue Errno::ENOENT => e
          self.execution.code = 'ERROR'
          self.execution.message = e.message 
          self.execution.output = 'Output file missing, please check the task logs.'
          self.execution.backtrace = e.backtrace
          self.execution.log = self.logger.log_as_hash
        rescue Exception => e
          self.execution.code = 'ERROR'
          self.execution.message = e.message
          self.execution.output = File.open(self.out_path, 'r').read
          self.execution.backtrace = e.backtrace
          self.execution.log = self.logger.log_as_hash
        end
      end

      # Configures the Task.
      #
      # @param [Hash] params the task params.
      # @param [Hash] extended_context task extended context.
      def configure(params, extended_context={}, options={})
      end

    end
  
  end

end

require_relative 'cucumber_task'
require_relative 'rspec_task'
require_relative 'minitest_task'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
henry-container-0.1.73 lib/henry/task/rake_task.rb
henry-container-0.1.72 lib/henry/task/rake_task.rb
henry-container-0.1.71 lib/henry/task/rake_task.rb