Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/silentcicero/wafr

A super simple Solidity test harness for Ethereum smart-contracts.
https://github.com/silentcicero/wafr

contracts ethereum mocha solidity solidity-contracts test test-harness web3

Last synced: about 16 hours ago
JSON representation

A super simple Solidity test harness for Ethereum smart-contracts.

Awesome Lists containing this project

README

        

## wafr




Dependency Status



devDependency Status



Build Status



NPM version



js-airbnb-style


A super simple, wafer thin, Solidity contract testing harness.

## Install

```
npm install -g wafr
```

## Usage

```
wafr ./contracts --output ./contracts.json
```

```
pragma solidity ^0.4.4;

import "wafr/Test.sol";

contract MyTest is Test {
uint firstNumber;
uint secondNumber;

function setup() {
firstNumber = 1;
secondNumber = 2;
}

function test_basicUnitTest() {
assertTrue(firstNumber != secondNumber, "first should not equal second");
}

function test_BasicThrow() {
if (firstNumber != secondNumber) {
throw;
}
}
}
```

Note, run `npm run example` to see [this example](../../blob/master/example) above in action.

## About

Wafr was created to serve as a very basic testing harness for Solidity contracts. It simply compiles your contracts, then provides a `Test` class that can be inherited to test various contracts.

Wafr acts as a simple testing system. It does very little:

1. Compiles contracts
2. Deployes any contract with `test` in filename that inherits `wafr/Test.sol`
3. Sends ether to your Test contract
4. Runs the `setup` method, if any
5. Runs any method with `test` in the name
6. Then tests everything against the `assert` methods
7. Generates a full report, `--output` your contracts in a `.json` file if desired

## Contributing

Please help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard. Please read more about contributing to `wafr` in the `CONTRIBUTING.md`.

## Guides

You'll find more detailed information on using default and tailoring it to your needs in our guides:

- [User guide](docs/user-guide.md) - Usage, configuration, FAQ and complementary tools.
- [Developer guide](docs/developer-guide.md) - Contributing to wafr and writing your own plugins & formatters.

## Help out

There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:

- Create, enhance, and debug rules (see our guide to ["Working on rules"](CONTRIBUTING.md)).
- Improve documentation.
- Chime in on any open issue or pull request.
- Open new issues about your ideas for making stylelint better, and pull requests to show us how your idea works.
- Add new tests to *absolutely anything*.
- Create or contribute to ecosystem tools, like the plugins for Atom and Sublime Text.
- Spread the word.

Please consult our [Code of Conduct](CODE_OF_CONDUCT.md) and [Contributing](.github/CONTRIBUTING.md) docs before helping out.

We communicate via [issues](https://github.com/SilentCicero/wafr/issues) and [pull requests](https://github.com/SilentCicero/wafr/pulls).

## Important documents

- [Changelog](CHANGELOG.md)
- [Contributing Guidelines](.github/CONTRIBUTING.md)
- [Code of Conduct](CODE_OF_CONDUCT.md)
- [License](https://raw.githubusercontent.com/SilentCicero/wafr/master/LICENSE)

## Licence

This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.

```
The MIT License

Copyright (c) 2016 Nick Dodson. nickdodson.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```