-
Notifications
You must be signed in to change notification settings - Fork 188
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
Use a test setup similar to actiondispatch
's Cookie Store tests
#221
Conversation
ea7e51a
to
0a4f273
Compare
@byroot I went down this path b/c I'm trying to fix a bug with how we handle the When using the test setup from #220 (as it is on So, I think there's still some sort of state sticking around between tests, making it impossible to write tests for the |
I don't mind dropping older Rails versions. |
0a4f273
to
d05cc4b
Compare
I was able to get the test suite passing as far back as Rails 7.0 by patching a change to how |
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
d05cc4b
to
649cfca
Compare
Yeah , no problem with that |
29ac86f
to
9a2cc76
Compare
This is in line with the minimum Ruby supported by our direct dependency on Rails.
9a2cc76
to
afc0f5a
Compare
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. 😄 |
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+.