2022-05-11 15:39:36 +01:00
|
|
|
---
|
|
|
|
title: Contributing
|
|
|
|
parent: Development
|
|
|
|
permalink: /development/contributing
|
|
|
|
---
|
|
|
|
|
2017-10-06 02:11:51 +01:00
|
|
|
# Contributing to Dendrite
|
|
|
|
|
|
|
|
Everyone is welcome to contribute to Dendrite! We aim to make it as easy as
|
|
|
|
possible to get started.
|
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
## Sign off
|
|
|
|
|
|
|
|
We ask that everyone who contributes to the project signs off their contributions
|
|
|
|
in accordance with the [DCO](https://github.com/matrix-org/matrix-spec/blob/main/CONTRIBUTING.rst#sign-off).
|
|
|
|
In effect, this means adding a statement to your pull requests or commit messages
|
|
|
|
along the lines of:
|
|
|
|
|
|
|
|
```
|
|
|
|
Signed-off-by: Full Name <email address>
|
|
|
|
```
|
|
|
|
|
|
|
|
Unfortunately we can't accept contributions without it.
|
2017-10-06 11:23:49 +01:00
|
|
|
|
|
|
|
## Getting up and running
|
|
|
|
|
2022-07-21 06:08:17 +01:00
|
|
|
See the [Installation](installation) section for information on how to build an
|
2022-05-11 15:39:36 +01:00
|
|
|
instance of Dendrite. You will likely need this in order to test your changes.
|
2017-10-06 11:23:49 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
## Code style
|
2020-08-25 08:11:41 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
On the whole, the format as prescribed by `gofmt`, `goimports` etc. is exactly
|
|
|
|
what we use and expect. Please make sure that you run one of these formatters before
|
|
|
|
submitting your contribution.
|
|
|
|
|
|
|
|
## Comments
|
|
|
|
|
|
|
|
Please make sure that the comments adequately explain *why* your code does what it
|
|
|
|
does. If there are statements that are not obvious, please comment what they do.
|
|
|
|
|
|
|
|
We also have some special tags which we use for searchability. These are:
|
|
|
|
|
|
|
|
* `// TODO:` for places where a future review, rewrite or refactor is likely required;
|
|
|
|
* `// FIXME:` for places where we know there is an outstanding bug that needs a fix;
|
|
|
|
* `// NOTSPEC:` for places where the behaviour specifically does not match what the
|
|
|
|
[Matrix Specification](https://spec.matrix.org/) prescribes, along with a description
|
|
|
|
of *why* that is the case.
|
|
|
|
|
|
|
|
## Linting
|
|
|
|
|
|
|
|
We use [golangci-lint](https://github.com/golangci/golangci-lint) to lint Dendrite
|
|
|
|
which can be executed via:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
golangci-lint run
|
2020-08-25 08:11:41 +01:00
|
|
|
```
|
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
If you are receiving linter warnings that you are certain are spurious and want to
|
|
|
|
silence them, you can annotate the relevant lines or methods with a `// nolint:`
|
|
|
|
comment. Please avoid doing this if you can.
|
|
|
|
|
|
|
|
## Unit tests
|
|
|
|
|
2020-08-25 08:11:41 +01:00
|
|
|
We also have unit tests which we run via:
|
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
```bash
|
2022-08-05 09:19:33 +01:00
|
|
|
go test --race ./...
|
2020-08-25 08:11:41 +01:00
|
|
|
```
|
2020-02-06 11:54:26 +00:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
In general, we like submissions that come with tests. Anything that proves that the
|
|
|
|
code is functioning as intended is great, and to ensure that we will find out quickly
|
|
|
|
in the future if any regressions happen.
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
We use the standard [Go testing package](https://gobyexample.com/testing) for this,
|
|
|
|
alongside some helper functions in our own [`test` package](https://pkg.go.dev/github.com/matrix-org/dendrite/test).
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
## Continuous integration
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
When a Pull Request is submitted, continuous integration jobs are run automatically
|
|
|
|
by GitHub actions to ensure that the code builds and works in a number of configurations,
|
|
|
|
such as different Go versions, using full HTTP APIs and both database engines.
|
|
|
|
CI will automatically run the unit tests (as above) as well as both of our integration
|
|
|
|
test suites ([Complement](https://github.com/matrix-org/complement) and
|
|
|
|
[SyTest](https://github.com/matrix-org/sytest)).
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
You can see the progress of any CI jobs at the bottom of the Pull Request page, or by
|
|
|
|
looking at the [Actions](https://github.com/matrix-org/dendrite/actions) tab of the Dendrite
|
|
|
|
repository.
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
We generally won't accept a submission unless all of the CI jobs are passing. We
|
|
|
|
do understand though that sometimes the tests get things wrong — if that's the case,
|
|
|
|
please also raise a pull request to fix the relevant tests!
|
|
|
|
|
|
|
|
### Running CI tests locally
|
2019-08-07 11:46:36 +01:00
|
|
|
|
|
|
|
To save waiting for CI to finish after every commit, it is ideal to run the
|
2020-02-06 11:54:26 +00:00
|
|
|
checks locally before pushing, fixing errors first. This also saves other people
|
|
|
|
time as only so many PRs can be tested at a given time.
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
To execute what CI tests, first run `./build/scripts/build-test-lint.sh`; this
|
2020-02-06 11:54:26 +00:00
|
|
|
script will build the code, lint it, and run `go test ./...` with race condition
|
|
|
|
checking enabled. If something needs to be changed, fix it and then run the
|
|
|
|
script again until it no longer complains. Be warned that the linting can take a
|
|
|
|
significant amount of CPU and RAM.
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2019-10-02 04:01:52 +01:00
|
|
|
Once the code builds, run [Sytest](https://github.com/matrix-org/sytest)
|
|
|
|
according to the guide in
|
2022-02-08 16:16:01 +00:00
|
|
|
[docs/sytest.md](https://github.com/matrix-org/dendrite/blob/main/docs/sytest.md#using-a-sytest-docker-image)
|
2019-10-02 04:01:52 +01:00
|
|
|
so you can see whether something is being broken and whether there are newly
|
|
|
|
passing tests.
|
|
|
|
|
|
|
|
If these two steps report no problems, the code should be able to pass the CI
|
|
|
|
tests.
|
2019-08-07 11:46:36 +01:00
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
## Picking things to do
|
2017-10-06 02:11:51 +01:00
|
|
|
|
2020-02-06 11:54:26 +00:00
|
|
|
If you're new then feel free to pick up an issue labelled [good first
|
|
|
|
issue](https://github.com/matrix-org/dendrite/labels/good%20first%20issue).
|
2017-10-06 02:11:51 +01:00
|
|
|
These should be well-contained, small pieces of work that can be picked up to
|
|
|
|
help you get familiar with the code base.
|
|
|
|
|
2020-09-29 10:07:23 +01:00
|
|
|
Once you're comfortable with hacking on Dendrite there are issues labelled as
|
2020-08-25 08:11:41 +01:00
|
|
|
[help wanted](https://github.com/matrix-org/dendrite/labels/help-wanted),
|
2020-02-06 11:54:26 +00:00
|
|
|
these are often slightly larger or more complicated pieces of work but are
|
|
|
|
hopefully nonetheless fairly well-contained.
|
2017-10-06 02:11:51 +01:00
|
|
|
|
2020-02-06 11:54:26 +00:00
|
|
|
We ask people who are familiar with Dendrite to leave the [good first
|
|
|
|
issue](https://github.com/matrix-org/dendrite/labels/good%20first%20issue)
|
2017-10-06 02:11:51 +01:00
|
|
|
issues so that there is always a way for new people to come and get involved.
|
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
## Getting help
|
2017-10-06 02:11:51 +01:00
|
|
|
|
|
|
|
For questions related to developing on Dendrite we have a dedicated room on
|
2019-01-28 10:15:33 +00:00
|
|
|
Matrix [#dendrite-dev:matrix.org](https://matrix.to/#/#dendrite-dev:matrix.org)
|
2017-10-06 02:11:51 +01:00
|
|
|
where we're happy to help.
|
|
|
|
|
2022-05-11 15:39:36 +01:00
|
|
|
For more general questions please use [#dendrite:matrix.org](https://matrix.to/#/#dendrite:matrix.org).
|