inspec/Rakefile

221 lines
6.5 KiB
Ruby
Raw Normal View History

2015-09-03 17:25:43 +00:00
#!/usr/bin/env rake
# encoding: utf-8
require 'bundler'
require 'bundler/gem_tasks'
require 'rake/testtask'
2015-09-03 17:25:43 +00:00
require 'rubocop/rake_task'
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]
# update command output for demo
2016-08-25 15:24:22 +00:00
desc 'Run inspec commands and save results to www/app/responses'
task :update_demo do
2016-08-25 15:24:22 +00:00
commands = 'tasks/command_simulator.rb'
ruby commands
end
2015-09-03 17:25:43 +00:00
# run tests
task default: [:test, :lint]
Rake::TestTask.new do |t|
t.libs << 'test'
2015-10-17 20:53:21 +00:00
t.pattern = 'test/unit/**/*_test.rb'
t.warning = true
t.verbose = true
2015-09-03 18:35:23 +00:00
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
end
namespace :test do
task :isolated do
Dir.glob('test/unit/*_test.rb').all? do |file|
sh(Gem.ruby, '-w', '-Ilib:test', file)
end or fail 'Failures'
end
2016-03-16 07:22:46 +00:00
Rake::TestTask.new(:functional) do |t|
t.libs << 'test'
t.pattern = 'test/functional/**/*_test.rb'
t.warning = true
t.verbose = true
t.ruby_opts = ['--dev'] if defined?(JRUBY_VERSION)
end
task :resources do
tests = Dir['test/resource/*_test.rb']
return if tests.empty?
sh(Gem.ruby, 'test/docker_test.rb', *tests)
end
2015-10-21 20:52:41 +00:00
2016-05-10 17:23:11 +00:00
task :integration do
concurrency = ENV['CONCURRENCY'] || 1
os = ENV['OS'] || ''
sh('sh', '-c', "bundle exec kitchen test -c #{concurrency} #{os}")
2015-10-21 20:52:41 +00:00
end
2015-12-18 21:54:56 +00:00
task :ssh, [:target] do |_t, args|
tests_path = File.join(File.dirname(__FILE__), 'test', 'integration', 'test', 'integration', 'default')
key_files = ENV['key_files'] || File.join(ENV['HOME'], '.ssh', 'id_rsa')
sh_cmd = "bin/inspec exec #{tests_path}/"
sh_cmd += ENV['test'] ? "#{ENV['test']}_spec.rb" : '*'
2015-12-19 00:43:23 +00:00
sh_cmd += " --sudo" unless args[:target].split('@')[0] == 'root'
2015-12-18 21:54:56 +00:00
sh_cmd += " -t ssh://#{args[:target]}"
sh_cmd += " --key_files=#{key_files}"
sh_cmd += " --format=#{ENV['format']}" if ENV['format']
sh('sh', '-c', sh_cmd)
end
end
2015-11-20 21:38:12 +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)
2016-01-15 20:41:20 +00:00
nu = raw.sub(/VERSION.*/, "VERSION = '#{target}'.freeze")
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
2015-12-11 17:27:16 +00:00
desc 'Generate the changelog'
task :changelog do
require_relative 'lib/inspec/version'
system "github_changelog_generator -u chef -p inspec --future-release #{Inspec::VERSION} --since-tag 0.7.0"
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']
2016-01-05 15:58:09 +00:00
fail "You must specify a target version! rake bump_version to=1.2.3" if v.empty?
check_update_requirements
inspec_version(v)
Rake::Task['changelog'].invoke
2016-08-26 09:45:00 +00:00
Rake::Task['docs:cli'].invoke
end
desc 'Release a new docker image'
task :release_docker do
version = Inspec::VERSION
cmd = "rm *.gem; gem build *gemspec && "\
"mv *.gem inspec.gem && "\
"docker build -t chef/inspec:#{version} . && "\
"docker push chef/inspec:#{version}"
puts "--> #{cmd}"
sh('sh', '-c', cmd)
end
2016-08-12 11:17:55 +00:00
namespace :docs do
desc 'Create cli docs'
task :cli do
res = "=====================================================\n"\
"InSpec CLI\n"\
"=====================================================\n\n"\
"Use the InSpec CLI to run tests and audits against targets "\
"using local, SSH, WinRM, or Docker connections.\n\n"
require 'inspec/cli'
cmds = Inspec::InspecCLI.all_commands
cmds.keys.sort.each do |key|
cmd = cmds[key]
res << "#{cmd.usage.split.first}\n"\
"=====================================================\n\n"
res << cmd.description.capitalize
res << "\n\n"
res << "Syntax\n"\
"-----------------------------------------------------\n\n"
res << "This subcommand has the following syntax:\n\n"\
".. code-block:: bash\n\n"\
" $ inspec #{cmd.usage}\n\n"
opts = cmd.options.select { |_, o| !o.hide }
unless opts.empty?
res << "Options\n"\
"-----------------------------------------------------\n\n"\
"This subcommand has additional options:\n\n"
opts.keys.sort.each do |option|
opt = cmd.options[option]
# TODO: remove when UX of help is reworked 1.0
usage = opt.usage.split(', ')
.map { |x| x.tr('[]', '') }
.map { |x| x.start_with?('-') ? x : '-'+x }
.map { |x| '``' + x + '``' }
res << "#{usage.join(', ')}\n #{opt.description}\n\n"
end
end
res << "\n\n"
end
dst = 'docs/cli.rst'
File.write(dst, res)
puts "Documentation generated in #{dst.inspect}"
end
end