newcontext-oss/kitchen-terraform

View on GitHub
lib/kitchen/terraform/configurable.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

# Copyright 2016-2021 Copado NCS LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "kitchen"
require "kitchen/terraform/version"
require "rubygems"
require "shellwords"

module Kitchen
  module Terraform
    # Refinements to Kitchen::Configurable.
    # This class implements the interface of Kitchen::Configurable which requires the following Reek suppressions:
    # :reek:MissingSafeMethod { exclude: [ finalize_config! ] }
    # @see https://github.com/test-kitchen/test-kitchen/blob/v1.16.0/lib/kitchen/configurable.rb Kitchen::Configurable
    module Configurable
      # A callback to define the plugin version which is invoked when this module is included in a plugin class.
      #
      # @return [self]
      def self.included(configurable_class)
        ::Kitchen::Terraform::Version.assign_plugin_version configurable_class: configurable_class
        self
      end

      # #finalize_config! invokes the super implementation and then defines the workspace name and version requirement.
      #
      # @param instance [Kitchen::Instance] an associated instance.
      # @raise [Kitchen::ClientError] if the instance is nil.
      # @return [self]
      def finalize_config!(instance)
        super instance
        self.version_requirement = ::Gem::Requirement.new ">= 0.11.4", "< 2.0.0"
        self.workspace_name = "kitchen-terraform-#{::Shellwords.escape instance.name}"
      end

      private

      attr_accessor :version_requirement, :workspace_name

      def expand_paths!
        validate_config! if !@validate_config_called
        super
      end

      def validate_config!
        @validate_config_called ||= true
        super
      end
    end
  end
end