mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +00:00
811318f2f8
* Functional tests for userdir option * Accepts --config-dir CLI option * Actually loads a config file from the config dir, more cases to test * Able to load config and verify contents from config-dir * Functional tests to ensure precedence for config options * Enable setting config dir via env var * .inspec, not .inspec.d * Begin converting PluginCtl to PluginLoader/Registry * Able to load and partially validate the plugins.json file * More work on the plugin loader * Break the world, move next gen stuff to plugin/ * Be sure to require base cli in bundled plugins * Move test file * Revert changes to v1 plugin, so we can have a separate one * Checkpoint commit * Move v2 plugin work to v2 area * Move plugins v1 code into an isolated directory * rubocop fixes * Rip out the stuff about a user-dir config file, just use a plugin file * Two psuedocode test file * Working base API, moock plugin type, and loader. * Adjust load path to be more welcoming * Silence circular depencency warning, which was breaking a unit test * Linting * Fix plugin type registry, add tests to cover * Feedback from Jerry Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
74 lines
2.2 KiB
Ruby
74 lines
2.2 KiB
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
require 'inspec/base_cli'
|
|
|
|
module Supermarket
|
|
class SupermarketCLI < Inspec::BaseCLI
|
|
namespace 'supermarket'
|
|
|
|
# TODO: find another solution, once https://github.com/erikhuda/thor/issues/261 is fixed
|
|
def self.banner(command, _namespace = nil, _subcommand = false)
|
|
"#{basename} #{subcommand_prefix} #{command.usage}"
|
|
end
|
|
|
|
def self.subcommand_prefix
|
|
namespace
|
|
end
|
|
|
|
desc 'profiles', 'list all available profiles in Chef Supermarket'
|
|
def profiles
|
|
# display profiles in format user/profile
|
|
supermarket_profiles = Supermarket::API.profiles
|
|
|
|
headline('Available profiles:')
|
|
supermarket_profiles.each { |p|
|
|
li("#{p['tool_name']} #{mark_text(p['tool_owner'] + '/' + p['slug'])}")
|
|
}
|
|
end
|
|
|
|
desc 'exec PROFILE', 'execute a Supermarket profile'
|
|
exec_options
|
|
def exec(*tests)
|
|
o = opts(:exec).dup
|
|
diagnose(o)
|
|
configure_logger(o)
|
|
|
|
# iterate over tests and add compliance scheme
|
|
tests = tests.map { |t| 'supermarket://' + t }
|
|
|
|
runner = Inspec::Runner.new(o)
|
|
tests.each { |target| runner.add_target(target) }
|
|
|
|
exit runner.run
|
|
rescue ArgumentError, RuntimeError, Train::UserError => e
|
|
$stderr.puts e.message
|
|
exit 1
|
|
end
|
|
|
|
desc 'info PROFILE', 'display Supermarket profile details'
|
|
def info(profile)
|
|
# check that the profile is available
|
|
supermarket_profiles = Supermarket::API.profiles
|
|
found = supermarket_profiles.select { |p|
|
|
profile == "#{p['tool_owner']}/#{p['slug']}"
|
|
}
|
|
|
|
if found.empty?
|
|
puts "#{mark_text(profile)} is not available on Supermarket"
|
|
return
|
|
end
|
|
|
|
# load details for the specific profile
|
|
info = Supermarket::API.info(profile)
|
|
puts "#{mark_text('name: ')} #{info['slug']}"
|
|
puts "#{mark_text('owner:')} #{info['owner']}"
|
|
puts "#{mark_text('url: ')} #{info['source_url']}"
|
|
puts
|
|
puts "#{mark_text('description: ')} #{info['description']}"
|
|
end
|
|
end
|
|
|
|
# register the subcommand to Inspec CLI registry
|
|
Inspec::Plugins::CLI.add_subcommand(SupermarketCLI, 'supermarket', 'supermarket SUBCOMMAND ...', 'Supermarket commands', {})
|
|
end
|