debian-mirror-gitlab/doc/development/code_review.md

284 lines
16 KiB
Markdown
Raw Normal View History

2016-06-02 11:05:42 +05:30
# Code Review Guidelines
2018-12-13 13:39:08 +05:30
This guide contains advice and best practices for performing code review, and
having your code reviewed.
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
All merge requests for GitLab CE and EE, whether written by a GitLab team member
or a volunteer contributor, must go through a code review process to ensure the
2019-01-03 12:48:30 +05:30
code is effective, understandable, and maintainable.
2018-12-13 13:39:08 +05:30
## Getting your merge request reviewed, approved, and merged
2017-08-17 22:00:37 +05:30
2019-01-03 12:48:30 +05:30
You are strongly encouraged to get your code **reviewed** by a
2018-12-13 13:39:08 +05:30
[reviewer](https://about.gitlab.com/handbook/engineering/#reviewer) as soon as
there is any code to review, to get a second opinion on the chosen solution and
implementation, and an extra pair of eyes looking for bugs, logic problems, or
2019-01-03 12:48:30 +05:30
uncovered edge cases. The reviewer can be from a different team, but it is
2018-12-13 13:39:08 +05:30
recommended to pick someone who knows the domain well. You can read more about the
importance of involving reviewer(s) in the section on the responsibility of the author below.
If you need some guidance (e.g. it's your first merge request), feel free to ask
one of the [Merge request coaches][team].
Depending on the areas your merge request touches, it must be **approved** by one
or more [maintainers](https://about.gitlab.com/handbook/engineering/#maintainer):
2019-01-03 12:48:30 +05:30
For approvals, we use the approval functionality found in the merge request
2018-12-13 13:39:08 +05:30
widget. Reviewers can add their approval by [approving additionally](https://docs.gitlab.com/ee/user/project/merge_requests/merge_request_approvals.html#adding-or-removing-an-approval).
1. If your merge request includes backend changes [^1], it must be
**approved by a [backend maintainer](https://about.gitlab.com/handbook/engineering/projects/#gitlab-ce_maintainers_backend)**.
1. If your merge request includes frontend changes [^1], it must be
**approved by a [frontend maintainer](https://about.gitlab.com/handbook/engineering/projects/#gitlab-ce_maintainers_frontend)**.
1. If your merge request includes UX changes [^1], it must be
**approved by a [UX team member][team]**.
2018-11-20 20:47:30 +05:30
1. If your merge request includes adding a new JavaScript library [^1], it must be
**approved by a [frontend lead][team]**.
1. If your merge request includes adding a new UI/UX paradigm [^1], it must be
**approved by a [UX lead][team]**.
2018-12-13 13:39:08 +05:30
1. If your merge request includes a new dependency or a filesystem change, it must be
**approved by a [Distribution team member][team]**. See how to work with the [Distribution team](https://about.gitlab.com/handbook/engineering/dev-backend/distribution/) for more details.
2017-09-10 17:25:29 +05:30
2019-01-03 12:48:30 +05:30
Getting your merge request **merged** also requires a maintainer. If it requires
more than one approval, the last maintainer to review and approve it will also merge it.
2017-08-17 22:00:37 +05:30
2019-01-03 12:48:30 +05:30
As described in the section on the responsibility of the maintainer below, you
are recommended to get your merge request approved and merged by maintainer(s)
from other teams than your own.
2016-06-02 11:05:42 +05:30
2018-12-13 13:39:08 +05:30
### The responsibility of the merge request author
The responsibility to find the best solution and implement it lies with the
2019-01-03 12:48:30 +05:30
merge request author.
2018-12-13 13:39:08 +05:30
2019-01-03 12:48:30 +05:30
Before assigning a merge request to a maintainer for approval and merge, they
should be confident that it actually solves the problem it was meant to solve,
that it does so in the most appropriate way, that it satisfies all requirements,
and that there are no remaining bugs, logical problems, or uncovered edge cases.
The merge request should also have a completed task list in its description and
a passing CI pipeline to avoid unnecessary back and forth.
2018-12-13 13:39:08 +05:30
To reach the required level of confidence in their solution, an author is expected
2019-01-03 12:48:30 +05:30
to involve other people in the investigation and implementation processes as
2018-12-13 13:39:08 +05:30
appropriate.
2019-01-03 12:48:30 +05:30
They are encouraged to reach out to domain experts to discuss different solutions
or get an implementation reviewed, to product managers and UX designers to clear
up confusion or verify that the end result matches what they had in mind, to
2018-12-13 13:39:08 +05:30
database specialists to get input on the data model or specific queries, or to
any other developer to get an in-depth review of the solution.
2016-06-02 11:05:42 +05:30
2018-12-13 13:39:08 +05:30
If an author is unsure if a merge request needs a domain expert's opinion, that's
2019-01-03 12:48:30 +05:30
usually a pretty good sign that it does, since without it the required level of
2018-12-13 13:39:08 +05:30
confidence in their solution will not have been reached.
### The responsibility of the maintainer
Maintainers are responsible for the overall health, quality, and consistency of
2019-01-03 12:48:30 +05:30
the GitLab codebase, across domains and product areas.
2018-12-13 13:39:08 +05:30
2019-01-03 12:48:30 +05:30
Consequently, their reviews will focus primarily on things like overall
architecture, code organization, separation of concerns, tests, DRYness,
2018-12-13 13:39:08 +05:30
consistency, and readability.
Since a maintainer's job only depends on their knowledge of the overall GitLab
codebase, and not that of any specific domain, they can review, approve and merge
merge requests from any team and in any product area.
2019-01-03 12:48:30 +05:30
In fact, authors are recommended to get their merge requests merged by maintainers
from other teams than their own, to ensure that all code across GitLab is consistent
and can be easily understood by all contributors, from both inside and outside the
2018-12-13 13:39:08 +05:30
company, without requiring team-specific expertise.
Maintainers will do their best to also review the specifics of the chosen solution
before merging, but as they are not necessarily domain experts, they may be poorly
2019-01-03 12:48:30 +05:30
placed to do so without an unreasonable investment of time. In those cases, they
2018-12-13 13:39:08 +05:30
will defer to the judgment of the author and earlier reviewers and involved domain
experts, in favor of focusing on their primary responsibilities.
If a developer who happens to also be a maintainer was involved in a merge request
as a domain expert and/or reviewer, it is recommended that they are not also picked
as the maintainer to ultimately approve and merge it.
2019-01-03 12:48:30 +05:30
Maintainers should check before merging if the merge request is approved by the
2018-12-13 13:39:08 +05:30
required approvers.
## Best practices
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
### Everyone
2016-06-02 11:05:42 +05:30
- Accept that many programming decisions are opinions. Discuss tradeoffs, which
you prefer, and reach a resolution quickly.
- Ask questions; don't make demands. ("What do you think about naming this
`:user_id`?")
- Ask for clarification. ("I didn't understand. Can you clarify?")
- Avoid selective ownership of code. ("mine", "not mine", "yours")
- Avoid using terms that could be seen as referring to personal traits. ("dumb",
"stupid"). Assume everyone is attractive, intelligent, and well-meaning.
- Be explicit. Remember people don't always understand your intentions online.
- Be humble. ("I'm not sure - let's look it up.")
- Don't use hyperbole. ("always", "never", "endlessly", "nothing")
- Be careful about the use of sarcasm. Everything we do is public; what seems
like good-natured ribbing to you and a long-time colleague might come off as
mean and unwelcoming to a person new to the project.
- Consider one-on-one chats or video calls if there are too many "I didn't
understand" or "Alternative solution:" comments. Post a follow-up comment
summarizing one-on-one discussion.
2017-08-17 22:00:37 +05:30
- If you ask a question to a specific person, always start the comment by
mentioning them; this will ensure they see it if their notification level is
set to "mentioned" and other people will understand they don't have to respond.
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
### Having your code reviewed
2016-06-02 11:05:42 +05:30
2016-11-03 12:29:30 +05:30
Please keep in mind that code review is a process that can take multiple
iterations, and reviewers may spot things later that they may not have seen the
first time.
2016-06-02 11:05:42 +05:30
- The first reviewer of your code is _you_. Before you perform that first push
of your shiny new branch, read through the entire diff. Does it make sense?
Did you include something unrelated to the overall purpose of the changes? Did
you forget to remove any debugging code?
- Be grateful for the reviewer's suggestions. ("Good call. I'll make that
change.")
- Don't take it personally. The review is of the code, not of you.
- Explain why the code exists. ("It's like that because of these reasons. Would
it be more clear if I rename this class/file/method/variable?")
- Extract unrelated changes and refactorings into future merge requests/issues.
- Seek to understand the reviewer's perspective.
- Try to respond to every comment.
2017-08-17 22:00:37 +05:30
- Let the reviewer select the "Resolve discussion" buttons.
2016-06-02 11:05:42 +05:30
- Push commits based on earlier rounds of feedback as isolated commits to the
branch. Do not squash until the branch is ready to merge. Reviewers should be
able to read individual updates based on their earlier feedback.
2018-12-13 13:39:08 +05:30
### Assigning a merge request for a review
2019-01-03 12:48:30 +05:30
If you want to have your merge request reviewed you can assign it to any reviewer. The list of reviewers can be found on [Engineering projects](https://about.gitlab.com/handbook/engineering/projects/) page.
2018-12-13 13:39:08 +05:30
You can also use `ready for review` label. That means that your merge request is ready to be reviewed and any reviewer can pick it. It is recommended to use that label only if there isn't time pressure and make sure the merge request is assigned to a reviewer.
When your merge request was reviewed and can be passed to a maintainer you can either pick a specific maintainer or use a label `ready for merge`.
It is responsibility of the author of a merge request that the merge request is reviewed. If it stays in `ready for review` state too long it is recommended to assign it to a specific reviewer.
### List of merge requests ready for review
Developers who have capacity can regularly check the list of [merge requests to review](https://gitlab.com/groups/gitlab-org/-/merge_requests?scope=all&utf8=%E2%9C%93&state=opened&label_name%5B%5D=ready%20for%20review) and assign any merge request they want to review.
2017-08-17 22:00:37 +05:30
### Reviewing code
2016-06-02 11:05:42 +05:30
Understand why the change is necessary (fixes a bug, improves the user
experience, refactors the existing code). Then:
2016-11-03 12:29:30 +05:30
- Try to be thorough in your reviews to reduce the number of iterations.
2016-06-02 11:05:42 +05:30
- Communicate which ideas you feel strongly about and those you don't.
- Identify ways to simplify the code while still solving the problem.
- Offer alternative implementations, but assume the author already considered
them. ("What do you think about using a custom validator here?")
- Seek to understand the author's perspective.
- If you don't understand a piece of code, _say so_. There's a good chance
someone else would be confused by it as well.
- After a round of line notes, it can be helpful to post a summary note such as
"LGTM :thumbsup:", or "Just a couple things to address."
2017-08-17 22:00:37 +05:30
- Assign the merge request to the author if changes are required following your
review.
- Set the milestone before merging a merge request.
- Avoid accepting a merge request before the job succeeds. Of course, "Merge
When Pipeline Succeeds" (MWPS) is fine.
- If you set the MR to "Merge When Pipeline Succeeds", you should take over
2016-11-03 12:29:30 +05:30
subsequent revisions for anything that would be spotted after that.
2017-08-17 22:00:37 +05:30
- Consider using the [Squash and
merge][squash-and-merge] feature when the merge request has a lot of commits.
[squash-and-merge]: https://docs.gitlab.com/ee/user/project/merge_requests/squash_and_merge.html#squash-and-merge
### The right balance
One of the most difficult things during code review is finding the right
balance in how deep the reviewer can interfere with the code created by a
reviewee.
- Learning how to find the right balance takes time; that is why we have
reviewers that become maintainers after some time spent on reviewing merge
requests.
- Finding bugs and improving code style is important, but thinking about good
design is important as well. Building abstractions and good design is what
makes it possible to hide complexity and makes future changes easier.
- Asking the reviewee to change the design sometimes means the complete rewrite
of the contributed code. It's usually a good idea to ask another maintainer or
reviewer before doing it, but have the courage to do it when you believe it is
important.
- There is a difference in doing things right and doing things right now.
Ideally, we should do the former, but in the real world we need the latter as
well. A good example is a security fix which should be released as soon as
possible. Asking the reviewee to do the major refactoring in the merge
request that is an urgent fix should be avoided.
- Doing things well today is usually better than doing something perfectly
tomorrow. Shipping a kludge today is usually worse than doing something well
tomorrow. When you are not able to find the right balance, ask other people
about their opinion.
2017-09-10 17:25:29 +05:30
### GitLab-specific concerns
GitLab is used in a lot of places. Many users use
our [Omnibus packages](https://about.gitlab.com/installation/), but some use
the [Docker images](https://docs.gitlab.com/omnibus/docker/), some are
[installed from source](https://docs.gitlab.com/ce/install/installation.html),
and there are other installation methods available. GitLab.com itself is a large
Enterprise Edition instance. This has some implications:
1. **Query changes** should be tested to ensure that they don't result in worse
performance at the scale of GitLab.com:
2018-11-20 20:47:30 +05:30
1. Generating large quantities of data locally can help.
2019-01-03 12:48:30 +05:30
2. Asking for query plans from GitLab.com is the most reliable way to validate
2018-11-20 20:47:30 +05:30
these.
2019-01-03 12:48:30 +05:30
2. **Database migrations** must be:
2018-11-20 20:47:30 +05:30
1. Reversible.
2019-01-03 12:48:30 +05:30
2. Performant at the scale of GitLab.com - ask a maintainer to test the
2018-11-20 20:47:30 +05:30
migration on the staging environment if you aren't sure.
2019-01-03 12:48:30 +05:30
3. Categorised correctly:
2018-11-20 20:47:30 +05:30
- Regular migrations run before the new code is running on the instance.
- [Post-deployment migrations](post_deployment_migrations.md) run _after_
the new code is deployed, when the instance is configured to do that.
- [Background migrations](background_migrations.md) run in Sidekiq, and
should only be done for migrations that would take an extreme amount of
time at GitLab.com scale.
2019-01-03 12:48:30 +05:30
3. **Sidekiq workers**
2017-09-10 17:25:29 +05:30
[cannot change in a backwards-incompatible way](sidekiq_style_guide.md#removing-or-renaming-queues):
2018-11-20 20:47:30 +05:30
1. Sidekiq queues are not drained before a deploy happens, so there will be
workers in the queue from the previous version of GitLab.
2019-01-03 12:48:30 +05:30
2. If you need to change a method signature, try to do so across two releases,
2018-11-20 20:47:30 +05:30
and accept both the old and new arguments in the first of those.
2019-01-03 12:48:30 +05:30
3. Similarly, if you need to remove a worker, stop it from being scheduled in
2018-11-20 20:47:30 +05:30
one release, then remove it in the next. This will allow existing jobs to
execute.
2019-01-03 12:48:30 +05:30
4. Don't forget, not every instance will upgrade to every intermediate version
2018-11-20 20:47:30 +05:30
(some people may go from X.1.0 to X.10.0, or even try bigger upgrades!), so
try to be liberal in accepting the old format if it is cheap to do so.
2019-01-03 12:48:30 +05:30
4. **Cached values** may persist across releases. If you are changing the type a
2017-09-10 17:25:29 +05:30
cached value returns (say, from a string or nil to an array), change the
cache key at the same time.
2019-01-03 12:48:30 +05:30
5. **Settings** should be added as a
2017-09-10 17:25:29 +05:30
[last resort](https://about.gitlab.com/handbook/product/#convention-over-configuration).
If you're adding a new setting in `gitlab.yml`:
2018-11-20 20:47:30 +05:30
1. Try to avoid that, and add to `ApplicationSetting` instead.
2019-01-03 12:48:30 +05:30
2. Ensure that it is also
2018-11-20 20:47:30 +05:30
[added to Omnibus](https://docs.gitlab.com/omnibus/settings/gitlab.yml.html#adding-a-new-setting-to-gitlab-yml).
2019-01-03 12:48:30 +05:30
6. **Filesystem access** can be slow, so try to avoid
2017-09-10 17:25:29 +05:30
[shared files](shared_files.md) when an alternative solution is available.
2017-08-17 22:00:37 +05:30
### Credits
2016-06-02 11:05:42 +05:30
Largely based on the [thoughtbot code review guide].
[thoughtbot code review guide]: https://github.com/thoughtbot/guides/tree/master/code-review
---
[Return to Development documentation](README.md)
2017-09-10 17:25:29 +05:30
[projects]: https://about.gitlab.com/handbook/engineering/projects/
[team]: https://about.gitlab.com/team/
[build handbook]: https://about.gitlab.com/handbook/build/handbook/build#how-to-work-with-build
2018-11-08 19:23:39 +05:30
[^1]: Please note that specs other than JavaScript specs are considered backend code.