Sha256: 07cf56434e7f51dfc83e44036d081ae9a465100ab04443a8e7d73f046cedf7ce
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
require 'yaml' require 'tempfile' module Kaya module Cucumber class Task def self.run result result.kaya_report_file_name= "kaya_report_#{result.id}.html" begin File.delete("#{Dir.pwd}/Gemfile.lock") rescue end if Kaya::Support::ChangeInspector.is_there_a_change? or not Kaya::Support::ChangeInspector.is_there_gemfile_lock? bundle_output = Kaya::Support::Console.execute "bundle install" $K_LOG.debug "[result:#{result.id}] Bundle install performed" if $K_LOG result.save_to_bundle_output bundle_output raise "An error ocurred installing gem" if bundle_output.include? "Could not find" end # Adding _id=result.id to use inside execution the posiibility to add information to the result result.kaya_command= "#{Kaya::Support::Configuration.headless?} bundle exec cucumber #{result.command} -f pretty -f html -o kaya/temp/#{result.kaya_report_file_name} #{result.custom_params_values} _id=#{result.id} " result.console_output_file_name= "kaya_co_#{result.id}.out" result.save! command = "#{result.kaya_command} 2>&1 | tee -a kaya/temp/#{result.console_output_file_name}" $K_LOG.debug "[result:#{result.id}] Running in headless mode" if $K_LOG and Kaya::Support::Configuration.headless? Dir.mkdir "#{Dir.pwd}/kaya/temp" unless Dir.exist? "#{Dir.pwd}/kaya/temp" $K_LOG.debug "[result:#{result.id}] Creating process" if $K_LOG result.pid= Kaya::Support::Processes.fork_this command result.running! result.save! $K_LOG.debug "[result:#{result.id}] Process => #{result.pid}(PID) | command => saved | result as => running" if $K_LOG # Following actions are performed by background job # result.append_result_to_console_output! # result.save_report! # result.save! # result.append_result_to_console_output! end # end self.run end #end Task class end # enc Cucumber module end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kaya-0.0.4 | lib/kaya/cucumber/task.rb |