# -*- encoding: utf-8 -*- # # Author:: Fletcher Nichol () # # Copyright (C) 2013, Fletcher Nichol # # 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" module Kitchen module Provisioner # Dummy provisioner for Kitchen. This driver does nothing but report what # would happen if this provisioner did anything of consequence. As a result # it may be a useful provisioner to use when debugging or developing new # features or plugins. # # @author Fletcher Nichol class Dummy < Kitchen::Provisioner::Base kitchen_provisioner_api_version 2 plugin_version Kitchen::VERSION default_config :sleep, 0 default_config :random_failure, false # (see Base#call) def call(state) info("[#{name}] Converge on instance=#{instance} with state=#{state}") sleep_if_set failure_if_set debug("[#{name}] Converge completed (#{config[:sleep]}s).") end private # Sleep for a period of time, if a value is set in the config. # # @api private def sleep_if_set sleep(config[:sleep].to_f) if config[:sleep].to_f > 0.0 end # Simulate a failure in an action, if set in the config. # # @api private def failure_if_set if config[:fail] debug("Failure for Provisioner #{name}.") raise ActionFailed, "Action #converge failed for #{instance.to_str}." elsif config[:random_failure] && randomly_fail? debug("Random failure for Provisioner #{name}.") raise ActionFailed, "Action #converge failed for #{instance.to_str}." end end # Determine whether or not to randomly fail. # # @return [true, false] # @api private def randomly_fail? [true, false].sample end end end end