mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Add offer jtx test
This commit is contained in:
@@ -1823,6 +1823,10 @@
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tx\tests\Offer.test.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tx\tests\OfferStream.test.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
|
||||
@@ -2535,6 +2535,9 @@
|
||||
<ClCompile Include="..\..\src\ripple\app\tx\tests\MultiSign.test.cpp">
|
||||
<Filter>ripple\app\tx\tests</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tx\tests\Offer.test.cpp">
|
||||
<Filter>ripple\app\tx\tests</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tx\tests\OfferStream.test.cpp">
|
||||
<Filter>ripple\app\tx\tests</Filter>
|
||||
</ClCompile>
|
||||
|
||||
101
src/ripple/app/tx/tests/Offer.test.cpp
Normal file
101
src/ripple/app/tx/tests/Offer.test.cpp
Normal file
@@ -0,0 +1,101 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
This file is part of rippled: https://github.com/ripple/rippled
|
||||
Copyright (c) 2012-2015 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 <BeastConfig.h>
|
||||
#include <ripple/app/main/Application.h>
|
||||
#include <ripple/app/ledger/Ledger.h>
|
||||
#include <ripple/basics/Log.h>
|
||||
#include <ripple/ledger/CachedView.h>
|
||||
#include <ripple/ledger/ViewAPI.h>
|
||||
#include <ripple/test/jtx.h>
|
||||
#include <ripple/test/jtx/Account.h>
|
||||
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
/** An offer exists
|
||||
*/
|
||||
bool isOffer (jtx::Env const& env,
|
||||
jtx::Account const& account,
|
||||
STAmount const& takerPays,
|
||||
STAmount const& takerGets)
|
||||
{
|
||||
bool exists = false;
|
||||
CachedView view(*env.ledger,
|
||||
getApp().getSLECache());
|
||||
forEachItem (view, account.id (),
|
||||
[&](std::shared_ptr<SLE const> const& sle)
|
||||
{
|
||||
if (sle->getType () == ltOFFER &&
|
||||
sle->getFieldAmount (sfTakerPays) == takerPays &&
|
||||
sle->getFieldAmount (sfTakerGets) == takerGets)
|
||||
exists = true;
|
||||
});
|
||||
return exists;
|
||||
}
|
||||
|
||||
class Offer_test : public beast::unit_test::suite
|
||||
{
|
||||
public:
|
||||
void testCanceledOffer ()
|
||||
{
|
||||
using namespace jtx;
|
||||
Env env = *this;
|
||||
auto const gw = Account ("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
|
||||
env.fund (XRP (10000), "alice", gw);
|
||||
env.trust (USD (100), "alice");
|
||||
|
||||
env (pay (gw, "alice", USD (50)));
|
||||
|
||||
auto const firstOfferSeq = env.seq ("alice");
|
||||
Json::StaticString const osKey ("OfferSequence");
|
||||
|
||||
env (offer ("alice", XRP (500), USD (100)),
|
||||
require (offers ("alice", 1)));
|
||||
|
||||
expect (isOffer (env, "alice", XRP (500), USD (100)));
|
||||
|
||||
// cancel the offer above and replace it with a new offer
|
||||
env (offer ("alice", XRP (300), USD (100)), json (osKey, firstOfferSeq),
|
||||
require (offers ("alice", 1)));
|
||||
|
||||
expect (isOffer (env, "alice", XRP (300), USD (100)) &&
|
||||
!isOffer (env, "alice", XRP (500), USD (100)));
|
||||
|
||||
// Test canceling non-existant offer.
|
||||
env (offer ("alice", XRP (400), USD (200)), json (osKey, firstOfferSeq),
|
||||
require (offers ("alice", 2)));
|
||||
|
||||
expect (isOffer (env, "alice", XRP (300), USD (100)) &&
|
||||
isOffer (env, "alice", XRP (400), USD (200)));
|
||||
}
|
||||
void run ()
|
||||
{
|
||||
// Hack to silence logging
|
||||
deprecatedLogs ().severity (beast::Journal::Severity::kNone);
|
||||
testCanceledOffer ();
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE (Offer, tx, ripple)
|
||||
|
||||
} // test
|
||||
} // ripple
|
||||
@@ -37,6 +37,12 @@ public:
|
||||
explicit
|
||||
json (std::string const&);
|
||||
|
||||
template <class T>
|
||||
json (Json::StaticString const& key, T const& value)
|
||||
{
|
||||
jv_[key] = value;
|
||||
}
|
||||
|
||||
void
|
||||
operator()(Env const&, JTx& jt) const;
|
||||
};
|
||||
|
||||
@@ -46,4 +46,5 @@
|
||||
#include <ripple/app/tx/tests/common_transactor.cpp>
|
||||
#include <ripple/app/tx/tests/MultiSign.test.cpp>
|
||||
#include <ripple/app/tx/tests/OfferStream.test.cpp>
|
||||
#include <ripple/app/tx/tests/Offer.test.cpp>
|
||||
#include <ripple/app/tx/tests/Taker.test.cpp>
|
||||
|
||||
Reference in New Issue
Block a user