-
Notifications
You must be signed in to change notification settings - Fork 50
Contributing
Welcome to Mizar!
Please make sure to read and observe our Code of Conduct
- Fork the repository on GitHub
- Read the Getting Started wiki page for build, usage, and test instructions.
We are here to help you! Once you familiarize yourself with Mizar, we will discuss your contribution and get your work reviewed and merged.
If you have any questions, contact us on our Slack Channel.
Please do not ever hesitate to ask a question or send a pull request.
This is a rough outline of what a contributor's workflow looks like:
- Create a topic branch from where to base the contribution. This is usually master.
- Make commits of logical units.
- Make sure commit messages are in the proper format (see below).
- Push changes in a topic branch to a personal fork of the repository.
- Submit a pull request to mizar.
- The PR must receive approvals from two team members including at least one maintainer.
We organized the source code as follows:
- src: includes separate modules for the project as follows:
- src/xdp: XDP programs
- src/dmn: Transit daemon and userspace APIs
- src/cli: CLI interface to program the transit daemon
- src/rpcgen: XDR protocol for interacting with the transit daemon. During compilation, the rpcgen tool populates this directory with generated header and source files.
- src/include: include directory used by the source or other dependant projects that require linking to the userspace library.
- src/extern: submodules and external files that we copied from other projects. Make sure to keep the license and copy-rights. Usually copying the code in such way is for one of the following reasons. Either it is the recommended approach to reuse the code, or we ported the code from the kernel, or it is temporary until we have an appropriate dependency handling.
- test
- test/conf: Test scenarios
- test/ansible: Deployment scripts and playbooks for test scenarios
- tools: management and debugging tools
Each directory includes a module.mk files that are referenced by the main Makefile.
It is not enough that we have a header for the commits. The commit needs to have one paragraph describing what it does. We shall avoid Multi-pages commit messages as much as possible, but we still understand the needs to do otherwise. The format of commit message is explained below.
We follow a rough convention for commit messages that is designed to answer two questions: what changed and why. The subject line should feature the what and the body of the commit should describe the why.
scripts: add test codes for agent
this add some unit test codes to improve code coverage for agent
Fixes #12
The format can be described more formally as follows:
<subsystem>: <what changed>
<BLANK LINE>
<why this change was made>
<BLANK LINE>
<footer>
The first line is the subject and should be no longer than 70 characters, the second line is always blank, and other lines should be wrapped at 80 characters. This allows the message to be easier to read on GitHub as well as in various git tools.
Note: if your pull request isn't getting enough attention, you can use the reach out on Slack to get help finding reviewers.
We are following the Linux kernel coding style. The .clang-format file concretely defines the coding style. Please use the clang-format tool to ensure consistency. Several IDEs support running clang-format on the entire directory.
We rely on Mizar's Github wiki for documentation. Being a git repository ensures that documents and designs are reviewed and facilitate onboarding.
To update the documentation/design, clone the wiki locally https://github.com/futurewei-cloud/Mizar.wiki.git, and create a pull request for your changes and send it to the team for review.
We follow the following versioning structure: Major.Minor-#. Stable releases versions must have an even Minor number.
We use the included GitHub issues to track progress, scope, priority, and assignment of milestones and software changes.
We love feedback! If you would like to help us improve or wants to file a bug, please create an issue.
Mizar includes unit and functional tests. We strive to maintain code test coverage as high as possible, particularly for the userspace part of the code. Unit tests do not cover the XDP programs.
- When contributing new code, please make sure that:
- Unit tests cover almost all your code
- You solve all problems discovered by sanitizers
- Your code changes reflect in the functional tests.