- What can I do?
- How should I contribute?
- How is the plug-in architected?
- How do I make changes?
- How can I check that my changes are consistent with the codebase?
- How can I check that the tests still pass?
- How can I manually test the plug-in?
- How should I commit my changes?
If you want to contribute by writing code, feel free to pick an open issue or submit a new feature.
Otherwise, you can create an issue to report a bug, ask for a new feature or for more documentation. This is appreciated too!
Note: if you want to solve an open issue, please leave a comment on the corresponding thread so that we know that someone is working on it.
- Fork the project
- Create a new branch with a meaningful name
- Commit your changes
- Submit a PR
When a PR is created, it is automatically analyzed by the following CI tools to ensure a good code quality:
Important: SonarCloud is not notified when the PR is submitted from a fork. Indeed, because of security restriction in Travis CI, forks cannot use encrypted SonarCloud token.
Pitclipse is made of several Eclipse bundles. Each bundle is implemented as an Eclipse project and is available in the bundles/
directory.
Please see bundles/README.md for further details.
The Eclipse IDE for RCP developers is the preferred IDE to develop Eclipse plug-ins.
The easiest way is to import Pitclipse's project set as described in the README. The projects can although be imported manually:
File
>Import...
Existing Projects into Workspace
- Type to the path of the
bundles
directory in theSelect root directory
field - Check all projects
Finish
Wait for all projects to be imported. Depending on the Eclipse package you are using many errors may come up: some projects' dependencies may be missing. To solve this, we have to tell Eclipse IDE to use a specific environment and to adjust a few other things, related to Maven JARs. Our development environment is specified through a target platform. This target platform is located within the releng
directory; to use it:
File
>Import...
Existing Projects into Workspace
- Type to the path of the
releng
directory in theSelect root directory
field - Check only the
org.pitest.pitclipse.target
project Finish
- Open the
org.pitest.pitclipse.target.target
file (the other.target
file is used in the CI to make sure we can build against older versions of Eclipse); Eclipse IDE starts downloading all the dependencies, which may take some time. The process can be followed thanks to the Progress view - On the top-right corner of the editor, click on Set as Active Target Platform
- Open the
pom.xml
in the projectorg.pitest
, navigate to the<execution>
element marked with error, use the menu "Edit" > "Quick Fix" and select "Discover new m2e connectors"; in the dialog selectmaven-dependency-plugin
and press "Finish"; conclude the installation procedure and restart Eclipse when prompted - Use the menu "Project" > "Clean" and clean all projects; you should now have an error free workspace.
Note: in some rare cases errors still remain. In such a case, opening the
org.pitest.pitclipse.target.target
file and clicking on Reload target platform or restarting Eclipse IDE should definitely fix them.
To ensure a good code quality:
- all the features must be tested
- all the public API must be documented
A source plug-in should be created in the bundles/
directory. A new plug-in project can be created as follows:
File
>New
>Other...
- Select
Plug-in Project
- Type the name of the plug-in and change its default location
- Click
Finish
Caution: do not forget to add the corresponding module in the
bundles/pom.xml
file, otherwise the plug-in will be ignored by Maven.
Tests are hosted in fragments located under the tests/
directory. By convention, a fragment's name is the name of the tested plug-in suffixed with .tests
. A new fragment project can be created as follows:
File
>New
>Other...
- Select
Fragment Project
- Type the name of the fragment and change its default location
- Click
Next
then select the host plug-in (the one that contains the code to test) - Click
Finish
In order to include the tests in Maven build, the following steps are required:
- Add the corresponding module to the
tests/pom.xml
file - Add the source and test modules to the
org.pitest.pitclipse.tests.coverage.report/pom.xml
file.
Please take a look at existing tests and make yours consistent.
You can check the code with the following command:
mvn clean verify
It checks that:
- the code compiles
- all the tests pass
- the code style is consistent
Code style is enforced by Checkstyle. You may need to install the corresponding Eclipse IDE plug-in. The plug-in is not able to catch everything, so please try to keep the style consistent.
Boy Scout Rule: Leave your code better than you found it!
Tests can be run from Maven with the following command:
mvn clean verify
Alternatively, tests can be run from Eclipse:
In tests
project you find some stored "Launch configurations", ending with .launch
; it is best to use such launch configurations to run all the tests of that project, since they are already configured correctly:
- Right-click on such a
.launch
file Run As
and select the single menu entry
For UI tests, a new Eclipse window should open during the time of the tests, before closing automatically. Please, do not interact with such a window or you will break test execution.
Manual tests are still useful for prototyping, especially since UI tests are not implemented yet.
To open a new Eclipse IDE instance that uses the plug-in under development:
- Right-click on a project
Run As
>Eclipse application
A new Eclipse IDE window should open, in which new projects can be created for testing purposes.
A commit message is usually made of two sections:
<subject>
<details>
The subject must:
- be a one-liner,
- start with a capital letter,
- use the imperative, present tense,
- not end with a dot.
The details must:
- be separated with the subject by a blank line,
- explain the reason of the commit, a technical choice or some implementation details.
For instance:
Compute code coverage during Travis CI build
The new jacoco Maven profile allows to compute code's coverage
thanks to JaCoCo. It can be used as follows:
* mvn verify -P jacoco
All reports are aggregated by the org.pitest.pitclipse.tests.coverage.report
module, which makes possible to forward the result to CI tools such as CodeCov
and Coveralls.
Note: the 'details' part can be ignored when the commit is straightforward.
“A commit, like a well-designed function or class, should represent a single concept. A distinct, cohesive commit is easy to understand, review, and, if necessary, revert.”
© Jared Carroll (Crafting Commits in Git)
Before submitting a PR, new commits should be reviewed to ensure that they are cohesive and, above all, easy to understand and review. If a commit affects dozens of files then it is likely too big and should be split into several smaller ones. If a change is spread across several small commits then they should likely be squashed.