rakefile 3.0 KB
Newer Older
M
Mark VanderVoord 已提交
1 2 3 4 5 6 7
# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
# ==========================================

UNITY_ROOT = File.expand_path(File.dirname(__FILE__)) + '/'
8
$verbose = false
M
Mark VanderVoord 已提交
9 10 11 12

require 'rake'
require 'rake/clean'
require UNITY_ROOT + 'rakefile_helper'
13
require 'rspec/core/rake_task'
M
Mark VanderVoord 已提交
14 15

TEMP_DIRS = [
16 17
	File.join(UNITY_ROOT, 'build'),
	File.join(UNITY_ROOT, 'sandbox')
M
Mark VanderVoord 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
]

TEMP_DIRS.each do |dir|
  directory(dir)
  CLOBBER.include(dir)
end

task :prepare_for_tests => TEMP_DIRS

include RakefileHelpers

# Load proper GCC as defult configuration
DEFAULT_CONFIG_FILE = 'gcc_auto_stdint.yml'
configure_toolchain(DEFAULT_CONFIG_FILE)

desc "Test unity with its own unit tests"
task :unit => [:prepare_for_tests] do
35
  run_tests unit_test_files
M
Mark VanderVoord 已提交
36 37 38 39 40 41 42 43 44
end

desc "Test unity's helper scripts"
task :scripts => [:prepare_for_tests] do
  Dir['tests/test_*.rb'].each do |scriptfile|
    require "./"+scriptfile
  end
end

45 46 47 48 49
desc "Run all rspecs"
RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = 'spec/**/*_spec.rb'
end

M
Mark VanderVoord 已提交
50 51 52 53 54 55
desc "Generate test summary"
task :summary do
  report_summary
end

desc "Build and test Unity"
56
task :all => [:clean, :prepare_for_tests, :scripts, :unit, :style, :summary]
M
Mark VanderVoord 已提交
57 58 59 60 61 62 63 64 65 66 67 68
task :default => [:clobber, :all]
task :ci => [:no_color, :default]
task :cruise => [:no_color, :default]

desc "Load configuration"
task :config, :config_file do |t, args|
  configure_toolchain(args[:config_file])
end

task :no_color do
  $colour_output = false
end
69 70 71 72

task :verbose do
  $verbose = true
end
73 74 75 76

namespace :style do
  desc "Check style"
  task :check do
77 78
    report "\nVERIFYING RUBY STYLE"
    report execute("rubocop ../auto ../examples ../extras --config .rubocop.yml", true)
79
    report "Styling Ruby:PASS"
80 81
  end

82 83
  namespace :check do
    Dir['../**/*.rb'].each do |f|
84 85 86
      filename = File.basename(f, '.rb')
      desc "Check Style of #{filename}"
      task filename.to_sym => ['style:clean'] do
87
        report execute("rubocop #{f} --color --config .rubocop.yml", true)
88
        report "Style Checked for #{f}"
89 90 91 92
      end
    end
  end

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
  desc "Fix Style of all C Code"
  task :c do
    run_astyle("../src/*.* ../extras/fixture/src/*.*")
  end

  namespace :c do
    Dir['../{src,extras/**}/*.{c,h}'].each do |f|
      filename = File.basename(f)[0..-3]
      desc "Check Style of #{filename}"
      task filename.to_sym do
        run_astyle f
      end
    end
  end

108
  desc "Attempt to Autocorrect style"
109 110
  task :auto  => ['style:clean'] do
    execute("rubocop ../auto ../examples ../extras --auto-correct --config .rubocop.yml")
111 112 113 114
    report "Autocorrected What We Could."
  end

  desc "Update style todo list"
115 116
  task :todo  => ['style:clean'] do
    execute("rubocop ../auto ../examples ../extras --auto-gen-config --config .rubocop.yml")
117 118
    report "Updated Style TODO List."
  end
119 120 121 122

  task :clean do
    File.delete(".rubocop_todo.yml") if File.exists?(".rubocop_todo.yml")
  end
123 124 125
end

task :style => ['style:check']