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
|
require 'tempfile'
require 'bundler'
CURRENT_GEM_NAME = 'chef'
CURRENT_GEM_PATH = File.expand_path('../..', __FILE__)
def bundle_exec_with_chef(test_gem, commands)
gem_path = Bundler.environment.specs[test_gem].first.full_gem_path
gemfile_path = File.join(gem_path, "Gemfile.#{CURRENT_GEM_NAME}-external-test")
gemfile = File.open(gemfile_path, "w")
begin
IO.read(File.join(gem_path, 'Gemfile')).each_line do |line|
if line =~ /^\s*gemspec/
next
elsif line =~ /^\s*gem '#{CURRENT_GEM_NAME}'|\s*gem "#{CURRENT_GEM_NAME}"/
next
elsif line =~ /^\s*dev_gem\s*['"](.+)['"]\s*$/
line = "gem '#{$1}', github: 'poise/#{$1}'"
elsif line =~ /\s*gem\s*['"]#{test_gem}['"]/ # foodcritic end
next
end
gemfile.puts(line)
end
gemfile.puts("gem #{CURRENT_GEM_NAME.inspect}, path: #{CURRENT_GEM_PATH.inspect}")
gemfile.puts("gemspec path: #{gem_path.inspect}")
gemfile.close
Dir.chdir(gem_path) do
Bundler.with_clean_env do
unless system({ 'BUNDLE_GEMFILE' => gemfile_path, 'RUBYOPT' => nil, 'GEMFILE_MOD' => nil }, "bundle update")
raise "Error running bundle update of #{gemfile_path} in #{gem_path}: #{$?.exitstatus}\nGemfile:\n#{IO.read(gemfile_path)}"
end
Array(commands).each do |command|
unless system({ 'BUNDLE_GEMFILE' => gemfile_path, 'RUBYOPT' => nil, 'GEMFILE_MOD' => nil }, "bundle exec #{command}")
raise "Error running bundle exec #{command} in #{gem_path} with BUNDLE_GEMFILE=#{gemfile_path}: #{$?.exitstatus}\nGemfile:\n#{IO.read(gemfile_path)}"
end
end
end
end
ensure
File.delete(gemfile_path) if File.exist?(gemfile_path)
end
end
EXTERNAL_PROJECTS = {
"chef-zero" => [ "rake spec", "rake cheffs" ],
"cheffish" => "rake spec",
"chef-provisioning" => "rake spec",
"chef-provisioning-aws" => "rake spec",
"chef-sugar" => "rake",
"foodcritic" => "rake test",
"chefspec" => "rake",
"chef-rewind" => "rake spec",
"poise" => "rake spec",
"halite" => "rake spec",
"knife-windows" => "rake unit_spec",
}
task :external_specs => EXTERNAL_PROJECTS.keys.map { |g| :"#{g.sub("-","_")}_spec" }
EXTERNAL_PROJECTS.each do |test_gem, commands|
task :"#{test_gem.gsub('-','_')}_spec" do
bundle_exec_with_chef(test_gem, commands)
end
end
|