Skip to content

Commit

Permalink
group composition files. add README
Browse files Browse the repository at this point in the history
  • Loading branch information
nonsense committed Nov 5, 2020
1 parent d326301 commit 80da14b
Show file tree
Hide file tree
Showing 24 changed files with 68 additions and 6 deletions.
12 changes: 6 additions & 6 deletions testplans/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ download-proofs:
go run github.com/filecoin-project/go-paramfetch/paramfetch 2048 ./docker-images/proof-parameters.json

build-images:
docker build -t "iptestground/oni-buildbase:v11" -f "docker-images/Dockerfile.oni-buildbase" "docker-images"
docker build -t "iptestground/oni-runtime:v4" -f "docker-images/Dockerfile.oni-runtime" "docker-images"
docker build -t "iptestground/oni-buildbase:v11-lotus" -f "docker-images/Dockerfile.oni-buildbase" "docker-images"
docker build -t "iptestground/oni-runtime:v5" -f "docker-images/Dockerfile.oni-runtime" "docker-images"

push-images:
docker push iptestground/oni-buildbase:v11
docker push iptestground/oni-runtime:v4
docker push iptestground/oni-buildbase:v11-lotus
docker push iptestground/oni-runtime:v5

pull-images:
docker pull iptestground/oni-buildbase:v11
docker pull iptestground/oni-runtime:v4
docker pull iptestground/oni-buildbase:v11-lotus
docker pull iptestground/oni-runtime:v5

.PHONY: download-proofs build-images push-images pull-images
62 changes: 62 additions & 0 deletions testplans/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Testground testplans for Lotus

This directory contains testplans for Lotus exercised on [TaaS](https://ci.testground.ipfs.team).

This directory consists of [testplans](https://docs.testground.ai/concepts-and-architecture/test-structure) built to be run on [Testground](https://github.com/testground/testground) that exercise Lotus.

## Table of Contents

- [Testing topics](#testing-topics)
- [Running the test cases](#running-the-test-cases)

## Testing topics

* **storage and retrieval deals:**
* end-to-end flows where clients store and retrieve pieces from miners, including stress testing the system.
* **payment channels:**
* stress testing payment channels via excessive lane creation, excessive payment voucher atomisation, and redemption.

## Running the test cases

If you are unfamiliar with Testground, we strongly suggest you read the Testground [Getting Started guide](https://docs.testground.ai/getting-started) in order to learn how to install Testground and how to use it.

You can find various [composition files](https://docs.testground.ai/running-test-plans#composition-runs) describing various test scenarios built as part of Project Oni at [`lotus-soup/_compositions` directory](https://github.com/filecoin-project/oni/tree/master/lotus-soup/_compositions).

We've designed the test cases so that you can run them via the `local:exec`, `local:docker` and the `cluster:k8s` runners. Note that Lotus miners are quite resource intensive, requiring gigabytes of memory. Hence you would have to run these test cases on a beafy machine (when using `local:docker` and `local:exec`), or on a Kubernetes cluster (when using `cluster:k8s`).

Here are the basics of how to run the baseline deals end-to-end test case:

### Running the baseline deals end-to-end test case

1. Compile and Install Testground from source code.
* See the [Getting Started](https://github.com/testground/testground#getting-started) section of the README for instructions.

2. Run a Testground daemon

```
testground daemon
```

3. Download required Docker images for the `lotus-soup` test plan

```
make pull-images
```

Alternatively you can build them locally with

```
make build-images
```

4. Import the `lotus-soup` test plan into your Testground home directory

```
testground plan import --from ./lotus-soup
```

6. Run a composition for the baseline deals end-to-end test case

```
testground run composition -f ./lotus-soup/_compositions/other/baseline-docker-5-1.toml
```

0 comments on commit 80da14b

Please sign in to comment.