|
| 1 | +/* |
| 2 | +This file is part of web3.js. |
| 3 | +
|
| 4 | +web3.js is free software: you can redistribute it and/or modify |
| 5 | +it under the terms of the GNU Lesser General Public License as published by |
| 6 | +the Free Software Foundation, either version 3 of the License, or |
| 7 | +(at your option) any later version. |
| 8 | +
|
| 9 | +web3.js is distributed in the hope that it will be useful, |
| 10 | +but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | +GNU Lesser General Public License for more details. |
| 13 | +
|
| 14 | +You should have received a copy of the GNU Lesser General Public License |
| 15 | +along with web3.js. If not, see <http://www.gnu.org/licenses/>. |
| 16 | +*/ |
| 17 | + |
| 18 | +import { Contract } from '../../src'; |
| 19 | +import { getSystemTestProvider, createTempAccount } from '../fixtures/system_test_utils'; |
| 20 | +import { MyContractAbi, MyContractBytecode } from '../fixtures/MyContract'; |
| 21 | + |
| 22 | +describe('request empty string from contract', () => { |
| 23 | + let contract: Contract<typeof MyContractAbi>; |
| 24 | + let deployOptions: Record<string, unknown>; |
| 25 | + let sendOptions: Record<string, unknown>; |
| 26 | + beforeAll(async () => { |
| 27 | + contract = new Contract(MyContractAbi, undefined, { |
| 28 | + provider: getSystemTestProvider(), |
| 29 | + }); |
| 30 | + const acc = await createTempAccount(); |
| 31 | + |
| 32 | + deployOptions = { |
| 33 | + data: MyContractBytecode, |
| 34 | + arguments: [], |
| 35 | + }; |
| 36 | + |
| 37 | + sendOptions = { from: acc.address, gas: '1000000' }; |
| 38 | + }); |
| 39 | + |
| 40 | + it('should fetch empty string', async () => { |
| 41 | + const deployedContract = await contract.deploy(deployOptions).send(sendOptions); |
| 42 | + |
| 43 | + const attribute = await deployedContract.methods.getAttr().call(); |
| 44 | + |
| 45 | + expect(attribute).toHaveLength(0); |
| 46 | + expect(attribute).toBe(''); |
| 47 | + }); |
| 48 | +}); |
0 commit comments