-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Support canonical ledger entry names #5271
Open
bthomee
wants to merge
4
commits into
develop
Choose a base branch
from
bthomee/ledgertypefilter
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+107
−10
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
//------------------------------------------------------------------------------ | ||
/* | ||
This file is part of rippled: https://github.com/ripple/rippled | ||
Copyright (c) 2012, 2013 Ripple Labs Inc. | ||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
*/ | ||
//============================================================================== | ||
|
||
#include <xrpld/rpc/detail/RPCHelpers.h> | ||
#include <xrpl/beast/unit_test.h> | ||
#include <xrpl/protocol/jss.h> | ||
|
||
namespace ripple { | ||
namespace test { | ||
|
||
class RPCHelpers_test : public beast::unit_test::suite | ||
{ | ||
public: | ||
void | ||
testChooseLedgerEntryType() | ||
{ | ||
testcase("ChooseLedgerEntryType"); | ||
|
||
// Test no type. | ||
Json::Value tx = Json::objectValue; | ||
auto result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status::OK); | ||
BEAST_EXPECT(result.second == 0); | ||
|
||
// Test empty type. | ||
tx[jss::type] = ""; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status{rpcINVALID_PARAMS}); | ||
BEAST_EXPECT(result.second == 0); | ||
|
||
// Test type using canonical name in mixedcase. | ||
tx[jss::type] = "MPTokenIssuance"; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status::OK); | ||
BEAST_EXPECT(result.second == ltMPTOKEN_ISSUANCE); | ||
|
||
// Test type using canonical name in lowercase. | ||
tx[jss::type] = "mptokenissuance"; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status::OK); | ||
BEAST_EXPECT(result.second == ltMPTOKEN_ISSUANCE); | ||
|
||
// Test type using RPC name with exact match. | ||
tx[jss::type] = "mpt_issuance"; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status::OK); | ||
BEAST_EXPECT(result.second == ltMPTOKEN_ISSUANCE); | ||
|
||
// Test type using RPC name with inexact match. | ||
tx[jss::type] = "MPT_Issuance"; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status{rpcINVALID_PARAMS}); | ||
BEAST_EXPECT(result.second == 0); | ||
|
||
// Test invalid type. | ||
tx[jss::type] = 1234; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status{rpcINVALID_PARAMS}); | ||
BEAST_EXPECT(result.second == 0); | ||
|
||
// Test unknown type. | ||
tx[jss::type] = "unknown"; | ||
result = RPC::chooseLedgerEntryType(tx); | ||
BEAST_EXPECT(result.first == RPC::Status{rpcINVALID_PARAMS}); | ||
BEAST_EXPECT(result.second == 0); | ||
} | ||
|
||
void | ||
run() override | ||
{ | ||
testChooseLedgerEntryType(); | ||
} | ||
}; | ||
|
||
BEAST_DEFINE_TESTSUITE(RPCHelpers, app, ripple); | ||
|
||
} // namespace test | ||
} // namespace ripple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
nit: For readability, consider a small struct instead of the tuple.
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.
I figured that if we're going to deprecate the current way of referencing ledger entries, then the next release we can return to using a
std::pair
- which would be preferred over a dedicated struct.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.
Although the RPC name-based deprecation is no longer going to happen, I looked at this again and think that adding a new struct just for this function is overkill, however small that struct may be.