mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
d24e0f0ec9
Plugins V2 API: CLI Command Plugin Type Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
require 'minitest/autorun'
|
|
require 'minitest/test'
|
|
require 'byebug'
|
|
|
|
require_relative '../../../../lib/inspec/plugin/v2'
|
|
|
|
class CliCommandSuperclassTests < MiniTest::Test
|
|
# you can call Inspec.plugin(2, :cli_command) and get the plugin base class
|
|
def test_calling_Inspec_dot_plugin_with_cli_returns_the_cli_base_class
|
|
klass = Inspec.plugin(2, :cli_command)
|
|
assert_kind_of Class, klass
|
|
assert_equal 'Inspec::Plugin::V2::PluginType::CliCommand', klass.name
|
|
end
|
|
|
|
def test_plugin_type_base_classes_can_be_accessed_by_name
|
|
klass = Inspec::Plugin::V2::PluginBase.base_class_for_type(:cli_command)
|
|
assert_kind_of Class, klass
|
|
assert_equal 'Inspec::Plugin::V2::PluginType::CliCommand', klass.name
|
|
end
|
|
|
|
def test_plugin_type_registers_an_activation_dsl_method
|
|
klass = Inspec::Plugin::V2::PluginBase
|
|
assert_respond_to klass, :cli_command, 'Activation method for cli_command'
|
|
end
|
|
|
|
def test_cli_plugin_type_inherits_from_thor
|
|
klass = Inspec.plugin(2, :cli_command)
|
|
assert_includes klass.ancestors, ::Thor, 'Cli Command plugin type should inherit from Thor'
|
|
end
|
|
end
|
|
|
|
class CliCommandPluginV2API < MiniTest::Test
|
|
def test_cli_command_api_methods_present
|
|
# instance methods
|
|
[
|
|
:invoke,
|
|
].each do |method_name|
|
|
klass = Inspec::Plugin::V2::PluginType::CliCommand
|
|
assert klass.method_defined?(method_name), "CliCommand api instance method: #{method_name}"
|
|
end
|
|
end
|
|
end
|