- Getting Started Quick
- NPM Command Reference
- Repository
- Preferred IDE
- Commit Guidelines
- Guidelines for sending a Pull Request
- Documentation guidelines
- The CI Platform
- Security
In order to contribute to this project, you should:
- Clone this repository / your fork of this repository using
git
- If not on
develop
, switch to thedevelop
branch withgit checkout develop
- Run
npm install
in the project directory - Make sure everything is working by running
npm test
. - Create a new feature branch from
develop
withfeature/your-feature-name
. - Make the necessary changes in line with the objective(s) of the pull request
- Ensure that you have added unit and integration tests for any new features added / bugs fixed
- Run
npm test
. If any tests fail, resolve the issue with the code, and re-try - Once the tests pass, commit and push. Do not alter the
version
inpackage.json
- Create a pull request to
develop
Installs all dependencies
listed in package.json
The script associated with npm test
will run all tests that ensures that your commit does not break anything in the
repository. As such run npm test
before you push. In addition to performing a few logging and pre-test configuration
actions, this test bootstrap script will also trigger the various sub test tasks, which include code lint checks, unit
and integration tests. At present, the following sub tests can be run on a standalone basis:
npm run test-system
: Runs system testsnpm run test-lint
: Performs code style checks, flagging inconsistencies and other miscellaneous anomaliesnpm run test-unit
: Runs unit tests to verify the correctness of various methods used within the projectnpm run test-integration
: Checks Newman sanity with a sample requests categorized by collectionnpm run test-cli
: Runs CLI integration testsnpm run test-library
: Runs library integration tests
Directory | Summary |
---|---|
bin |
Contains scripts that wrap around all the other methods provided within the project |
examples |
A sample script to demonstrate collection file parsing within Newman |
lib |
Houses the core logic and configuration sets for Newman, including reporters, and the runtime |
npm |
All CI scripts (triggered by NPM run-script) |
test |
Contains all the test scripts for Newman |
test/unit |
Method wise tests for Newman |
test/system |
Erstwhile infra tests, checks for proper code structuring and division across the project |
test/integration |
Contains the integration test runner, validates Newman as a library |
This repository uses standard git-flow
branch management policy/strategy. If you want to learn more on git-flow
,
refer to tutorial from Atlassian and more details at
http://nvie.com/posts/a-successful-git-branching-model/.
Deletion of
master
anddevelop
. Rebasing onmaster
is blocked.
It is advised to use an IDE that provides EditorConfig support via .editorconfig
files,
either natively, or through plugins. In addition, the .gitignore
file has been populated with entries to support
ignoring metadata / manifest files for various IDEs.
The following best practices, coupled with a pinch of common-sense will keep the repository clean and usable in future. The idea is that everything that goes into the repository is not for an individual, but someone else who will be directly or indirectly affected by it.
Checking for errors should be done for each commit whether it is being pushed to remote or not.
First, you don't want to submit any whitespace errors. Git provides an easy way to check for this before you commit,
run git diff --check
, which identifies possible whitespace errors and lists them for you. If you run that command
before committing, you can tell if you're about to commit whitespace issues that may annoy other developers.
Secondly, you should ensure that your commit does not break builds. Run npm test
on the repository to execute all
sanity and smoke tests. If any test fail, do not change the test to pass your commit. The tests were there with a
purpose. Discuss within your team to ensure that the changes that you do to test specs are valid. If you are adding a
new feature, accompanying them with new tests are a good practice.
Try to make each commit a logically separate change set. If you can, try to make your changes digestible don't code
for a whole weekend on five different issues and then submit them all as one massive commit on Monday. Even if you don't
commit during the weekend, use the staging area on Monday to split your work into at least one commit per issue, with a
useful message per commit. If some of the changes modify the same file, try to use git add --patch
to partially stage
files. The project snapshot at the tip of the branch is identical whether you do one commit or five, as long as all the
changes are added at some point, so try to make things easier on your fellow developers when they have to review your
changes. This approach also makes it easier to pull out or revert one of the change sets if you need to later. There are
a number of useful Git tricks for rewriting history and interactively staging files use these tools to help craft a
clean and understandable history.
More detailed explanation include your motivation for the change and contrast its implementation with previous behavior this is a good guideline to follow.
Getting in the habit of creating quality commit messages makes using and collaborating with Git a lot easier. As a general rule, your messages should start with a single line that is no more than 50 characters and that describes the change set concisely, followed by a blank line, followed by a more detailed explanation.
It's also a good idea to use the imperative present tense in these messages. In other words, use commands. Instead of "I added tests for" or "Adding tests for," use "Add tests for."
You should see if your commit message answers the following questions: Answer the following questions:
- Why is this change necessary?
- How does it address the issue?
- What side effects does this change have?
The first question tells reviewers of your pull request what to expect in the commit, allowing them to more easily identify and point out unrelated changes.
The second question describes, at a high level, what was done to affect change. If your change is obvious, you may be able to omit addressing this question.
The third is the most important question to answer, as it can point out problems where you are making too many changes in one commit or branch. One or two bullet points for related changes may be okay, but five or six are likely indicators of a commit that is doing too many things.
A good commit message template
Short (50 chars or less) summary of changes with relevant project management issue ID.
More detailed explanatory text, if necessary. Wrap it to about 72 characters or so. In some contexts, the first line
is treated as the subject of an email and the rest of the text as the body. The blank line separating the summary from
the body is critical (unless you omit the body entirely); tools like rebase can get confused if you run the two
together.
Further paragraphs come after blank lines.
- Bullet points are okay, too
- Typically a hyphen or asterisk is used for the bullet, preceded by a single space, with blank lines in between, but
conventions vary here
Run git log --no-merges
to see what a nicely formatted project-commit history looks like.
Over the course of contributing to Newman, several new features will be added and discovered bugs / glitches will be
fixed. It is important to ensure that all of these changes are cross-checked via their respective tests. Two
important points in this context are unit
and integration
tests.
Unit tests are focused toward validating one method, and one method only. These tests are to be added to test/unit
.
Each unit test file contains a describe
block, which may or may not contain describe blocks within itself. Any given
describe block is meant to group together tests for one particular purpose or section of code.
All unit test files must conform to the following standard:
- The file name must end with
.test.js
- The file must be named using lower case characters exclusively
- Should the first part of the file name need multiple words, they must be separated with dashes
(-)
.
Taking up the existing test files as an example, we can see that all tests for cli options are grouped together in one file, while tests for the collection runner reside in their own file.
Within each describe
block, individual tests are denoted by distinct it
blocks. Each it
block will test exactly
one method, with a given set of parameters. Note that multiple it
blocks can effectively map to one method, as a
method may need to be assessed for a variety of runtime conditions.
Within each it
block, correctness checks for expected method behaviour are done using expect
calls. For more on
expect
, check out Chai Expect
Lastly, the information provided within describe
and it
blocks should form a cogent sentence when combined.
For instance:
describe('Logic tests', function () {
it('should throw an error if parameters are missing', function () {});
it('should pass when valid values are provided', function () {});
});
The result sentence derived by combining the descriptions in the describe
and it
blocks are:
Logic tests should throw an error if parameters are missing Logic tests should pass when valid values are provided
Integration tests test Newman from the outside, and as a whole. As you might have already guessed, these tests don't test one method at a time. With regard to Newman, each integration test consists of a postman collection, and optional set of environment, data, and globals files.
All these files are arranged without any directory segregation, as can be seen in test/integration. Each of these file names should follow the convention outlined below:
- File names with multiple words must have
-
as a separator, not_
. - Under no circumstances do file names involve
camelCase
. - The type of the file must be designated with
postman_{{type}}
in the file name, wheretype
is one ofcollection
,data
,environment
, orglobals
. See examples below for clarity. - All postman_collection files must be in the V2 format.
.json
is a common file extension across all files, data files can have.csv
as an extension as well.
For instance:
file-name.postman_collection.json
file-name.postman_environment.json
file-name.postman_globals.json
file-name.postman_data.json
file-name.postman_data.csv
Commit to master branch and develop branch is locked. As such, git-flow
for feature completion and release will not
work. Thus, the last steps of feature completion in git-flow
will happen as a Pull Request from website. Avoid
changing the version
field in package.json
for feature pull requests, as version
bumps are handled separately.
-
Pull Request comment and commit comments should explicitly discuss what changes were made. The Pull Request reviewer should not need to communicate out of scope of issue tracker and the pull request description in order to understand what changes has been done.
-
Pull Requests with build failures will not be merged. Ensure that
npm test
passes on thehead
of your feature branch. The same goes for pull requests with untested new features / resolved bugs. -
Ensure that your feature branch has been tested and if it is associated with issues from corresponding issue-tracker, the issue must be in a "resolved" state, implying that the issue has been fully tested, and accepted for inclusion.
-
Pull Requests with merge conflict are very difficult to review, and are at a higher likelihood of being rejected. Ensure that the
head
of your feature branch is either already merged withdevelop
or has no conflict when it is merged withdevelop
. -
The turn around time to close a Pull Request is directly proportional to the delta of changes done - more the change in files, more time it would take. As such, if you anticipate a feature branch to have a large delta on feature completion, break it into sub-issues of the issue-tracker, test them, close them, and then send PR for that branch.
-
In addition, the turn around time for Pull Request would get affected if commit messages are unclear.
-
If you have deadlines to ensure feature completion, send Pull Request ahead of time. Better still, ensure that your feature development time window accounts for PR acceptance time as well.
-
If you have mentioned issue tracker references in Pull Request description, the severity and priority of those issues will be taken into account. Otherwise, no Pull Request will take priority over others already in queue - it is first-pull first-merge!
Details on usage, sample use cases, licensing and current project status, and community support are to be specified
within README.md
. All information related to contribution is to be added to CONTRIBUTING.md
. More in depth
information on aspects like project architecture, design, and so on is to be added to the project wiki
The CI system is built as a bunch of bash scripts to execute a set of tasks. These scripts are meant to execute tasks that can run on every local machine. In general, knowledge about these scripts are not necessary for development
The scripts are to be only accessed using npm run <script name>
. This ensures that the execution point of the
scripts (pwd
) is always the repository root.
npm test
The script associated with npm test
will run all tests that ensures that your commit does not break anything in the
repository. As such run npm test
before you push
Build logs for this project can be accessed here
Security concerns are always treated with high priority. Should you come across a security vulnerability, please report it via email to [email protected]. While reporting a potential security vulnerability, include all relevant details, including but not limited to:
- The project version(s) involved
- The operating system(s) to which the bug is relevant
- Bug description
Please refrain from publicly posting about the security vulnerability in any form, until it's corresponding fix has been released
Sections of this document use excerpts from various books and the Internet, among whom, this is a dominating influence.