open-bounty/doc/testing.md

94 lines
5.5 KiB
Markdown
Raw Normal View History

# Testing Open Bounty
2017-09-14 11:49:26 +00:00
2018-03-29 14:20:03 +00:00
We have two environments for testing purposes:
* `staging` - where `develop` branch is continuously deployed
2017-09-14 11:49:26 +00:00
2018-03-29 14:20:03 +00:00
**URL:** https://openbounty.status.im:444
**GitHub app:** https://github.com/apps/status-open-bounty-app-test
* `testing`- where you can deploy and test separate pull requests
**URL:** https://testing.openbounty.status.im
**GitHub app:** https://github.com/apps/open-bounty-testing
Both of them use the [Ropsten](https://ropsten.io/) Ethereum testnet.
Any one is welcome to use it and your help with testing Open Bounty is greatly appreciated!
## General
2017-09-14 11:49:26 +00:00
For testing you will need:
* a web browser (Chrome is known to work, testing with others appreciated)
* an Ethereum account on the Ropsten testnet
2018-03-29 14:20:03 +00:00
* 2 Github accounts (one for Bounty Hunter, second - for Bounty Creator with administrative access to one or more repositories)
2018-02-28 17:25:32 +00:00
* for approving bounty payouts you will additionally need access to an Ethereum wallet. ([MetaMask](https://metamask.io/) plugin)
2017-09-14 11:49:26 +00:00
The developers can be reached on the `#openbounty` channel in the [Status slack](http://slack.status.im/).
2017-09-14 11:49:26 +00:00
### Signing up
2018-03-29 14:20:03 +00:00
Process is the same for Bounty Creator and Bounty Hunter.
* point your browser to URL of selected environment (`staging` or `testing`) and click `Login`
* Authorise status-open-bounty to have read access to your public GitHub profile.
2017-09-14 11:49:26 +00:00
2018-03-29 14:20:03 +00:00
You should now see `Bounties`, `Activity`, `Repositories` tabs. In the upper right hand corner, there should be a dropdown with your GitHub username and options `My Payment Details` and `Sign Out`.
2017-09-14 11:49:26 +00:00
2018-03-29 14:20:03 +00:00
## For Bounty Creator
2017-09-14 11:49:26 +00:00
### Connecting your wallet
2017-10-30 20:06:22 +00:00
* install Metamask and configure your account
* select `My Payment Details` from the top-right dropdown, select the account you want to use from the selection list and click `Update`
2017-09-14 11:49:26 +00:00
### Creating bounty issues
2018-03-29 14:20:03 +00:00
Before you can create bounties, you need to add Open Bounty GitHub App to your account or repos. Go to **GitHub app** for selected environment(or link to another GitHub App you've created for testing, as described in the [README](README.md) and click Install. Specify whether access to all org repos or specific repos is granted. This will install webhooks for SOB in your repos.
2017-09-14 11:49:26 +00:00
* Request for your account to be whitelisted. Contact [Riot](https://chat.status.im) for more information
* now, add the `bounty` label to a new or an existing issue. This should cause Status Open Bounty to post a new comment for the issue containing an image with text `Deploying contract, please wait`
2017-09-14 11:49:26 +00:00
* once the contract has been mined, the comment will be updated to contain the bounty contract's address and a QR code
2018-03-29 14:20:03 +00:00
* in SOB `Manage Payouts` should appear (when you logged in)
2017-09-14 11:49:26 +00:00
### Funding bounties
2017-09-18 09:57:29 +00:00
The Github comment has a QR code as an image containing the bounty contract address. The address is also on the comment as text. Use any ethereum wallet to send ETH and/or supported ERC20 tokens to this address. After a small delay (max 5 minutes), the activity feed should show that the related bounty issue's balance increased and comment should be updated.
2018-03-29 14:20:03 +00:00
After this process bounty is available for BountyHunters on URL of selected environment in `Open Bounty` list.
2017-09-14 11:49:26 +00:00
### Managing payouts
2017-09-18 09:57:29 +00:00
Repository admins see a listing of all open claims and bounties that have already been paid out on the `Manage Payouts` tab. The `open claims` listing includes unmerged claim pull requests and merged pull requests. Once a claim pull request has been merged, it is selected as the winning claim. The repository admin will still need to sign off the payout with his connected Ethereum wallet. This is done with the `Confirm` button. Once the payout transaction has been mined, the `Activity` feed view will show that the claimer received the bounty funds. All tokens and ETH will be transferred to the claimer's Ethereum address.
2017-09-14 11:49:26 +00:00
### Removing bounties
2018-03-29 14:20:03 +00:00
To remove issue from the Bounties list you can close it in GitHub.
## For Bounty Hunter
### Submitting claims
Whole process is explained here: [Status Open Bounty Tutorial](https://www.youtube.com/watch?v=vTjcXP4kTHc).
To get bounties you need to provide an Ethereum address in you Payment details on the selected that will be used to send bounties to.
2018-03-29 14:20:03 +00:00
Open a pull request against the target repository with any keyword from [Closing issues using keywords](https://help.github.com/articles/closing-issues-using-keywords/), i. e. `Fixes: #NN` in the comment where `NN` is the issue number of the bountied Github issue.
After the PR has been opened, the `Activity` feed should show an item indicating that your username has opened a claim for the related bounty issue. The repository admin (Bounty Creator) should also see the claim under `Open claims` in the `Manage payouts` view.
Flow walkthrough for Bounty Creator and Bounty Contributor is [here](https://docs.google.com/presentation/d/1btWVeaqR6yPLSHHZQ2XgfgK8MU2tWuAtNUE_5hdfJCI/edit#slide=id.g314ca9a4e1_0_0).
2017-09-14 11:49:26 +00:00
### Reporting bugs
All bugs should be reported as issues in the [OpenBounty Github repository](https://github.com/status-im/open-bounty/issues).
2017-09-14 11:49:26 +00:00
Please first check that there is not already a duplicate issue. Issues should contain exact and minimal step-by-step instructions for reproducing the problem.
2018-01-26 11:36:08 +00:00
### Status Open Bounty end-to-end tests
Framework for testing located in: `open-bounty/test/end-to-end`
Full installation and configuring manual: [Status Open Bounty end-to-end tests](https://wiki.status.im/Status_Open_Bounty_end-to-end_tests)
Currently supports local and Jenkins environment running (you can find example of JenkinsFile in `open-bounty/test` )