Skip to content

Commit f1023bd

Browse files
authored
Refactor/tidy up post release (#567)
* Use proper versions of factory_bot and database_cleaner-active_record * Simplify rails_new command in testing * test using latest rspec * Minor readme tweaks * Fix up changelogs * Remove redundant parts of cucumber.yml file * Simplify conditional gem installs and ensure selenium is of a reasonably new version * Re-order file contents * Fix rubocop * Avoid race condition * Downgrade selenium to work on ruby 2.6 * Upgrade database cleaner to version 2 given this is tied now to sister gem * Remove legacy gem on old versions of selenium/capybara when using rails 5.2 * Ensure all step defs live in folder to improve debugging * Update changelog * Fix changelog formatting
1 parent d80e9f1 commit f1023bd

8 files changed

+89
-96
lines changed

CHANGELOG.md

+24-3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
This file is intended to be modified using the [`changelog`](github.com/cucumber/changelog) command-line tool.
99

1010
## [Unreleased]
11+
### Fixed
12+
* Some of the rails 5.2 tests were installing lots of old conflicting gems ([luke-hill])
1113

1214
## [3.0.0.rc.1] - 2023-09-15
1315
### Removed
@@ -19,11 +21,30 @@ This file is intended to be modified using the [`changelog`](github.com/cucumber
1921
### Changed
2022
- Automate release process [#554](https://github.com/cucumber/cucumber-rails/pull/554)
2123

22-
## [v2.6.0]
24+
## [2.6.0] - 2022-10-07
25+
### New Features
26+
* Dependabot has now been added to the repo (Alongside this a bunch of gem updates have been done)
27+
([#540](https://github.com/cucumber/cucumber-rails/pull/540) [mattwynne])
28+
2329
### Changed
24-
- New release process. Older releases are in [this changelog](./CHANGELOG.old.md).
30+
* Gem update: allowed cucumber 8 ([#538](https://github.com/cucumber/cucumber-rails/pull/538) / [#541](https://github.com/cucumber/cucumber-rails/pull/541) [mattwynne])
31+
32+
* New release process. Older releases are in [this changelog](./CHANGELOG.old.md)
33+
34+
### Fixed
35+
* Some bugs with dev dependencies have now been fixed externally, so these have been unrestricted
36+
([#552](https://github.com/cucumber/cucumber-rails/pull/552) [BrianHawley])
37+
38+
* Fixed up some rubocop offenses from updated `rubocop-performance`
39+
([#550](https://github.com/cucumber/cucumber-rails/pull/550) [olleolleolle])
2540

2641
[Unreleased]: https://github.com/cucumber/cucumber-rails/compare/v3.0.0.rc.1...main
2742
[3.0.0.rc.1]: https://github.com/cucumber/cucumber-rails/compare/v2.6.1...v3.0.0.rc.1
2843
[2.6.1]: https://github.com/cucumber/cucumber-rails/compare/v2.6.0...v2.6.1
29-
[v2.6.0]: ./CHANGELOG.old.md
44+
[2.6.0]: https://github.com/cucumber/cucumber-rails/compare/v2.5.1...v2.6.0
45+
46+
[olleolleolle]: https://github.com/olleolleolle
47+
[BrianHawley]: https://github.com/BrianHawley
48+
[mattwynne]: https://github.com/mattwynne
49+
[orien]: https://github.com/orien
50+
[luke-hill]: https://github.com/luke-hill

CHANGELOG.old.md

-25
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
11
Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md)
22
on how to contribute to Cucumber.
33

4-
## [main](https://github.com/cucumber/cucumber-rails/compare/v2.5.1...main) (Not yet released)
5-
6-
### New Features
7-
8-
### Changed
9-
10-
### Fixed
11-
12-
## [v2.6.0](https://github.com/cucumber/cucumber-rails/compare/v2.5.1...v2.6.0) (2022-10-07)
13-
14-
### New Features
15-
* Dependabot has now been added to the repo (Alongside this a bunch of gem updates have been done)
16-
([#540](https://github.com/cucumber/cucumber-rails/pull/540) [mattwynne])
17-
18-
### Changed
19-
* Gem update: allowed cucumber 8 ([#538](https://github.com/cucumber/cucumber-rails/pull/538) /
20-
[#541](https://github.com/cucumber/cucumber-rails/pull/541) [mattwynne])
21-
22-
### Fixed
23-
* Some bugs with dev dependencies have now been fixed externally, so these have been unrestricted
24-
([#552](https://github.com/cucumber/cucumber-rails/pull/552) [BrianHawley])
25-
26-
* Fixed up some rubocop offenses from updated `rubocop-performance`
27-
([#550](https://github.com/cucumber/cucumber-rails/pull/550) [olleolleolle])
28-
294
## [v2.5.1](https://github.com/cucumber/cucumber-rails/compare/v2.5.0...v2.5.1) (2022-04-01)
305

316
### Fixed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Cucumber feature. Let's say you think you have found a bug in the cucumber:insta
7373
Fork this project, clone it to your workstation and check out a branch with a descriptive name:
7474

7575
git clone [email protected]:you/cucumber-rails.git
76-
git checkout -b bugfix/generator-fails-on-ruby-25
76+
git checkout -b bugfix/generator-fails-on-ruby-31
7777

7878
Start by making sure you can run the existing features. Now, create a feature that demonstrates
7979
what's wrong. See the existing features for examples. When you have a failing feature that
@@ -118,10 +118,8 @@ To support the multiple-gemfile testing, when adding a new dependency the follow
118118

119119
1. If it's a runtime dependency of the gem, add it to the gemspec
120120
2. If it's a primary development dependency, add it to the gemspec
121-
3. If it's a dependency of a generated rails app in a test, add it to [the helper] that
122-
modifies the `Gemfile`.
121+
3. If it's a dependency of a generated rails app in a test, add it to [the helper] that modifies the `Gemfile`
123122

124123
For example, rspec is a primary development dependency, so it lives in the gemspec.
125124

126125
[the helper]: https://github.com/cucumber/cucumber-rails/blob/5e37c530560ae1c1a79521c38a54bae0be94242b/features/step_definitions/cucumber_rails_steps.rb#L15
127-

config/cucumber.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ opts = [
1111
"--format #{path == 'features' ? 'progress' : 'pretty'}",
1212
"--format rerun -o #{rerun_file}"
1313
]
14-
rails_version = `bundle exec rails --version`.match(/[\d.]+$/).to_s
1514
optlist = opts.join(' ')
1615
%>
17-
default: <%= path %> <%= optlist %> --tags 'not @broken'
16+
default: <%= path %> <%= optlist %>

cucumber-rails.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
3232
s.add_development_dependency('aruba', ['>= 1.0', '< 3'])
3333
s.add_development_dependency('bundler', '>= 1.17')
3434
s.add_development_dependency('database_cleaner', ['>= 1.8', '< 3.0'])
35+
s.add_development_dependency('rails', ['>= 5.2', '< 8'])
3536
s.add_development_dependency('rake', '>= 12.0')
3637
s.add_development_dependency('rspec', '~> 3.6')
3738
s.add_development_dependency('rubocop', '~> 1.28.2')

features/capybara_javascript_drivers.feature

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Feature: Capybara Javascript Drivers
1616
Then I should see "Cucumber Trainee"
1717
And I should see "2026-02-20 15:10:00 UTC"
1818
"""
19-
And I write to "features/create_appointment_steps.rb" with:
19+
And I write to "features/step_definitions/create_appointment_steps.rb" with:
2020
"""
2121
Given('I am on the new appointment page') do
2222
visit new_appointment_path
@@ -63,7 +63,7 @@ Feature: Capybara Javascript Drivers
6363
Then I should see "Cucumber Trainee"
6464
And I should see "2026-02-20 15:10:00 UTC"
6565
"""
66-
And I write to "features/create_appointment_steps.rb" with:
66+
And I write to "features/step_definitions/create_appointment_steps.rb" with:
6767
"""
6868
Given('I am on the new appointment page') do
6969
visit new_appointment_path
@@ -148,7 +148,7 @@ Feature: Capybara Javascript Drivers
148148
Then I should see "Cucumber Trainee"
149149
And I should see "2026-02-20 15:10:00 UTC"
150150
"""
151-
And I write to "features/create_appointment_steps.rb" with:
151+
And I write to "features/step_definitions/create_appointment_steps.rb" with:
152152
"""
153153
Given('I am on the new appointment page') do
154154
visit new_appointment_path

features/raising_errors.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Feature: Raise Errors
88
Scenario: Tests
99
When I go to the home page
1010
"""
11-
And I write to "features/home_steps.rb" with:
11+
And I write to "features/step_definitions/home_steps.rb" with:
1212
"""
1313
When('I go to the home page') do
1414
visit('/')

features/support/cucumber_rails_helper.rb

+57-58
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
module CucumberRailsHelper
88
def rails_new(options = {})
9-
validate_rails_new_success(run_rails_new_command(options))
9+
# This expectation allows us to wait until the command line monitor has output a README file (i.e. the command has completed)
10+
expect(run_rails_new_command(options)).to have_output(/README/)
11+
1012
cd options[:name]
1113
configure_rails_gems
1214
configure_rails_requires
@@ -15,44 +17,21 @@ def rails_new(options = {})
1517
end
1618

1719
def install_cucumber_rails(*options)
18-
add_conditional_gems(options)
19-
add_rails_specific_gems
20-
21-
add_gem 'cucumber', Cucumber::VERSION, group: :test
22-
add_gem 'capybara', Capybara::VERSION, group: :test
23-
add_gem 'rspec-expectations', '~> 3.7', group: :test
24-
add_gem 'database_cleaner', '>= 1.8.0', group: :test unless options.include?(:no_database_cleaner)
25-
add_gem 'database_cleaner-active_record', '>= 2.0.0.beta2', group: :test if options.include?(:database_cleaner_active_record)
26-
add_gem 'factory_bot', '>= 3.2', group: :test unless options.include?(:no_factory_bot)
27-
20+
add_cucumber_rails(options)
21+
add_sqlite3
22+
add_remaining_gems(options)
2823
bundle_install
2924
run_command_and_stop 'bundle exec rails generate cucumber:install'
3025
end
3126

3227
private
3328

34-
def add_gem(name, *args)
35-
line = convert_gem_opts_to_string(name, *args)
36-
gem_regexp = /gem ["']#{name}["'].*$/
37-
gemfile_content = File.read(expand_path('Gemfile'))
38-
39-
if gemfile_content.match?(gem_regexp)
40-
updated_gemfile_content = gemfile_content.gsub(gem_regexp, line)
41-
overwrite_file('Gemfile', updated_gemfile_content)
42-
else
43-
append_to_file('Gemfile', line)
44-
end
45-
end
46-
47-
def remove_gem(name)
48-
content = File.read(expand_path('Gemfile')).gsub(/^\s*gem ["']#{name}["'].*$/, '')
49-
overwrite_file('Gemfile', content)
50-
end
51-
52-
def bundle_install
53-
run_command_and_stop 'bundle config set --local without "development"'
54-
run_command_and_stop "bundle config set --local path '#{ENV.fetch('GITHUB_WORKSPACE')}/vendor/bundle'" if ENV.key?('GITHUB_WORKSPACE')
55-
run_command_and_stop 'bundle install --jobs 4'
29+
def run_rails_new_command(options)
30+
options[:name] ||= 'test_app'
31+
flags = %w[--skip-action-cable --skip-action-mailer --skip-active-job --skip-bootsnap --skip-bundle --skip-javascript
32+
--skip-jbuilder --skip-listen --skip-spring --skip-sprockets --skip-test-unit --skip-turbolinks --skip-active-storage]
33+
flags += %w[--skip-action-mailbox --skip-action-text] if rails_equal_or_higher_than?('6.0')
34+
run_command "bundle exec rails new #{options[:name]} #{flags.join(' ')} #{options[:args]}"
5635
end
5736

5837
def configure_rails_gems
@@ -62,8 +41,8 @@ def configure_rails_gems
6241

6342
def configure_rails_requires
6443
content = File.read(expand_path('config/application.rb'))
65-
%w[ active_job/railtie active_storage/engine action_mailer/railtie action_mailbox/engine
66-
action_text/engine action_cable/engine rails/test_unit/railtie sprockets/railtie ].each do |require|
44+
%w[active_job/railtie active_storage/engine action_mailer/railtie action_mailbox/engine
45+
action_text/engine action_cable/engine rails/test_unit/railtie sprockets/railtie].each do |require|
6746
content = content.gsub(/^.*require ["']#{require}["']\s*$/, '')
6847
end
6948
overwrite_file('config/application.rb', content)
@@ -75,19 +54,6 @@ def configure_rails_layout
7554
overwrite_file(file, content)
7655
end
7756

78-
def run_rails_new_command(options)
79-
options[:name] ||= 'test_app'
80-
flags = %w[--skip-action-cable --skip-action-mailer --skip-active-job --skip-bootsnap --skip-bundle --skip-javascript
81-
--skip-jbuilder --skip-listen --skip-spring --skip-sprockets --skip-test-unit --skip-turbolinks --skip-active-storage]
82-
flags += %w[--skip-action-mailbox --skip-action-text] if rails_equal_or_higher_than?('6.0')
83-
run_command "bundle exec rails new #{options[:name]} #{flags.join(' ')} #{options[:args]}"
84-
end
85-
86-
def validate_rails_new_success(result)
87-
expect(result).to have_output(/README/)
88-
expect(last_command_started).to be_successfully_executed
89-
end
90-
9157
def clear_bundle_env_vars
9258
unset_bundler_env_vars
9359
delete_environment_variable 'BUNDLE_GEMFILE'
@@ -97,30 +63,63 @@ def rails_equal_or_higher_than?(version)
9763
Rails.gem_version >= Gem::Version.new(version)
9864
end
9965

100-
def add_conditional_gems(options)
66+
def remove_gem(name)
67+
content = File.read(expand_path('Gemfile')).gsub(/^\s*gem ["']#{name}["'].*$/, '')
68+
overwrite_file('Gemfile', content)
69+
end
70+
71+
def add_gem(name, *args)
72+
line = convert_gem_opts_to_string(name, *args)
73+
gem_regexp = /gem ["']#{name}["'].*$/
74+
gemfile_content = File.read(expand_path('Gemfile'))
75+
76+
if gemfile_content.match?(gem_regexp)
77+
updated_gemfile_content = gemfile_content.gsub(gem_regexp, line)
78+
overwrite_file('Gemfile', updated_gemfile_content)
79+
else
80+
append_to_file('Gemfile', line)
81+
end
82+
end
83+
84+
def convert_gem_opts_to_string(name, *args)
85+
options = args.last.is_a?(Hash) ? args.pop : {}
86+
parts = ["'#{name}'"]
87+
parts << args.map(&:inspect) if args.any?
88+
parts << options.inspect[1..-2] if options.any?
89+
"gem #{parts.flatten.join(', ')}\n"
90+
end
91+
92+
def add_cucumber_rails(options)
10193
if options.include?(:not_in_test_group)
10294
add_gem 'cucumber-rails', path: File.expand_path('.').to_s
10395
else
10496
add_gem 'cucumber-rails', group: :test, require: false, path: File.expand_path('.').to_s
10597
end
10698
end
10799

108-
def add_rails_specific_gems
100+
def add_sqlite3
109101
if rails_equal_or_higher_than?('6.0')
110102
add_gem 'sqlite3', '~> 1.4'
111-
add_gem 'selenium-webdriver', '~> 4.0', group: :test
112103
else
113104
add_gem 'sqlite3', '~> 1.3.13'
114-
add_gem 'selenium-webdriver', '~> 3.11', group: :test
115105
end
116106
end
117107

118-
def convert_gem_opts_to_string(name, *args)
119-
options = args.last.is_a?(Hash) ? args.pop : {}
120-
parts = ["'#{name}'"]
121-
parts << args.map(&:inspect) if args.any?
122-
parts << options.inspect[1..-2] if options.any?
123-
"gem #{parts.flatten.join(', ')}\n"
108+
def add_remaining_gems(options)
109+
add_gem 'cucumber', Cucumber::VERSION, group: :test
110+
add_gem 'capybara', Capybara::VERSION, group: :test
111+
add_gem 'database_cleaner', '>= 2.0.0', group: :test unless options.include?(:no_database_cleaner)
112+
add_gem 'database_cleaner-active_record', '>= 2.0.0', group: :test if options.include?(:database_cleaner_active_record)
113+
add_gem 'factory_bot', '>= 5.0', group: :test unless options.include?(:no_factory_bot)
114+
add_gem 'rspec-expectations', '~> 3.12', group: :test
115+
add_gem 'selenium-webdriver', '~> 4.0', group: :test
116+
%w[chromedriver-helper].each { |gem| remove_gem(gem) } unless rails_equal_or_higher_than?('6.0')
117+
end
118+
119+
def bundle_install
120+
run_command_and_stop 'bundle config set --local without "development"'
121+
run_command_and_stop "bundle config set --local path '#{ENV.fetch('GITHUB_WORKSPACE')}/vendor/bundle'" if ENV.key?('GITHUB_WORKSPACE')
122+
run_command_and_stop 'bundle install --jobs 4'
124123
end
125124
end
126125

0 commit comments

Comments
 (0)