-
Notifications
You must be signed in to change notification settings - Fork 105
/
Rakefile
97 lines (82 loc) · 2.67 KB
/
Rakefile
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
require 'bundler/gem_tasks'
require 'puppet_litmus/rake_tasks' if Bundler.rubygems.find_name('puppet_litmus').any?
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
build_defs_file = 'ext/build_defaults.yaml'
if File.exist?(build_defs_file)
begin
require 'yaml'
@build_defaults ||= YAML.load_file(build_defs_file)
rescue StandardError => e
$stderr.puts "Unable to load yaml from #{build_defs_file}:"
$stderr.puts e
end
@packaging_url = @build_defaults['packaging_url']
@packaging_repo = @build_defaults['packaging_repo']
raise "Could not find packaging url in #{build_defs_file}" if @packaging_url.nil?
raise "Could not find packaging repo in #{build_defs_file}" if @packaging_repo.nil?
namespace :package do
desc 'Bootstrap packaging automation (clone packaging repo)'
task :bootstrap do
if File.exist?("ext/#{@packaging_repo}")
puts "It looks like you already have ext/#{@packaging_repo}. If you don't like it, blow it away with package:implode."
else
cd 'ext' do
`git clone #{@packaging_url}`
end
end
end
desc 'Remove all cloned packaging automation'
task :implode do
rm_rf "ext/#{@packaging_repo}"
end
end
end
namespace :spec do
desc 'Run RSpec code examples with coverage collection'
task :coverage do
ENV['COVERAGE'] = 'yes'
Rake::Task['spec'].execute
end
end
RSpec::Core::RakeTask.new(:spec) do |t|
t.exclude_pattern = 'spec/spec_helper_acceptance.rb,spec/acceptance/**'
end
namespace :acceptance do
desc 'Run acceptance tests against current code'
task :env do
ENV['PDK_PUPPET_VERSION'] = RUBY_VERSION.split('.')[0].include?('3') ? '8' : '7'
end
RSpec::Core::RakeTask.new(:local) do |t|
t.rspec_opts = '--tag ~package' # Exclude package specific examples
t.pattern = 'spec/acceptance/**/*_spec.rb'
end
task local: [:binstubs, :env]
task local_parallel: [:binstubs] do
require 'parallel_tests'
specs = Rake::FileList['spec/acceptance/**/*_spec.rb'].to_a
ParallelTests::CLI.new.run(['-t', 'rspec'] + specs)
end
desc 'Run acceptance smoke tests against current code'
RSpec::Core::RakeTask.new(:smoke) do |t|
t.rspec_opts = '--tag ~package' # Exclude package specific examples
# We only need to run a subset of the acceptance suite.
t.pattern = 'spec/acceptance/bundle_spec.rb'
end
end
RuboCop::RakeTask.new(:rubocop) do |task|
task.options = ['-D', '-S', '-E']
end
task(:binstubs) do
system('bundle binstubs pdk --force')
end
task default: :spec
begin
require 'yard'
YARD::Rake::YardocTask.new do |t|
end
rescue LoadError
desc :yard do
raise 'Install yard to generate YARD documentation'
end
end