| 123456789101112131415161718192021222324252627282930313233343536 |
- // SPDX-License-Identifier: Apache-2.0
- import { createConnection, deploy, aliceKeypair, debug_buffer } from "./index";
- import expect from 'expect';
- import { ContractPromise } from "@polkadot/api-contract";
- describe('Deploy debug_buffer_format.sol and test the debug buffer formatting', () => {
- it('formats the debug buffer', async function () {
- let conn = await createConnection();
- const alice = aliceKeypair();
- let deployed_contract = await deploy(
- conn,
- alice,
- "DebugBuffer.contract",
- BigInt(0)
- );
- let contract = new ContractPromise(
- conn,
- deployed_contract.abi,
- deployed_contract.address
- );
- let res = await debug_buffer(conn, contract, "multiple_prints", [])
- expect(res).toContain(`print: Hello!,`);
- expect(res).toContain(`print: I call seal_debug_message under the hood!,`);
- let res1 = await debug_buffer(conn, contract, "multiple_prints_then_revert", [])
- expect(res1).toContain(`print: Hello!,`);
- expect(res1).toContain(`print: I call seal_debug_message under the hood!,`);
- conn.disconnect();
- });
- });
|