Coding guidelines¶
Coding in Go¶
We code in Go™ and try to follow the best practices and style outlined in Effective Go and the supplemental rules from the Go Code Review Comments wiki.
We also recommend new contributors review the following before submitting pull requests:
The following tools are executed against all pull requests. Any errors flagged by these tools must be addressed before the code will be merged:
Testing¶
Unit tests are expected to accompany all production code changes. These tests
should be fast, provide very good coverage for new and modified code, and
support parallel execution (go test -p
).
We rely heavily on our tests to catch regressions and behavior changes. If code is not exercised by tests, it will likely be removed. That said, we know there are some areas of the code where we lack test coverage. If you need to make a change in one of these areas, tests to cover the impacted paths should be made before delivering features or fixes.
Two matching libraries are commonly used in our tests. When modifying code, please use the matching library that has already been chosen for the package.
Any fixtures or data required by tests should generated or placed under version
control. When fixtures are generated, they must be placed in a temporary
directory created by ioutil.TempDir
and cleaned up when the test
terminates. When fixtures are placed under version control, they should be
created inside a testdata
folder; documentation that describes how to
regenerate the fixtures should be provided in the tests or a README.txt
.
Sharing fixtures across packages is strongly discouraged.
When fakes or mocks are needed, they must be generated. Bespoke, hand-coded
mocks are a maintenance burden and tend to include simulations that inevitably
diverge from reality. Within Fabric, we use go generate
directives to
manage the generation with the following tools:
Adding or updating Go packages¶
Hyperledger Fabric uses go modules to manage and vendor its dependencies. This
means that all of the external packages required to build our binaries reside
in the vendor
folder at the top of the repository. Go uses the packages in
this folder instead of the module cache when go
commands are executed.
If a code change results in a new or updated dependency, please be sure to run
go mod tidy
and go mod vendor
to keep the vendor
folder and
dependency metadata up to date.
See the Go Modules Wiki for additional information.