Sha256: 672ccb1b7b74b08defcd4db480c840fbe909d0fb3591609be1bad3b5f6e471b5

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

require 'albacore/albacoremodel'
require 'albacore/config/mspecconfig'

class MSpecTestRunner
  include AlbacoreModel
  include RunCommand
  include Configuration::MSpec
  
  attr_accessor :html_output
  attr_array :assemblies, :options
  
  def initialize(command=nil)
    @assemblies=[]
    super()
    update_attributes mspec.to_hash
    @command = command unless command.nil?
  end
  
  def get_command_line
    command = []
    command << @command
    command << get_command_parameters
    cmd = command.join(" ")
    @logger.debug "Build MSpec Test Runner Command Line: " + cmd
        return cmd
  end
  
  def get_command_parameters
    command_params = []
    command_params << build_assembly_list unless @assemblies.empty?
    command_params << @options.join(" ") unless @options.nil?
    command_params << build_html_output unless @html_output.nil?
    command_params
  end
  
  def execute()
    command_params = get_command_parameters
    result = run_command "MSpec", command_params.join(" ")
    
    failure_message = 'MSpec Failed. See Build Log For Detail'
    fail_with_message failure_message if !result
  end
  
  def build_assembly_list
    @assemblies.map{|asm| "\"#{asm}\""}.join(" ") 
  end
  
  def build_html_output
    "--html #{@html_output}"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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