File: Rakefile

package info (click to toggle)
serverspec-runner 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 192 kB
  • ctags: 18
  • sloc: ruby: 268; makefile: 6
file content (288 lines) | stat: -rw-r--r-- 7,718 bytes parent folder | download | duplicates (2)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
require 'rake'
require 'rspec/core/rake_task'
require 'yaml'
require 'csv'
require 'fileutils'
require 'net/ssh'
require 'open-uri'
require 'serverspec-runner'
require 'serverspec-runner/util/hash'

desc "Run serverspec to all scenario"
task :spec => 'spec:all'

namespace :spec do

  ENV['TEMPLATE_PATH'] = ENV['TEMPLATE_PATH'] || '/usr/share/serverspec-runner'

  ENV['EXEC_PATH'] = '/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/bin'

  if ENV['specroot'] == nil
    if ENV['scenario'] != nil
      ENV['specroot'] = "#{File.dirname(ENV['scenario'])}"
    else
      ENV['specroot'] = '.'
    end
  end

  Dir.chdir(ENV['specroot']) if Dir.exists?(ENV['specroot'])

  ENV['specpath'] = "#{ENV['specroot']}/spec"
  ENV['ssh_options'] = ENV['ssh_options'] || "#{ENV['specroot']}/ssh_options_default.yml"
  ENV['ssh_options'] = "#{ENV['TEMPLATE_PATH']}/ssh_options_default.yml" unless File.exists?(ENV['ssh_options'])

  ssh_options = YAML.load_file(ENV['ssh_options'])
  ENV['result_csv'] = ENV['result_csv'] || './_serverspec_result.csv'
  csv_file = ENV['result_csv']
  CSV.open(csv_file, 'w') { |w| w << ['description', 'result'] }
  ENV['explain'] = ENV['explain'] || "short"
  ENV['tableformat'] = ENV['tableformat'] || "aa"
  ENV['scenario'] = ENV['scenario'] || "./scenario.yml"

  def init_specpath(path)

    abs_path = File::expand_path(path)

    begin
      print "want to create spec-tree to #{abs_path}? (y/n): "
      ans = STDIN.gets.strip
      exit 0 unless (ans == 'y' || ans == 'yes')
    rescue Exception
      exit 0
    end

    FileUtils.mkdir_p("#{path}/lib")
    FileUtils.cp("#{ENV['TEMPLATE_PATH']}/scenario.yml", ENV['specroot'])
    FileUtils.cp("#{ENV['TEMPLATE_PATH']}/ssh_options_default.yml", ENV['specroot'])
    FileUtils.cp("#{ENV['TEMPLATE_PATH']}/.rspec", ENV['specroot'])
    FileUtils.cp_r("#{ENV['TEMPLATE_PATH']}/spec/.", path)
    FileUtils.cp_r("#{ENV['TEMPLATE_PATH']}/lib/extension", "#{ENV['specroot']}/lib")

    puts("Please edit \"#{abs_path}/scenario.yml\" and change directory to \"#{abs_path}\" and exec \"serverspec-runner\" command !!")
  end

  def gen_exec_plan(parent, node, path, ssh_options, tasks, platform)

    if parent == nil
      abs_node = node
    else
      abs_node = parent[node]
    end

    if abs_node.kind_of?(Hash)
      abs_node.keys.each do |n|
        path.push(n.to_s)
        gen_exec_plan(abs_node, n, path, ssh_options, tasks, platform)
      end

      path.pop
    elsif abs_node.kind_of?(Array)
      abs_node.each do |host_alias|
        if platform.include?(host_alias.to_sym)
          ssh_host = platform[host_alias.to_sym][:host]
        else
          platform[host_alias.to_sym] = {}
          ssh_host = host_alias
        end

        platform[host_alias.to_sym][:ssh_opts].each { |k, v| ssh_options[k.to_sym] = v } if platform[host_alias.to_sym].include?(:ssh_opts)
        tasks << "#{path.join('::')}::#{host_alias}"
      end

      path.pop
    end
  end

  def exec_tasks(parent, node, real_path, platform)

    if parent == nil
      abs_node = node
    else
      abs_node = parent[node]
    end

    if abs_node.kind_of?(Hash)
      abs_node.keys.each do |n|
        real_path.push(n)
        exec_tasks(abs_node, n, real_path, platform)
      end

      real_path.pop
    elsif abs_node.kind_of?(Array)
      task_path = "#{real_path.join('::')}"

      abs_node.each do |host_alias|
        desc "Run serverspec to #{task_path}@#{host_alias}"
        RSpec::Core::RakeTask.new("#{task_path}::#{host_alias}".to_sym) do |t|

          fpath = task_path.gsub(/::/, '/')

          if Dir.exists?("#{ENV['specpath']}/#{fpath}")
            t.pattern = %W[
              #{ENV['specpath']}/#{fpath}/*.rb
            ]
          elsif File.file?("#{ENV['specpath']}/#{fpath}.rb")
            t.pattern = %W[
              #{ENV['specpath']}/#{fpath}.rb
            ]
          end

          raise "\e[31mspec file not found!![#{t.pattern.to_s}]\e[m" if Dir.glob(t.pattern).empty?
          t.fail_on_error = false
          ENV['TARGET_HOST'] = host_alias
          ENV['TARGET_SSH_HOST'] = platform[host_alias.to_sym][:host] || host_alias
        end
      end

      real_path.pop
    end
  end

  if !Dir.exists?(ENV['specpath'])
    init_specpath(ENV['specroot'])
    exit 0
  end

  if !ENV['tmpdir']
    ENV['platforms_tmp'] = "./_platforms.yml"
    ENV['scenario_tmp'] = "./_scenario.yml"
  else
    ENV['platforms_tmp'] = "#{ENV['tmpdir']}/_platforms.yml"
    ENV['scenario_tmp'] = "#{ENV['tmpdir']}/_scenario.yml"
  end

  scenarios = nil
  platform = {}

  if ENV['scenario'] =~ /^(http|https):\/\//
    open(ENV['scenario_tmp'], 'w') do |f|
      open(ENV['scenario']) do |data|
        f.write(data.read)
      end
    end

    ENV['scenario'] = ENV['scenario_tmp']
  end

  File.open(ENV['scenario'] || "#{ENV['specroot']}/scenario.yml") do |f|
    YAML.load_documents(f).each_with_index do |data, idx|
      if idx == 0
        scenarios = data
      else
        data.each do |k, v|
          platform[k.to_sym] = v.deep_symbolize_keys
        end
      end
    end
  end

  if !scenarios
    print "\e[31m"
    puts "scenario.yml is empty."
    print "\e[m"
    exit 1
  end

  tasks = []
  gen_exec_plan(nil, scenarios, [], ssh_options, tasks, platform)

  task :stdout do

    if ENV['tableformat'] == 'bool'

      ret = 'ok'
      CSV.foreach(csv_file) do |r|
        ret = 'ng' if r[1] == 'NG'
      end

      puts ret
    elsif ENV['tableformat'] == 'csv'

      maxrows = 0
      CSV.foreach(csv_file) do |r|
        maxrows = r[2].to_i if r[2].to_i > maxrows
      end
      maxrows += 1 # host row

      CSV.foreach(csv_file) do |r|
        pad_comma = ',' * (maxrows - r[0].split(',').length)
        puts "#{r[0]}#{pad_comma},#{r[1]}"
      end
    else
      maxlen = 0
      CSV.foreach(csv_file) do |r|
        n =  r[0].each_char.map{|c| c.bytesize == 1 ? 1 : 2}.reduce(0, &:+)
        maxlen = n if n > maxlen
      end

      pad_spaces = 4

      spacer = nil
      if ENV['tableformat'] == 'mkd'
        spacer = "|:" + ("-" * maxlen) + "|:" + ("-" * "result".length) + ":|"
      elsif ENV['tableformat'] == 'aa'
        spacer = "+" + ("-" * (maxlen + "result".length + pad_spaces)) + "+"
      end

      puts spacer unless ENV['tableformat'] == 'mkd'
      is_header = true
      CSV.foreach(csv_file) do |r|
        n =  r[0].each_char.map{|c| c.bytesize == 1 ? 1 : 2}.reduce(0, &:+)

        if r[1] == 'OK'
          s_effect = "\e[32m"
          e_effect = "\e[m"
          r[1] = '  ' + r[1]
        elsif  r[1] == 'NG'
          s_effect = "\e[31m"
          e_effect = "\e[m"
          r[1] = '  ' + r[1]
        end

        pad_mid = (" " * (maxlen - n)) + " | "
        pad_tail = (" " * ("result".length - r[1].length)) + " |"

        puts "|#{s_effect}#{r[0]}#{e_effect}#{pad_mid}#{s_effect}#{r[1]}#{e_effect}#{pad_tail}"

        if is_header
          puts spacer
          is_header = false
        end
      end
      puts spacer unless ENV['tableformat'] == 'mkd'
    end
  end

  exec_tasks = []
  if ENV['parallels']
    processes = ENV['parallels'].to_i

    split_group = []
    groups = 0
    tasks.each_with_index do |t,pos|

      split_group << t

      if pos % processes == 0 || pos == tasks.length - 1
        multitask "parallel_tasks_#{groups}".to_s => split_group
        groups += 1
        split_group = []
      end
    end

    groups.times {|i| exec_tasks << "parallel_tasks_#{i}" }
  else
    exec_tasks = tasks
  end

  exec_tasks << :stdout
  task :all => exec_tasks

  # tempファイルに書き出し
  open(ENV['platforms_tmp'] ,"w") do |y|
    YAML.dump(platform, y)
  end

  path = {}
  exec_tasks(nil, scenarios, [], platform)
end