Sha256: fc203cb447a6c3e5f69e72ef871c2bb74ce7759a8689e6b96246f99eec7d4cc0
Contents?: true
Size: 1.9 KB
Versions: 6
Compression:
Stored size: 1.9 KB
Contents
# This unit test performs some tests to verify that # the inspec-resource-lister plugin is configured correctly. # Include our test harness require_relative '../helper' # Load the class under test, the Plugin definition. require 'inspec-resource-lister/plugin' # Because InSpec is a Spec-style test suite, we're going to use MiniTest::Spec # here, for familiar look and feel. However, this isn't InSpec (or RSpec) code. describe InspecPlugins::ResourceLister::Plugin do # When writing tests, you can use `let` to create variables that you # can reference easily. # Internally, plugins are always known by a Symbol name. Convert here. let(:plugin_name) { :'inspec-resource-lister' } # The Registry knows about all plugins that ship with InSpec by # default, as well as any that are installed by the user. When a # plugin definition is loaded, it will also self-register. let(:registry) { Inspec::Plugin::V2::Registry.instance } # The plugin status record tells us what the Registry knows. # Note that you can use previously-defined 'let's. let(:status) { registry[plugin_name] } # OK, actual tests! # Does the Registry know about us at all? it "should be registered" do registry.known_plugin?(plugin_name) end # Some tests through here use minitest Expectations, which attach to all # Objects, and begin with 'must' (positive) or 'wont' (negative) # See https://ruby-doc.org/stdlib-2.1.0/libdoc/minitest/rdoc/MiniTest/Expectations.html # The plugin system had an undocumented v1 API; this should be a v2 example. it "should be an api-v2 plugin" do status.api_generation.must_equal(2) end # Plugins can support several different activator hooks, each of which has a type. # Since this is (primarily) a CliCommand plugin, we'd expect to see that among our types. it "should include a cli_command activator hook" do status.plugin_types.must_include(:cli_command) end end
Version data entries
6 entries across 6 versions & 2 rubygems