Insulin Lib is an open source, community-driven project, which makes third-party patches essential for keeping it great.
Testing Insulin Lib with all combinations of SugarCRM versions, flavors and configurations on each possible environment, besides hard, simply isn't feasible. Instead, what we want is to keep it as easy as possible for you to contribute with changes that will make it work on your environment. In order to keep consistency there are a few guidelines that we need contributors to follow.
If you think you've found a security issue, please use the special procedure instead.
Before submitting a bug confirm that it doesn't exists already on the official bug tracker.
If you found an already reported issue, even if it's closed, please add your comments on it.
If you are sure it is a new bug, please report it by following the rules below whenever possible:
- Use the title field to clearly describe the issue;
- Describe the steps needed to reproduce the bug with short code examples (providing a unit test that illustrates the bug would be even better);
- Give as much details as possible about your environment (OS, PHP version, Insulin Lib version, SugarCRM version, enabled extensions, existing custom modules or custom code, etc.);
- (optional) Attach a patch.
Patches are the best way to provide a bug fix or to propose enhancements to Insulin Lib.
Before working on Insulin Lib, setup your environment with the following software:
- Git;
- PHP version 5.3.3+;
- PHPUnit 3.6.4+.
Set up your user information with your real name and a working email address:
$ git config --global user.name "Your Name"
$ git config --global user.email you@example.comIf you are new to Git, we highly recommend you to read the excellent and free ProGit book.
If your IDE creates configuration files inside project's directory, you can use global
.gitignorefile (for all projects) or.git/info/excludefile (per project) to ignore them. See Github's Documentation.
Windows users: when installing Git, the installer will ask what to do with line endings and suggests to replace all LF by CRLF. This is the wrong setting if you wish to contribute to Insulin Lib! Selecting the as-is method is your best choice, as Git will convert your line feeds to the ones in the repository. If you have already installed Git, you can check the value of this setting by typing:
$ git config core.autocrlfThis will return either
"false","input" or "true","true" and "false"being the wrong values. Set it to another value by typing:$ git config --global core.autocrlf inputReplace
--globalby--localif you want to set it only for the active repository.
Get the Insulin Lib source code:
- Create a GitHub account and sign in;
- Fork the Insulin Lib repository (click on the "Fork" button);
- After the "hardcore forking action" has completed, clone your fork locally (this will create a
insulin-libdirectory):
$ git clone git@github.com:USERNAME/lib.git insulin-lib- Add the upstream repository as
remote:
$ cd insulin-lib
$ git remote add upstream git://github.com/insulin/lib.gitSee GitHub using pull requests for more information.
Now that Insulin Lib is installed, check that all unit tests pass on your environment as explained in the dedicated tests section.
- Make sure you have added the necessary tests for your changes.
- Run all the tests to assure nothing else was accidentally broken.
Before you start, you must know that all the patches you are going to submit must be released under the MIT license.
Before working on a patch, you must determine on which branch you need to work. The branch should be based on the master branch if you want to add a new feature. But if you want to fix a bug, use the oldest but still maintained version of Insulin Lib where the bug was found (like 2.0).
All bug fixes merged into maintenance branches are also merged into more recent branches on a regular basis. For instance, if you submit a patch for the
2.0branch, the patch will also be applied by the core team on themasterbranch.
Each time you want to work on a patch for a bug or on an enhancement, create a topic branch:
$ git checkout -b BRANCH_NAME masterOr, if you want to provide a bug fix for the 2.0 branch, first track the remote 2.0 branch locally:
$ git checkout -t origin/2.0Then create a new branch of the 2.0 branch to work on the bug fix:
$ git checkout -b BRANCH_NAME 2.0Use a descriptive name for your branch (
ticket_XXXwhereXXXis the ticket number is a good convention for bug fixes).
The above checkout commands automatically switch the code to the newly created branch (check the branch you are working on with git branch).
Work on the code as much as you want and commit as much as you want; but keep in mind the following:
- Follow the coding standards;
- Check for unnecessary whitespace with
git diff --checkbefore committing. (usegit diff --checkto check for trailing spaces -- also read the tip below); - Add unit tests to prove that the bug is fixed or that the new feature actually works;
- Try hard to not break backward compatibility (if you must do so, try to provide a compatibility layer to support the old way) -- patches that break backward compatibility have less chance to be merged;
- Do atomic and logically separate commits (use the power of
git rebaseto have a clean and logical history); - Squash irrelevant commits that are just about fixing coding standards or fixing typos in your own code;
- Never fix coding standards in some existing code as it makes the code review more difficult;
- Write good commit messages (see the tip below).
- Make commits of logical units.
- Make sure your commit messages are in the proper format.
A good commit message is composed of a summary (the first line), optionally followed by a blank line and a more detailed description. The summary should start with the component you are working on in square brackets (
[Exception],[Service], …). Use a verb in the infinitive on present form (fix …,add …,update …,restore …, …) to start the summary and don't add a period at the end.
When your patch is not about a bug fix (when you add a new feature or change an existing one for instance), it must also include the following:
- An explanation of the changes in the relevant CHANGELOG file(s);
- An explanation on how to upgrade an existing application in the relevant UPGRADE file(s) if the changes break backward compatibility.
Whenever you feel that your patch is ready for submission, follow the steps bellow.
Before submitting your patch, update your branch (needed if it takes a while to finish your changes):
$ git checkout BRANCH_NAME
$ git fetch upstream
$ git rebase upstream/masterReplace
masterwith2.0if you are working on a bug fix
When doing the rebase command, you might have to fix merge conflicts. git status will show you the unmerged files. Resolve all the conflicts, then continue the rebase:
$ git add ... # add resolved files
$ git rebase --continueCheck that all tests still pass and push your branch remotely:
$ git push origin BRANCH_NAMEYou can now make a pull request on the insulin/lib Github repository.
Take care to point your pull request towards
insulin:2.0if you want the core team to pull a bug fix based on the 2.0 branch.
To ease the core team work, always include the modified components in your pull request message, like in:
[Exception] fix something
[Service] [Acl] [Logic] add something
Please use the title with "[WIP]" if the submission is not yet completed or the tests are incomplete or not yet passing.
The pull request description must include the following check list to ensure that contributions may be reviewed without needless feedback loops and that your contributions can be included into Insulin Lib as quickly as possible:
Bug fix: [yes|no]
Feature addition: [yes|no]
Backwards compatibility break: [yes|no]
Tests pass: [yes|no]
Fixes the following tickets: [comma separated list of tickets fixed by the PR]
Todo: [list of todos pending]
An example submission could now look as follows:
Bug fix: no
Feature addition: yes
Backwards compatibility break: no
Tests pass: yes
Fixes the following tickets: #12, #43
Todo: -
In the pull request description, give as much details as possible about your changes (don't hesitate to give code examples to illustrate your points). If your pull request is about adding a new feature or modifying an existing one, explain the rationale for the changes. The pull request description helps the code review and it serves as a reference when the code is merged (the pull request description and all its associated comments are part of the merge commit message).
In addition to this "code" pull request, you must also link to the documentation wiki to update the documentation when appropriate.
Based on the feedback of the pull request, you might need to rework your patch. Before re-submitting the patch, rebase with upstream/2.0, don't merge; and force the push to the origin:
$ git rebase -f upstream/master
$ git push -f origin BRANCH_NAMEwhen doing a
push --force, always specify the branch name explicitly to avoid messing other branches in the repo (--forcetells git that you really want to mess with things so do it carefully).
Often, moderators will ask you to "squash" your commits. This means you will convert many commits to one commit. To do this, use the rebase command:
$ git rebase -i HEAD~3
$ git push -f origin BRANCH_NAMEThe number 3 here must equal the amount of commits in your branch. After you type this command, an editor will popup showing a list of commits:
pick 1a31be6 first commit
pick 7fc64b4 second commit
pick 7d33018 third commit
To squash all commits into the first one, remove the word "pick" before the second and the last commits, and replace it by the word "squash". When you save, git will start rebasing, and if successful, will ask you to edit the commit message, which by default is a listing of the commit messages of all the commits. When you finish, execute the push command.
To automatically get your feature branch tested, you can add your fork to travis-ci. Just login using your github.com account and then simply flip a single switch to enable automated testing. In your pull request, instead of specifying "Tests pass: [yes|no]", you can link to the travis-ci status icon. For more details, see the [travis-ci.org Getting Started Guide][travis-ci.org Getting Started Guide]. This could easily be done by clicking on the wrench icon on the Travis' build page. First select your feature branch and then copy the markdown to your PR description.
If you found a security issue in Insulin Lib, please don't use the mailing-list or the bug tracker. All security issues must be sent to security+lib [at] sugarmeetsinsulin.com instead. Emails sent to this address are forwarded to the Insulin Lib core-team private mailing-list.
For each report, we first try to confirm the vulnerability. When it is confirmed, the core-team works on a solution following these steps:
- Send an acknowledgement to the reporter;
- Work on a patch;
- Write a post describing the vulnerability, the possible exploits, and how to patch/upgrade affected applications;
- Apply the patch to all maintained versions of Insulin Lib;
- Publish the post on the official Insulin Lib blog.
While we are working on a patch, please do not reveal the issue publicly.
Before submitting a patch for inclusion, you need to run the Insulin Lib test suite to check that you didn't broke anything.
To run the Insulin Lib test suite, install PHPUnit 3.6.4 or later first:
$ pear config-set auto_discover 1
$ pear install pear.phpunit.de/PHPUnitRun the test suite from the Insulin Lib root directory with the following command:
$ phpunit --configuration custom/library/Insulin/Tests/phpunit.xml.distThe output should display OK. If not, you need to figure out what's going on and if the tests are broken because of your modifications.
If you want to test a single component type its path after the
phpunitcommand, e.g.:$ phpunit --configuration custom/library/Insulin/Tests/phpunit.xml.dist custom/library/Insulin/Tests/ExceptionTest.phpRun the test suite before applying your modifications to check that they run fine on your configuration.
If you add a new feature, you also need to check the code coverage by using the coverage-html option:
$ phpunit --configuration custom/library/Insulin/Tests/phpunit.xml.dist --coverage-html=cov/Check the code coverage by opening the generated cov/index.html page in a browser.
The code coverage only works if you have XDebug enabled and all dependencies installed.