-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add integration test for set_gate_contract()
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { KeyringPair, creditcoinApi } from 'creditcoin-js'; | ||
import { Blockchain } from 'creditcoin-js/lib/model'; | ||
import { CreditcoinApi } from 'creditcoin-js/lib/types'; | ||
import { testData } from 'creditcoin-js/lib/testUtils'; | ||
|
||
import { extractFee, describeIf } from '../utils'; | ||
|
||
describeIf((global as any).CREDITCOIN_EXECUTE_SETUP_AUTHORITY, 'SetGATEContract', (): void => { | ||
let ccApi: CreditcoinApi; | ||
let sudoSigner: KeyringPair; | ||
const testingData = testData( | ||
(global as any).CREDITCOIN_ETHEREUM_CHAIN as Blockchain, | ||
(global as any).CREDITCOIN_CREATE_WALLET, | ||
); | ||
const { keyring } = testingData; | ||
|
||
beforeAll(async () => { | ||
ccApi = await creditcoinApi((global as any).CREDITCOIN_API_URL); | ||
if ((global as any).CREDITCOIN_EXECUTE_SETUP_AUTHORITY) { | ||
sudoSigner = (global as any).CREDITCOIN_CREATE_SIGNER(keyring, 'lender'); | ||
} | ||
}); | ||
|
||
afterAll(async () => { | ||
await ccApi.api.disconnect(); | ||
}); | ||
|
||
it('fee is min 0.01 CTC', async (): Promise<void> => { | ||
const { api } = ccApi; | ||
|
||
/* eslint-disable @typescript-eslint/naming-convention */ | ||
const contract = api.createType('PalletCreditcoinOcwTasksCollectCoinsDeployedContract', { | ||
// for testing purposes I can use any address b/c I'm only interested in the transaction fee | ||
address: '0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419', | ||
chain: testingData.blockchain, | ||
}); | ||
|
||
return new Promise((resolve, reject): void => { | ||
const unsubscribe = api.tx.sudo | ||
.sudo(api.tx.creditcoin.setGateContract(contract)) | ||
.signAndSend(sudoSigner, { nonce: -1 }, async ({ dispatchError, events, status }) => { | ||
await extractFee(resolve, reject, unsubscribe, api, dispatchError, events, status); | ||
}) | ||
.catch((error) => reject(error)); | ||
}).then((fee) => { | ||
expect(fee).toBeGreaterThanOrEqual((global as any).CREDITCOIN_MINIMUM_TXN_FEE); | ||
}); | ||
}); | ||
}); |