2015-09-03 17:25:43 +00:00
|
|
|
#!/usr/bin/env rake
|
|
|
|
# encoding: utf-8
|
|
|
|
|
2015-11-05 17:50:53 +00:00
|
|
|
require 'bundler'
|
|
|
|
require 'bundler/gem_tasks'
|
2015-09-02 02:13:59 +00:00
|
|
|
require 'rake/testtask'
|
2015-09-03 17:25:43 +00:00
|
|
|
require 'rubocop/rake_task'
|
2015-10-30 13:38:21 +00:00
|
|
|
require_relative 'tasks/maintainers'
|
2015-09-03 17:25:43 +00:00
|
|
|
|
|
|
|
# Rubocop
|
|
|
|
desc 'Run Rubocop lint checks'
|
|
|
|
task :rubocop do
|
|
|
|
RuboCop::RakeTask.new
|
|
|
|
end
|
|
|
|
|
|
|
|
# lint the project
|
|
|
|
desc 'Run robocop linter'
|
|
|
|
task lint: [:rubocop]
|
2015-09-02 02:13:59 +00:00
|
|
|
|
2015-09-03 17:25:43 +00:00
|
|
|
# run tests
|
2015-10-13 09:29:10 +00:00
|
|
|
task default: [:test, :lint]
|
|
|
|
|
2015-09-02 02:13:59 +00:00
|
|
|
Rake::TestTask.new do |t|
|
|
|
|
t.libs << 'test'
|
2015-10-17 20:53:21 +00:00
|
|
|
t.pattern = 'test/unit/**/*_test.rb'
|
2015-09-02 02:13:59 +00:00
|
|
|
t.warning = true
|
|
|
|
t.verbose = true
|
2015-09-03 18:35:23 +00:00
|
|
|
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
|
2015-09-02 02:13:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
namespace :test do
|
|
|
|
task :isolated do
|
2015-09-15 13:52:07 +00:00
|
|
|
Dir.glob('test/unit/*_test.rb').all? do |file|
|
2015-09-02 02:13:59 +00:00
|
|
|
sh(Gem.ruby, '-w', '-Ilib:test', file)
|
2015-09-14 08:29:31 +00:00
|
|
|
end or fail 'Failures'
|
2015-09-02 02:13:59 +00:00
|
|
|
end
|
2015-09-03 11:22:15 +00:00
|
|
|
|
2015-09-14 08:28:07 +00:00
|
|
|
task :resources do
|
2015-09-22 17:35:31 +00:00
|
|
|
tests = Dir['test/resource/*_test.rb']
|
2015-09-03 11:22:15 +00:00
|
|
|
return if tests.empty?
|
2015-09-22 15:43:08 +00:00
|
|
|
sh(Gem.ruby, 'test/docker_test.rb', *tests)
|
2015-09-03 11:22:15 +00:00
|
|
|
end
|
2015-10-21 20:52:41 +00:00
|
|
|
|
|
|
|
task :vm do
|
|
|
|
concurrency = ENV['CONCURRENCY'] || 4
|
|
|
|
path = File.join(File.dirname(__FILE__), 'test', 'integration')
|
|
|
|
sh('sh', '-c', "cd #{path} && bundle exec kitchen test -c #{concurrency} -t .")
|
|
|
|
end
|
2015-09-02 02:13:59 +00:00
|
|
|
end
|
2015-11-20 21:38:12 +00:00
|
|
|
|
|
|
|
# Automatically generate a changelog for this project. Only loaded if
|
|
|
|
# the necessary gem is installed.
|
|
|
|
begin
|
|
|
|
require 'github_changelog_generator/task'
|
|
|
|
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
2015-11-26 17:58:53 +00:00
|
|
|
require_relative 'lib/inspec/version'
|
2015-11-20 21:48:38 +00:00
|
|
|
config.since_tag = '0.7.0'
|
2015-11-20 22:32:49 +00:00
|
|
|
config.future_release = Inspec::VERSION
|
2015-11-20 21:38:12 +00:00
|
|
|
end
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2015-11-26 17:58:53 +00:00
|
|
|
|
|
|
|
# Print the current version of this gem or update it.
|
|
|
|
#
|
|
|
|
# @param [Type] target the new version you want to set, or nil if you only want to show
|
|
|
|
def inspec_version(target = nil)
|
|
|
|
path = 'lib/inspec/version.rb'
|
|
|
|
require_relative path.sub(/.rb$/, '')
|
|
|
|
|
|
|
|
nu_version = target.nil? ? '' : " -> #{target}"
|
|
|
|
puts "Inspec: #{Inspec::VERSION}#{nu_version}"
|
|
|
|
|
|
|
|
unless target.nil?
|
|
|
|
raw = File.read(path)
|
|
|
|
nu = raw.sub(/VERSION.*/, "VERSION = '#{target}'")
|
|
|
|
File.write(path, nu)
|
|
|
|
load(path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Check if a command is available
|
|
|
|
#
|
|
|
|
# @param [Type] x the command you are interested in
|
|
|
|
# @param [Type] msg the message to display if the command is missing
|
|
|
|
def require_command(x, msg = nil)
|
|
|
|
return if system("command -v #{x} || exit 1")
|
|
|
|
msg ||= 'Please install it first!'
|
|
|
|
puts "\033[31;1mCan't find command #{x.inspect}. #{msg}\033[0m"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
# Check if a required environment variable has been set
|
|
|
|
#
|
|
|
|
# @param [String] x the variable you are interested in
|
|
|
|
# @param [String] msg the message you want to display if the variable is missing
|
|
|
|
def require_env(x, msg = nil)
|
|
|
|
exists = `env | grep "^#{x}="`
|
|
|
|
return unless exists.empty?
|
|
|
|
puts "\033[31;1mCan't find environment variable #{x.inspect}. #{msg}\033[0m"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
# Check the requirements for running an update of this repository.
|
|
|
|
def check_update_requirements
|
|
|
|
require_command 'git'
|
|
|
|
require_command 'github_changelog_generator', "\n"\
|
|
|
|
"For more information on how to install it see:\n"\
|
|
|
|
" https://github.com/skywinder/github-changelog-generator\n"
|
|
|
|
require_env 'CHANGELOG_GITHUB_TOKEN', "\n"\
|
|
|
|
"Please configure this token to make sure you can run all commands\n"\
|
|
|
|
"against GitHub.\n\n"\
|
|
|
|
"See github_changelog_generator homepage for more information:\n"\
|
|
|
|
" https://github.com/skywinder/github-changelog-generator\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Show the current version of this gem.
|
|
|
|
desc 'Show the version of this gem'
|
|
|
|
task :version do
|
|
|
|
inspec_version
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update the version of this gem and create an updated
|
|
|
|
# changelog. It covers everything short of actually releasing
|
|
|
|
# the gem.
|
|
|
|
desc 'Bump the version of this gem'
|
|
|
|
task :bump_version, [:version] do |_, args|
|
|
|
|
v = args[:version] || ENV['to']
|
|
|
|
fail "You must specify a target version! rake release[1.2.3]" if v.empty?
|
|
|
|
check_update_requirements
|
|
|
|
inspec_version(v)
|
|
|
|
Rake::Task['changelog'].invoke
|
|
|
|
end
|