-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathtest.rake
119 lines (101 loc) · 3.62 KB
/
test.rake
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
# frozen_string_literal: true
require 'rspec/core/rake_task'
##
## spec / unit tests
##
desc 'Executes every spec file, one at a time.'
task 'test:spec:each' do
failures = []
Dir.glob('**/spec/**/*_spec.rb').each do |spec_file|
sh("bundle exec rspec #{spec_file}") do |ok, _|
failures << spec_file unless ok
end
end
msg = "One or more spec files had failures:\n\n"
failures.each do |path|
msg += "bundle exec rspec #{path}\n"
end
abort(msg) unless failures.empty?
end
rule /test:spec:aws-sdk-code-generator$/ do |task|
# this package is outside of the gems folder
sh('bundle exec rspec build_tools/aws-sdk-code-generator/spec')
end
desc 'Executes specs for a single gem, e.g. test:spec:aws-sdk-s3'
task 'test:spec:*'
rule /test:spec:.+$/ do |task|
spec_dir = "gems/#{task.name.split(':').last}/spec"
sh("bundle exec rspec #{spec_dir}")
end
desc 'Execute spec tests.'
task 'test:spec' do
Dir.glob('**/spec').tap do |spec_file_list|
sh("bundle exec rspec #{spec_file_list.join(' ')}")
end
end
##
## integration / smoke tests
##
desc 'Executes smoke tests for a single gem'
rule /^test:smoke:.+$/ do |task|
dir = "gems/#{task.name.split(':').last}/features"
tags = "-t '@smoke'"
ENV.fetch('AWS_SMOKE_TEST_SKIP_TAGS', '').split(',').each do |tag|
tags += " -t 'not @#{tag}'"
end
sh("bundle exec cucumber --retry 3 #{tags} -r #{dir} #{dir} --publish-quiet")
end
desc 'Executes all smoke tests'
rule 'test:smoke' do
failures = []
Dir.glob('gems/*/features').each do |dir|
next unless File.exist?(File.join(dir, 'smoke.feature'))
gem_name = dir.match(%r{gems/(.*)/features})[1]
sh("bundle exec rake test:smoke:#{gem_name}") do |ok, _|
failures << File.basename(File.dirname(dir)) unless ok
end
end
abort('one or more test suites failed: %s' % [failures.join(', ')]) unless failures.empty?
end
desc 'Executes integration tests for a single gem'
rule /^test:integration:.+$/ do |task|
dir = "gems/#{task.name.split(':').last}/features"
tags = "-t 'not @smoke' -t 'not @veryslow'"
sh("bundle exec cucumber --retry 3 #{tags} -r #{dir} #{dir} --publish-quiet")
end
desc 'Executes all integration tests'
task 'test:integration' do
failures = []
Dir.glob('gems/*/features').each do |dir|
next unless Dir.glob(File.join(dir, '**', '*.feature')).any?
gem_name = dir.match(%r{gems/(.*)/features})[1]
sh("bundle exec rake test:integration:#{gem_name}") do |ok, _|
failures << File.basename(File.dirname(dir)) unless ok
end
end
abort('one or more test suites failed: %s' % [failures.join(', ')]) unless failures.empty?
end
desc 'Executes feature tests for a single gem'
rule /^test:features:.+$/ do |task|
dir = "gems/#{task.name.split(':').last}/features"
# Exclude support smoke tests as these require account settings
# the logical or with not results in skipping tests marked with
# @support AND @smoke only.
tags = "-t 'not @veryslow' -t 'not @support or not @smoke'"
sh("bundle exec cucumber --retry 3 #{tags} -r #{dir} #{dir} --publish-quiet")
end
desc 'Executes all feature tests'
task 'test:features' do
failures = []
Dir.glob('gems/*/features').each do |dir|
next unless Dir.glob(File.join(dir, '**', '*.feature')).any?
gem_name = dir.match(%r{gems/(.*)/features})[1]
sh("bundle exec rake test:features:#{gem_name}") do |ok, _|
failures << File.basename(File.dirname(dir)) unless ok
end
end
abort('one or more test suites failed: %s' % [failures.join(', ')]) unless failures.empty?
end
desc 'Runs unit and integration tests after rebuilding gems'
task 'test' => ['build', 'test:spec', 'test:features']
task 'default' => 'test'