Skip to content

automate liquidation testing #54

automate liquidation testing

automate liquidation testing #54

Workflow file for this run

name: Liquidation Indexing
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Start A3P container
run: docker compose --profile ci up -d a3p
- run: corepack enable
shell: bash
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install
- name: Start subql indexer
env:
AGORIC_NET: ci
run: yarn dev
- name: Print initial logs of all containers
run: |
echo "Fetching initial logs for all containers..."
containers=$(docker ps --format '{{.ID}}')
for container in $containers; do
echo "Fetching initial logs for container $container..."
docker logs $container
done
- name: Set ATOM Price to 12.34
run: |
docker exec agd /usr/src/agoric-sdk/packages/agoric-cli/bin/agops oracle setPrice --keys gov1,gov2 --pair ATOM.USD --price 12.34 --keyring-backend=test
- name: Get active vaults
uses: ./.github/actions/getActiveVaults
with:
apiUrl: 'http://localhost:3000/'
expectedVaults: 7
- name: Create Vault with 100 Minted and 15 Collateral
uses: ./.github/actions/createVault
with:
wantMinted: '100'
giveCollateral: '15'
userKey: 'gov3'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Create Vault with 103 Minted and 15 Collateral
uses: ./.github/actions/createVault
with:
wantMinted: '103'
giveCollateral: '15'
userKey: 'gov3'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Create Vault with 105 Minted and 15 Collateral
uses: ./.github/actions/createVault
with:
wantMinted: '105'
giveCollateral: '15'
userKey: 'gov3'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Get active vaults
uses: ./.github/actions/getActiveVaults
with:
apiUrl: 'http://localhost:3000/'
expectedVaults: 10
- name: Place bid for 90IST
uses: ./.github/actions/placeBid
with:
fromAddress: 'gov1'
giveAmount: '90IST'
priceOrDiscount: '9'
commandType: 'by-price'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Place bid for 80IST
uses: ./.github/actions/placeBid
with:
fromAddress: 'gov1'
giveAmount: '80IST'
priceOrDiscount: '10'
commandType: 'by-discount'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Place bid for 150IST
uses: ./.github/actions/placeBid
with:
fromAddress: 'gov1'
giveAmount: '150IST'
priceOrDiscount: '15'
commandType: 'by-discount'
agoricNet: 'local'
commandTimeout: '120'
containerName: 'agd'
- name: Set ATOM Price to 9.99
run: |
docker exec agd /usr/src/agoric-sdk/packages/agoric-cli/bin/agops oracle setPrice --keys gov1,gov2 --pair ATOM.USD --price 9.99 --keyring-backend=test