ADR-007: E2E Tests
Status
In progress
Context
E2E tests for inbound and outbound flow as well as key generation and vault migration.
Test Cases Template
No | Scenario | Pre-condition | Pre-condition check | Steps | Expected result | Covered By |
---|---|---|---|---|---|---|
1 | ||||||
2 | ||||||
3 |
Test Cases
No | Scenario | Pre-condition | Pre-condition check | Steps | Expected result | Covered By |
---|---|---|---|---|---|---|
1 | Inbound transfer | - Funded BTC addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes | Observer int3face, BTC nodes are healthy | 1. Send tokens from BTC addr to the vault 2. Wait until the tx is confirmed | 1. Int3face balance is funded 2. Vault is funded 3. Int3face token supply == vault balance | TODO |
2 | Outbound transfer | - Funded int3face addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes | Observer int3face, BTC nodes are healthy | 1. Send MsgOutboundTransfer | 1. BTC addr is funded 2. Vault supply is decreased 3. Int3face token supply == vault balance | TODO |
3 | Key generation | - 3 observer nodes - 3 int3face nodes - 3 BTC nodes | Observer int3face, BTC nodes are healthy | 1. Generate gov proposal to execute KeyGen tx 2. Vote on the proposal and accept it | 1. Old vault is empty 2. New vault is funded 3. New vault balance is decreased by the fee | TODO |
4 | Vault migration: inbound transfer to the new vault | - Funded BTC addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes | Observer int3face, BTC nodes are healthy | 1. Generate gov proposal to execute KeyGen tx 2. Vote on the proposal and accept it 3. Send tokens from BTC addr to the new vault | 1. Old vault is empty 2. New vault is funded (old vault + incoming tokens) 3. New vault balance is decreased by the fee 4. Int3face balance is funded 5. Int3face token supply == vault balance (considering fees) | TODO |
5 | Vault migration: outbound transfer from the new vault | - Funded int3face addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes | Observer int3face, BTC nodes are healthy | 1. Generate gov proposal to execute KeyGen tx 2. Vote on the proposal and accept it 3. Send MsgOutboundTransfer | 1. Old vault is empty 2. New vault is funded (old vault - outgoing tokens) 3. New vault balance is decreased by the fee 4. BTC addr is funded 5. Int3face token supply == vault balance (considering fees) | TODO |
6 | Vault migration: multiple chains | - Funded int3face addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes - 3 DOGE nodes | Observer int3face, BTC, DOGE nodes are healthy | 1. Generate gov proposal to execute KeyGen tx 2. Vote on the proposal and accept it 3. Send MsgOutboundTransfer to BTC 4. Send MsgOutboundTransfer to DOGE | 1. Old vault is empty 2. New vault is funded (old vault - outgoing tokens) 3. New vault balance is decreased by the fee 4. BTC addr is funded 5. DOGE addr is funded 5. Int3face token supply == vault balance for both BTC and DOGE (considering fees) | TODO |
7 | Observer shutdown after vault migration | - Funded int3face addr - 3 observer nodes - 3 int3face nodes - 3 BTC nodes - 3 DOGE nodes | Observer int3face, BTC, DOGE nodes are healthy | 1. Generate gov proposal to execute KeyGen tx 2. Vote on the proposal and accept it 3. Shutdown the observer | 1. Old vault is empty 2. New vault is funded (old vault - outgoing tokens) 3. New vault balance is decreased by the fee 4. Pool public key is updated for all the observers 5. Last observed height is updated for all the observers | TODO |
Steps to implement
- Find libraries to run all the nodes in docker containers (there may be some dedicated repos to run BTC and DOGE): 79.
- Scaffold tests, test utilities and helpers: 80.
- Test
Inbound transfer
: 81. - Test
Outbound transfer
: 82. - Test
Key generation
: 83. - Test
Vault migration: inbound transfer to the new vault
: 84. - Test
Vault migration: outbound transfer from the new vault
: 85. - Test
Vault migration: multiple chains
: 86. - Test
Observer shutdown after vault migration
: 87. - Research how to run tests in the CI/CD: 88.