mattyhall / tools-common

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tools-common

Go Reference

Welcome to tools-common, this package contains various utilities used by the Go code maintained by the tools team.

Dependencies

This package utilizes the go-sqlite3 package which requires GCC to be installed, and CGO to be enabled (CGO_ENABLED=1). See the latest README for the most up-to-date information.

Testing

Running the unit testing requires a number of dependencies:

  • GCC (Latest version available via package manager)
  • Go (1.18+)
  • Make (Latest version available via package manager)

Once the required dependencies have been installed, testing can be done using the repository Makefile. Running make test will run all the available unit tests.

Generating a coverage report from the unit testing may be done by running make coverage, this report will be automatically opened in the default browser.

When running tests, you may want to filter which tests are run; this may be at the package or test level. To run all the tests in the netutil package, run make PACKAGE=netutil test. To run only tests which match a given regular expression, run make TESTS=TestContains test.

Note that these variables may be used in conjunction and both also apply to the coverage target.

Contributing

The following sections cover some basics of how to contribute to tools-common whilst following some of our common practices/conventions.

Gerrit

To contribute to this codebase you can upload patches through Gerrit. Make sure you have configured the git hooks as described in the Git Hooks section so that the code is linted and formatted before uploading the patch.

Once you are ready to make your first commit note that all commits must be linked to an MB. This is done by making sure that the commit title has the following format MB-XXXXX Commit title where MB-XXXXX is a valid issue in Jira.

Git Hooks

Before contributing any patches, the Git hooks should be configured to ensure code is correctly linted and formatted.

The Git hooks require the following dependencies:

  • gofmt (Standard code formatting tool)
  • gofumpt (A more opinionated code formatting tool)
  • goimports (Automatic insertion/sorting of imported modules)
  • golangci-lint (Bulk linting tool)
  • sponge (Binary provided by moreutils which "soaks" all input before writing output)
  • wget (Used to download the commit-msg hook from Gerrit)

Once installed, the Git hooks may be setup using the following command:

git config core.hooksPath .githooks

If the Git hooks have been setup correctly, the Gerrit commit-msg hook will be downloaded automatically when creating your first commit. However, this can also be done manually by downloading the commit-msg script, marking it as executable and placing it into the .githooks directory.

Formatting

We automatically apply formatting on any staged Go files before committing. This may not be what you want if you ever have some hunks in a file staged but not others, as it will cause all of them to be committed. This behaviour can be configured using:

git config couchbase.tools.format.behaviour BEHAVIOUR

Where BEHAVIOUR is one of the following:

  1. error: echo what files have incorrect formatting and quit
  2. fix: echo what files have incorrect formatting, fix them and quit
  3. stage: echo what files have incorrect formatting, fix and stage them and quit
  4. commit/no config value/invalid config value: fix the files with incorrect formatting, stage them and allow the commit to proceed.

Coding style

In this section we will cover notes on the exact coding style to use for this codebase. Most of the style rules are enforced by the linters, so here we will only cover ones that are not.

Documenting

  • All exported functions should have a matching docstring.
  • Any non-trivial unexported function should also have a matching docstring. Note this is left up to the developer and reviewer consideration.
  • Docstrings must end on a full stop (.).
  • Comments must be wrapped at 120 characters.
  • Notes on interesting/unexpected behavior should have a newline before them and use the // NOTE: prefix.

Please note that not all the code in the repository follows these rules, however, newly added/updated code should generally adhere to them.

Related Projects

License

Copyright 2021 Couchbase Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

License:Apache License 2.0


Languages

Language:Go 99.5%Language:Shell 0.4%Language:Makefile 0.1%