Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 69a57d6

Browse files
Empty string in smart contract (#5648)
* Add test * Update packages/web3-eth-contract/test/integration/contract_empty_string.test.ts Co-authored-by: Muhammad Altabba <[email protected]> * Change name of test Co-authored-by: Muhammad Altabba <[email protected]>
1 parent 7b7e5b0 commit 69a57d6

File tree

6 files changed

+110
-0
lines changed

6 files changed

+110
-0
lines changed

fixtures/build/MyContract.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"abi": [
3+
{
4+
"inputs": [],
5+
"name": "getAttr",
6+
"outputs": [
7+
{
8+
"internalType": "string",
9+
"name": "",
10+
"type": "string"
11+
}
12+
],
13+
"stateMutability": "view",
14+
"type": "function"
15+
}
16+
],
17+
"evm": {
18+
"bytecode": {
19+
"object": "608060405234801561001057600080fd5b50610228806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f540c8ba14610030575b600080fd5b61003861004e565b6040516100459190610170565b60405180910390f35b60606000805461005d906101c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610089906101c1565b80156100d65780601f106100ab576101008083540402835291602001916100d6565b820191906000526020600020905b8154815290600101906020018083116100b957829003601f168201915b5050505050905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561011a5780820151818401526020810190506100ff565b60008484015250505050565b6000601f19601f8301169050919050565b6000610142826100e0565b61014c81856100eb565b935061015c8185602086016100fc565b61016581610126565b840191505092915050565b6000602082019050818103600083015261018a8184610137565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806101d957607f821691505b6020821081036101ec576101eb610192565b5b5091905056fea264697066735822122061f485ab43edfa5bd740bc1f3dd0d643813a4bd2457119e6578414d7389fbd8964736f6c63430008100033"
20+
}
21+
}
22+
}

fixtures/build/MyContract.ts

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
export const MyContractAbi = [
18+
{
19+
inputs: [],
20+
name: 'getAttr',
21+
outputs: [{ internalType: 'string', name: '', type: 'string' }],
22+
stateMutability: 'view',
23+
type: 'function',
24+
},
25+
] as const;
26+
export const MyContractBytecode =
27+
'0x608060405234801561001057600080fd5b50610228806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f540c8ba14610030575b600080fd5b61003861004e565b6040516100459190610170565b60405180910390f35b60606000805461005d906101c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610089906101c1565b80156100d65780601f106100ab576101008083540402835291602001916100d6565b820191906000526020600020905b8154815290600101906020018083116100b957829003601f168201915b5050505050905090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561011a5780820151818401526020810190506100ff565b60008484015250505050565b6000601f19601f8301169050919050565b6000610142826100e0565b61014c81856100eb565b935061015c8185602086016100fc565b61016581610126565b840191505092915050565b6000602082019050818103600083015261018a8184610137565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806101d957607f821691505b6020821081036101ec576101eb610192565b5b5091905056fea264697066735822122061f485ab43edfa5bd740bc1f3dd0d643813a4bd2457119e6578414d7389fbd8964736f6c63430008100033';

fixtures/contracts/MyContract.sol

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// SPDX-License-Identifier: GNU
2+
3+
pragma solidity ^0.8.13;
4+
5+
contract MyContract {
6+
string private myAttribute;
7+
8+
function getAttr() public view returns (string memory) {
9+
return myAttribute;
10+
}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../fixtures/build/MyContract.json
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../fixtures/build/MyContract.ts
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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

Comments
 (0)