forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rake_tasks.rb
80 lines (71 loc) · 2.3 KB
/
rake_tasks.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Author:: Fletcher Nichol (<[email protected]>)
#
# Copyright (C) 2012, 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 "rake/tasklib"
require_relative "../kitchen"
module Kitchen
# Kitchen Rake task generator.
#
# @author Fletcher Nichol <[email protected]>
class RakeTasks < ::Rake::TaskLib
# Creates Kitchen Rake tasks and allows the callee to configure it.
#
# @yield [self] gives itself to the block
def initialize(cfg = {})
@loader = Kitchen::Loader::YAML.new(
project_config: ENV["KITCHEN_YAML"],
local_config: ENV["KITCHEN_LOCAL_YAML"],
global_config: ENV["KITCHEN_GLOBAL_YAML"]
)
@config = Kitchen::Config.new(
{ loader: @loader }.merge(cfg)
)
Kitchen.logger = Kitchen.default_file_logger(nil, false)
yield self if block_given?
define
end
# @return [Config] a Kitchen::Config
attr_reader :config
private
# Generates a test Rake task for each instance and one to test all
# instances in serial.
#
# @api private
def define
namespace "kitchen" do
kitchen_commands = %w{create converge setup verify destroy}
config.instances.each do |instance|
desc "Run #{instance.name} test instance"
task instance.name do
instance.test(:always)
end
kitchen_commands.each do |cmd|
namespace cmd do
task instance.name do
instance.send(cmd)
end
desc "Run all #{cmd} instances"
task "all" => config.instances.map(&:name)
end
end
end
desc "Run all test instances"
task "all" => config.instances.map(&:name)
kitchen_commands.each { |cmd| task cmd => "#{cmd}:all" }
end
end
end
end