Skip to content

Latest commit

History

History
98 lines (56 loc) 路 8.14 KB

CONTRIBUTING.md

File metadata and controls

98 lines (56 loc) 路 8.14 KB

Contributing code to ODK Collect

This is a living document. If you see something that could be improved, edit this document and submit a pull request following the instructions below!

Table of Contents

Submitting a pull request

To contribute code to ODK Collect, you will need to open a pull request which will be reviewed by the community and then merged into the core project. Generally, a pull request is submitted when a unit of work is considered complete but it can sometimes be helpful to share ideas through a work in progress (WIP) pull request (learn more).

  1. Read our "state of the union" to get a quick understanding of the codebase and its history. The "Where we're going" section may suggest efforts you can get involved in if you are having a hard time finding ways to contribute.

  2. Read our code style guidelines.

  3. Read our documentation on automated testing.

  4. If you're going to be working on adding or changing any QuestionWidget objects it's a good idea to read our docs on them.

  5. Set up your development environment.

  6. To make sure you have the latest version of the code, set up this repository as a remote for your fork and then sync your fork.

  7. Create a branch for the code you will be writing:

     git checkout -b NAME_OF_YOUR_BRANCH
    
  8. If there is an issue corresponding to what you will work on, leave a comment on the issue asking to claim it. If there is no issue yet, create one to provide background on the problem you are solving. Issues that have been prioritised by the core team can be found in Collect's backlog.

  9. If you are an external contributor, make sure to discuss working on the issue with a maintainer who will then assign you to it. If you're on the core team you can either assign yourself to an issue in the backlog and move it to "in progress" or discuss adding an item to the backlog with the rest of the team.

  10. Once you've made incremental progress towards you goal, commit your changes with a meaningful commit message. Use keywords for closing issues to refer to issues and have them automatically close when your changes are merged.

     git commit -m "Do a thing. Fix #1."
    
  11. Push changes to your fork at any time to make them publicly available:

     git push
    
  12. Once you have completed your code changes, verify that you have followed the style guidelines.

  13. When your changes are ready to be added to the core ODK Collect project, open a pull request. Make sure to set the base fork to getodk/collect. Describe your changes in the comment, refer to any relevant issues using keywords for closing issues and tag any person you think might need to know about the changes.

  14. Pull requests will be reviewed when committers have time. If you haven't received a review in 10 days, you may notify committers by putting @getodk/collect in a comment.

Making sure your pull request is accepted

  1. Confirm that your code compiles.

  2. Verify the functionality. Ideally, include automated tests with each pull request. If that's not possible, describe in the pull request comment which cases you tried manually to confirm that your code works as expected. Attach a test form when appropriate. This form should only include questions which are useful for verifying your change.

  3. Make sure your changes don't cause any memory leaks (we use LeakCanary for this purpose)

  4. Make sure that there is an issue that corresponds to the pull request and that it has been discussed by the community as necessary.

  5. Keep your pull request focused on one narrow goal. This could mean addressing an issue with multiple, smaller pull requests. Small pull requests are easier to review and less likely to introduce bugs. If you would like to make stylistic changes to the code, create a separate pull request.

  6. Write clear code. Use descriptive names and create meaningful abstractions (methods, classes).

  7. Document your reasoning. Your commit messages should make it clear why each change has been made.

  8. Point out decisions you made and what alternatives you considered. If you're unsure about a particular approach, ask a question to make your own thinking clear and help the reviewer identify controversial parts of the proposed solution. For example: "here I returned a result object to represent the status after the transaction. I also considered throwing an exception in case of error but I didn't like that it made it unclear where an error happened. Which do you prefer and why?" This is particularly important for work in progress pull requests.

  9. Follow the guidelines below.

The review process

Bug fixes, pull requests corresponding to issues with a clearly stated goal and pull requests with clear tests and/or process for manual verification are given priority. Pull requests that are unclear or controversial may be labelled as needs discussion and/or may take longer to review.

We encourage everyone to participate in the review process to get familiar with the code base and help ensure higher quality. Reviewers should ask themselves some or all of the following questions:

  • Was this change adequately discussed prior to implementation?
  • Is the intended behavior clear under all conditions?
  • What interesting cases should be verified?
  • Is the behavior as intended in all cases?
  • What other functionality could this PR affect? Does that functionality still work as intended?
  • Was the change verified with several different devices and Android versions?
  • Is the code easy to understand and to maintain?
  • Is there sufficient detail to inform any changes to documentation?

A maintainer does a thorough code review and when satisfied with the code, accepts and merges. Typically, manual testing is a requirement and then the needs testing label should be added after merging. Only in rare cases do we merge pull requests that are deemed safe enough to skip additional testing.

Merging pull requests

Pull requests can be merged by maintainers once they are accepted unless CI is currently failing.

If a PR is being merged to a release branch rather than master, any strings added as part of the changes should also be added to master (with tools:ignore="UnusedResources") as a follow-up PR so that they can be translated.

Work in progress pull requests

Work in progress (WIP) pull requests are useful to illustrate a proposed direction and get early feedback before committing to a solution direction. These should ideally ideally be created as Draft Pull Requests.

Triage issues Open Source Helpers

In addition to contributing code, you can help to triage issues. This can include reproducing bug reports, or asking for vital information such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to subscribe to getodk/collect on CodeTriage.