Public:Code Review

From YaddaWiki

(Difference between revisions)
Jump to: navigation, search
Line 1: Line 1:
<br/><br/>
<br/><br/>
-
= The Code Review Process in GitHub =
 
-
The Code Review process should be used to accept every commit to a shared (master/development) branch.
+
= The Code Review Process =
-
As a tool for the process, we typically use github's pull requests (or gitlab's merge requests) in so called shared repository model.
+
To guarantee the highest quality of the developed software we use the code review process to accept every commit to a shared (master/development) branch.
 +
 
 +
As a tool for the process, we use github's pull requests or gitlab's merge requests, typically in so called shared repository model.
See '''[[Public:Working with code repo|how to work with code repository]]''' in this kind of model.
See '''[[Public:Working with code repo|how to work with code repository]]''' in this kind of model.
 +
We use English to comment the code in CR.
 +
 +
The code review is part of the scrum process we use to manage our work. In order for the code review to be most efficient, neutral and objective each developer is assigned a different colleague who will check the code when a new sprint begins.
-
# Create a feature branch: '''''git checkout -b feature_branch_name''''' (feature_branch_name should start with your github login) <br/><br/>
 
-
# Make your changes <br/><br/>
 
-
# Commit your changes <br/><br/>
 
-
# [Optionally, so the pull request will be more up-to-date] Clean up your history: '''''git rebase master''''' <br/><br/>
 
-
# Run tests:  '''''gradlew clean test''''' and '''''gradlew clean slowTest''''' <br/><br/>
 
-
# Push the changes: '''''git push origin feature_branch_name''''' <br/><br/>
 
-
# Issue a pull request on github (or merge request on GitLab) with master as the base branch and feature as the head branch <br/><br/>
 
-
# Wait for changes to be accepted. If you are asked to revise your changes, edit your branch and push the changes. <br/><br/>
 
-
# Clean up your history: '''''git rebase master''''' <br/><br/>
 
-
# Merge the feature branch into master: '''''git checkout master''''' and then '''''git merge feature_branch_name''''' (or '''''git merge --squash feature_branch_name''''' if there are more than 1 commit in the feature branch) <br/><br/>
 
-
# If merge was done with '''''--squash''''' option, then commit merged changes and modify commit message: '''''git commit''''' <br/><br/>
 
-
# Pull the changes from origin: '''''git pull --rebase origin''''' (or git fetch origin and git rebase origin/master) <br/><br/>
 
-
# Run tests before push:  '''''gradlew clean test''''' and '''''gradlew clean slowTest''''' <br/><br/>
 
-
# Push the changes to the master branch: '''''git push origin master''''' <br/><br/>
 
-
# Delete the feature branch: '''''git branch -D feature_branch_name''''' and then '''''git push origin :feature_branch_name''''' <br/><br/>
 
-
# [Optionally] Delete references to remote branches that do not exist in the repository anymore: '''''git remote prune origin''''' <br/><br/>
 
<br/>
<br/>
-
= The Code Review Common Checklist =
+
= How you should review your peer's code =
-
Based on: http://java.dzone.com/articles/java-code-review-checklist
+
 
 +
The easiest way (at least until you master the process) is to use the checklist below:
 +
 
 +
 
 +
(Based on: http://java.dzone.com/articles/java-code-review-checklist)
== General /clean code/ ==
== General /clean code/ ==
-
* '''Mind the project coding conventions'''
+
* '''Mind the '''[[Public:Coding conventions|Coding conventions]]'''
* '''Adhere to generally accepted naming conventions'''
* '''Adhere to generally accepted naming conventions'''
* '''Use Intention-Revealing Names'''
* '''Use Intention-Revealing Names'''
Line 48: Line 40:
* '''Use enums instead of int constants'''
* '''Use enums instead of int constants'''
* '''Always override hashCode when you override equals'''
* '''Always override hashCode when you override equals'''
-
* '''Use the org.joda date library instead of standard java date library'''
+
* '''Use the new java.time date library whenever possible (instead the old java library)'''
* '''Group classes into packages by their functionality, not type of service'''
* '''Group classes into packages by their functionality, not type of service'''
* Divide class methods into sections: getters, setters, private, logic etc.
* Divide class methods into sections: getters, setters, private, logic etc.

Revision as of 07:14, 13 June 2018




Contents

The Code Review Process

To guarantee the highest quality of the developed software we use the code review process to accept every commit to a shared (master/development) branch.

As a tool for the process, we use github's pull requests or gitlab's merge requests, typically in so called shared repository model.

See how to work with code repository in this kind of model.

We use English to comment the code in CR.

The code review is part of the scrum process we use to manage our work. In order for the code review to be most efficient, neutral and objective each developer is assigned a different colleague who will check the code when a new sprint begins.



How you should review your peer's code

The easiest way (at least until you master the process) is to use the checklist below:


(Based on: http://java.dzone.com/articles/java-code-review-checklist)


General /clean code/

  • Mind the Coding conventions
  • Adhere to generally accepted naming conventions
  • Use Intention-Revealing Names
  • Classes should be small and focused (max. 20 methods)!
  • Functions should be small and focused (max. 20 lines)!
  • Mark code sections properly
  • Avoid duplication of code
  • Check parameters for validity
  • Return empty arrays or collections, not nulls
  • Minimize the accessibility of classes and members
  • In public classes, use accessor methods, not public fields
  • Use enums instead of int constants
  • Always override hashCode when you override equals
  • Use the new java.time date library whenever possible (instead the old java library)
  • Group classes into packages by their functionality, not type of service
  • Divide class methods into sections: getters, setters, private, logic etc.
  • Use curly braces also for one-line code blocks*
  • Minimize the scope of local variables
  • Explain yourself in code - Comments
  • Make sure the code formatting is applied
  • Refer to objects by their interfaces
  • Avoid finalizers
  • Use marker interfaces to define types
  • Synchronize access to shared mutable data
  • Prefer executors to tasks and threads
  • Document thread safety

Exceptions

  • Use Exceptions rather than Return codes or nulls
  • Prefer runtime exceptions
  • Use checked exceptions for (really) recoverable conditions and runtime exceptions for programming errors
  • Favor the use of standard exceptions
  • Don't ignore exceptions


Tests

  • Write unit tests for every business method
  • Write integration/functional tests for the prepared functionality
  • Do not forget to adjust tests to changes in the existing functionalities


Security

  • Beware injection inclusion - do not join parameters with query 'by hand', use dedicated mechanisms
  • Beware cross site scripting attack - always escape untrusted input before printing (e.g. use <c:out in jsp)
  • Validate inputs (for valid data, size, range, boundary conditions, etc)* Limit the accessibility of packages, classes, interfaces, methods, and fields
  • Release resources (Streams, Connections, etc) in all cases
  • Purge sensitive information from exceptions (exposing file path, internals of the system, configuration)
  • Do not log highly sensitive information
  • Limit the extensibility of classes and methods (by making it final)
  • Input into a system should be checked for valid data size and range
  • Avoid excessive logs for unusual behavior
  • Consider purging highly sensitive from memory after use
  • Define wrappers around native methods (not declare a native method public)
  • Make public static fields final (to avoid caller changing the value)
  • Avoid exposing constructors of sensitive classes
  • Avoid serialization for security-sensitive classes
  • Guard sensitive data during serialization


Performance

  • Limit database queries
  • Count instead of list.size()
  • Load only necessary objects (lazy loading) in the given situation
  • Beware the performance of string concatenation
  • Avoid excessive synchronization
  • Keep Synchronized Sections Small
  • Avoid creating unnecessary objects
Personal tools