Sha256: 051d45afa342218043202432802e20e334741d45fbfe5a7d93770883fbe92cae

Contents?: true

Size: 1.67 KB

Versions: 1

Compression:

Stored size: 1.67 KB

Contents

require 'albacore/albacoremodel'
require 'albacore/config/xunitconfig'

class XUnitTestRunner
  include AlbacoreModel
  include RunCommand
  include Configuration::XUnit

  attr_accessor :html_output
  attr_array :options,:assembly,:assemblies

  def initialize(command=nil)
    @options=[]
    super()
    update_attributes xunit.to_hash
    @command = command unless command.nil?
  end

  def get_command_line
    command_params = []
    command_params << @command
    command_params << get_command_parameters
    commandline = command_params.join(" ")
    @logger.debug "Build XUnit Test Runner Command Line: " + commandline
    commandline
  end
  
  def get_command_parameters
    command_params = []	
    command_params << @options.join(" ") unless @options.nil?
    command_params << build_html_output unless @html_output.nil?
    command_params
  end

  def execute()    		
    @assemblies = [] if @assemblies.nil?
    @assemblies << @assembly unless @assembly.nil?
    fail_with_message 'At least one assembly is required for assemblies attr' if @assemblies.length==0	
    failure_message = 'XUnit Failed. See Build Log For Detail'		
    
    @assemblies.each do |assm|
      command_params = get_command_parameters.collect{ |p| p % File.basename(assm) }
      command_params.insert(0,assm)	
      result = run_command "XUnit", command_params.join(" ")
      fail_with_message failure_message if !result
    end       
  end

  def build_html_output			
    fail_with_message 'Directory is required for html_output' if !File.directory?(File.expand_path(@html_output))
    "/html #{File.join(File.expand_path(@html_output),"%s.html")}" 	
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 lib/albacore/xunittestrunner.rb