| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // SPDX-License-Identifier: Apache-2.0
- import { createConnection, deploy, aliceKeypair, query, debug_buffer, weight, transaction, daveKeypair, } from './index';
- import { ContractPromise } from '@polkadot/api-contract';
- import { ApiPromise } from '@polkadot/api';
- import { KeyringPair } from '@polkadot/keyring/types';
- import expect from 'expect';
- import { error } from 'console';
- describe('Test that the constructor can not be reached from the call function', () => {
- let conn: ApiPromise;
- let contract: ContractPromise;
- let caller: ContractPromise;
- let alice: KeyringPair;
- before(async function () {
- alice = aliceKeypair();
- conn = await createConnection();
- const contract_deployment = await deploy(conn, alice, 'ConstructorDispatch.contract', 0n);
- contract = new ContractPromise(conn, contract_deployment.abi, contract_deployment.address);
- const caller_deployment = await deploy(conn, alice, 'HappyCaller.contract', 0n);
- caller = new ContractPromise(conn, caller_deployment.abi, caller_deployment.address);
- });
- after(async function () {
- await conn.disconnect();
- });
- it('Should fail to overwrite the admin account of the target contract', async function () {
- // Expect the caller to succeed on normal function
- let input = contract.abi.messages[0].selector;
- let attempt = await query(conn, alice, caller, "call", [contract.address, input]);
- expect(attempt.result.isOk).toStrictEqual(true);
- // "Calling" the constructor should fail
- input = contract.abi.constructors[0].selector;
- attempt = await query(conn, alice, caller, "call", [contract.address, input]);
- expect(attempt.result.asOk.flags.isRevert).toStrictEqual(true);
- const gasLimit = await weight(conn, caller, 'call', [contract.address, input]);
- await expect(transaction(caller.tx.call({ gasLimit }, contract.address, input), alice)).rejects.toBeDefined();
- // Alice must still be admin
- let admin = await query(conn, alice, contract, "boss");
- expect(admin.output?.toString()).toStrictEqual(alice.address.toString());
- });
- });
|