diff options
author | Fabio Berger <me@fabioberger.com> | 2018-09-29 21:22:33 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-09-29 21:22:33 +0800 |
commit | 2b6a9911f5f821114a65474e75f5ed52e8bad980 (patch) | |
tree | 98f80c9db5b8c89d7edfe965d990e00540b4e6ee /packages | |
parent | 005b7a55e866a735e86dc58ff62b0cf3301f59cd (diff) | |
download | dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar.gz dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar.bz2 dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar.lz dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar.xz dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.tar.zst dexon-sol-tools-2b6a9911f5f821114a65474e75f5ed52e8bad980.zip |
Add test for methodSignature gen for methods with param/return structs
Diffstat (limited to 'packages')
-rw-r--r-- | packages/sol-doc/test/fixtures/contracts/StructParamAndReturn.sol | 18 | ||||
-rw-r--r-- | packages/sol-doc/test/solidity_doc_generator_test.ts | 26 |
2 files changed, 44 insertions, 0 deletions
diff --git a/packages/sol-doc/test/fixtures/contracts/StructParamAndReturn.sol b/packages/sol-doc/test/fixtures/contracts/StructParamAndReturn.sol new file mode 100644 index 000000000..b9a7ccdbc --- /dev/null +++ b/packages/sol-doc/test/fixtures/contracts/StructParamAndReturn.sol @@ -0,0 +1,18 @@ +pragma solidity 0.4.24; +pragma experimental ABIEncoderV2; + + +contract StructParamAndReturn { + + struct Stuff { + address anAddress; + uint256 aNumber; + } + + /// @dev DEV_COMMENT + /// @param stuff STUFF_COMMENT + /// @return RETURN_COMMENT + function methodWithStructParamAndReturn(Stuff stuff) public pure returns(Stuff) { + return stuff; + } +} diff --git a/packages/sol-doc/test/solidity_doc_generator_test.ts b/packages/sol-doc/test/solidity_doc_generator_test.ts index 91e0af789..081fd4188 100644 --- a/packages/sol-doc/test/solidity_doc_generator_test.ts +++ b/packages/sol-doc/test/solidity_doc_generator_test.ts @@ -181,6 +181,32 @@ describe('#SolidityDocGenerator', () => { } expect(returnType.tupleElements.length).to.equal(2); }); + it('should document a method that has a struct param and return value', async () => { + const doc = await solDoc.generateSolDocAsync(`${__dirname}/../../test/fixtures/contracts`, [ + 'StructParamAndReturn', + ]); + expect(doc.StructParamAndReturn).to.not.be.undefined(); + expect(doc.StructParamAndReturn.methods).to.not.be.undefined(); + let methodWithStructParamAndReturn: SolidityMethod | undefined; + for (const method of doc.StructParamAndReturn.methods) { + if (method.name === 'methodWithStructParamAndReturn') { + methodWithStructParamAndReturn = method; + } + } + if (_.isUndefined(methodWithStructParamAndReturn)) { + throw new Error('method should not be undefined'); + } + /** + * Solc maps devDoc comments to methods using a method signature. If we incorrectly + * generate the methodSignatures, the devDoc comments won't be correctly associated + * with their methods and they won't show up in the output. By checking that the comments + * are included for a method with structs as params/returns, we are sure that the methodSignature + * generation is correct for this case. + */ + expect(methodWithStructParamAndReturn.comment).to.be.equal('DEV_COMMENT'); + expect(methodWithStructParamAndReturn.returnComment).to.be.equal('RETURN_COMMENT'); + expect(methodWithStructParamAndReturn.parameters[0].comment).to.be.equal('STUFF_COMMENT'); + }); }); function verifyTokenTransferProxyABIIsDocumented(doc: DocAgnosticFormat, contractName: string): void { |