-
Notifications
You must be signed in to change notification settings - Fork 47
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
Include thread-safety rubocop and refactor minimum rubocop.gemfile #703
Conversation
3999c6e
to
5ab601c
Compare
test/fixtures/full_config.yml
Outdated
ThreadSafety/NewThread: | ||
Description: Avoid starting new threads. Let a framework like Sidekiq handle the | ||
threads. | ||
Enabled: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be enabled
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, we are not enabling it on SFR too. I will disable it 👍
test/fixtures/full_config.yml
Outdated
Enabled: true | ||
ThreadSafety/MutableClassInstanceVariable: | ||
Description: Do not assign mutable objects to class instance variables. | ||
Enabled: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This cop is disallowing:
class FooTest < ActiveSupport::TestCase
setup do
@something = { a: "A" }
end
end
Which doesn't have any thread safety issue.
We need to fix that in order to enable it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will not enable it yet. Good check, lets socialize how we can fix it 👍
4c2b934
to
3cd22cb
Compare
c04fc7a
to
a69842b
Compare
The unknown cop issue is fixed, but now we have the issue that |
Simply bumping it doesn't work either, as it breaks some assumptions made by the tooling that ensures version compatibility. We'll have to fix that too. |
Would backporting the patch to 0.6 help? |
We want to have the fix in v0.7.2 😞
What are those assumptions? |
Sorry, I didnt quite get it since I don't have all the context. The patch was released in v0.7.1 and is also present in v0.7.2 (which was released today to fix an unreleated issue). |
Both options work. The issue in CI is that we have a check that is along the lines of
The check currently extracts The backport idea would be nice because it would mean we don't have to increase the dependency requirement, but realistically that's not a blocker. I just have to fix CI to be smart enough to handle this case. |
@sambostock, I updated minimum_rubocop.gemfile, LMK what you think :) |
gemfiles/minimum_rubocop.gemfile
Outdated
requirements = version_match.scan(/\d+\.\d+/) | ||
minimum_version = requirements.max | ||
|
||
gem "rubocop", "~> #{minimum_version}.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't want to use ~>
, because that doesn't guarantee that we're using the exact minimum version. For example, this results in ~> 1.72.0
which would likely result in us installing 1.72.2
, whereas the actual minimum version we should be testing against is 1.71.1
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've switched to an approach of extracting the rubocop
requirements from the gemspec, ensuring they're all using ~>
or >=
, and then grabbing the max version and using that as the exact version.
The other alternative I thought of was to get all the published versions from Rubygems, and then Array#bsearch
through them and use satisfied_by?
to find the first one that satisfies our requirements (and maybe sub-dependency requirements too), and use that. However, that approach would be more complex, and the other approach is probably sufficient.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, extracting ~>
and >=
and grab the max version makes it more straightforward 👍
0173b51
to
87b827b
Compare
We should rebase/squash before merging if we're okay with these rules and the change to |
.load("rubocop-shopify.gemspec") | ||
.dependencies.find { |d| d.name == "rubocop" } | ||
.requirement.requirements | ||
.partition { |type, _version| supported_requirement_types.include?(type) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clever 👏
87b827b
to
efd84b9
Compare
This allows us to combine `~>` and `>=` `rubocop` version requirements.
This plugin helps ensure thread safety. As it uses the new RuboCop plugin API, we must bump the minimum RuboCop version, and as such we can remove many of our version checks.
efd84b9
to
a8dd1f0
Compare
This PR contains mainly these two changes:
Introduce thread_safety rubocop
Include
thread_safety
rubocop as part of Shopify style rubocop. This PR only enables the small subset of the rules as a starting point. In addition, not part of thread_safety rubocop, but also enabledStyle/MutableConstant
to prevent constant being mutated concurrently unintentionally.Note that this is part of Falcon on SFR effort (vault project here).
Refactor minimum_rubocop.gemfile
We have updated
minimum_rubocop.gemfile
so that we could handle the version dependency in tests better .