-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding auto generated toString method for structs #2169
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Angelina <[email protected]>
What does this PR do?
|
//String actualMethodBody = toStringMethod.toString(); | ||
//assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";")); | ||
//assertTrue(actualMethodBody.contains(expectedFormat), "The toString method was not generated correctly."); | ||
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"' }\";"), | |
assertTrue(actualMethodBody.contains("return \"{ name='\" + name + \"', age='\" + age + \"', }\";"), |
This will fix the current test.
However I have some points about the current approach.
- If this is just a dreft is fine, else copy /pasting the code in this class in a private method to test it is not the right thing.
- For the moment I will stop do any changes on Solidity wrapper generator and have a look at what we have right now in this file you can find how to generate smart contracts with stucts https://blog.web3labs.com/hyperledger-web3j-truly-decode-support-for-dynamic-solidity-structs/.
- There are 2 ways to do it, first I would recommend to check what to string returns on a TypeReference struct and if we can update only that class.
- 2nd check the final wrapper where exactly should be the to string written when there is a struct (in both cases TypeReference and Struct class type),
By covering this we can make a plan and start implementing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, @gtebrean Thank you!
- I corrected the issues with the code and test code.
- Sounds good, if I can help please let me know.
- I will take a look at TypeRefrence to see what is returned.
- Ill double check and see where this should be placed.
@@ -519,6 +519,7 @@ private List<TypeSpec> buildStructTypes(final List<AbiDefinition> functionDefini | |||
final TypeSpec.Builder builder = | |||
TypeSpec.classBuilder(structName) | |||
.addModifiers(Modifier.PUBLIC, Modifier.STATIC); | |||
builder.addMethod(generateToStringMethod(namedType.getComponents())); // ADDED THIS LINE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @aceppaluni,
I guess you wont need a comment here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Julius278 That was my mistake. They were left behind from when I was testing. Ill be sure to remove then, thank you!
@@ -602,6 +603,7 @@ private List<TypeSpec> buildStructTypes(final List<AbiDefinition> functionDefini | |||
|
|||
builder.superclass(namedType.isDynamic() ? DynamicStruct.class : StaticStruct.class); | |||
builder.addMethod(constructorBuilder.build()); | |||
builder.addMethod(generateToStringMethod(namedType.getComponents())); // Added this line |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, no comment needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Julius278 Will remove :)
What does this PR do?
required
Where should the reviewer start?
required
Why is it needed?
required
Checklist