Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a test setup similar to actiondispatch's Cookie Store tests #221

Merged

Conversation

stevenharman
Copy link
Contributor

@stevenharman stevenharman commented Mar 26, 2025

I took another look at the changes we had to make in #220 and compared that to how things work in actiondispatch's Cookie Store tests and realized we were close, but missing how we were setting the options for our store. So I've revamped the setup to be in line with what's in Rails' own tests. This should make it easier to keep things in line and working, going forward.

See the following two files for how Cookie Store tests (and their base ActionDispatch::IntegrationTest) work today (as of Rails 8.0):

The big downside to this is… it depends on some changes to how #with_routing, provided by Rails, works. Meaning it only works with Rails 7.2+. ☹️

@stevenharman stevenharman force-pushed the change_test_setup_to_mirror_cookie_store_tests branch from ea7e51a to 0a4f273 Compare March 26, 2025 18:36
@stevenharman
Copy link
Contributor Author

stevenharman commented Mar 26, 2025

@byroot I went down this path b/c I'm trying to fix a bug with how we handle the :same_site option (see #214).

When using the test setup from #220 (as it is on master right now) the tests fail because we seem to be using a Rack Session that's set up as part of the initial build_app, rather than the Rack Session object that gets built during the build_app inside our with_test_route_set setup block. And because of that, the same_site: option we pass in during a test isn't being used.

So, I think there's still some sort of state sticking around between tests, making it impossible to write tests for the :same_site option.

@byroot
Copy link
Member

byroot commented Mar 27, 2025

Meaning it only works with Rails 7.2+. ☹️

I don't mind dropping older Rails versions.

@stevenharman stevenharman force-pushed the change_test_setup_to_mirror_cookie_store_tests branch from 0a4f273 to d05cc4b Compare April 2, 2025 17:16
@stevenharman
Copy link
Contributor Author

stevenharman commented Apr 2, 2025

I was able to get the test suite passing as far back as Rails 7.0 by patching a change to how with_routing works, from Rails 7.2. That said, I'm also 💯 in favor of at least dropping Rails 7.0 support now that it's EoL'd. If you agree, let me know and I'll do that and then we can merge this as a "clean slate" for testing going forward.

I took another look at the changes we had to make in rails#220 and compared
that to how things work in `actiondispatch`'s Cookie Store tests and
realized we were close, but missing how we were setting the options for
our store. So I've revamped the setup to be in line with what's in
Rails' own tests. This should make it easier to keep things in line and
working, going forward.

We also need to patch in support for with_routing for integration tests
which was added in Rails 7.2. So we do that, only when necessary. We can
drop that patch when we drop Rails 7.1 support.

See the following two files for how Cookie Store tests (and their base
`ActionDispatch::IntegrationTest`) work today (as of Rails 8.0):
   * https://github.com/rails/rails/blob/8-0-stable/actionpack/test/dispatch/session/cookie_store_test.rb
   * https://github.com/rails/rails/blob/8-0-stable/actionpack/test/abstract_unit.rb
@stevenharman stevenharman force-pushed the change_test_setup_to_mirror_cookie_store_tests branch from d05cc4b to 649cfca Compare April 2, 2025 17:19
@byroot
Copy link
Member

byroot commented Apr 2, 2025

in favor of at least dropping Rails 7.0 support now that it's EoL'd.

Yeah , no problem with that

@stevenharman stevenharman force-pushed the change_test_setup_to_mirror_cookie_store_tests branch from 29ac86f to 9a2cc76 Compare April 2, 2025 18:29
This is in line with the minimum Ruby supported by our direct dependency
on Rails.
@stevenharman stevenharman force-pushed the change_test_setup_to_mirror_cookie_store_tests branch from 9a2cc76 to afc0f5a Compare April 2, 2025 18:38
@stevenharman
Copy link
Contributor Author

Done. And I was able to clean up the text matrix overall by only including Ruby 2.7 and 3.0 for Rails 7.1. This should (hopefully) make it more clear which Rubies we can drop as we drop older Rails. 😄

@byroot byroot merged commit d517758 into rails:master Apr 2, 2025
12 checks passed
@stevenharman stevenharman deleted the change_test_setup_to_mirror_cookie_store_tests branch April 2, 2025 18:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants