mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 19:15:54 +00:00
Add order book stuffing tests:
* PlumpBook makes sure large order books remain sane * OversizeMeta checks for tecOVERSIZE handling * FindOversizeBook probes metadata offer limits
This commit is contained in:
committed by
Edward Hennis
parent
60002bf9bc
commit
65fdf1dc5e
@@ -1709,6 +1709,10 @@
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tests\OversizeMeta_test.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tests\Path_test.cpp">
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='debug|x64'">True</ExcludedFromBuild>
|
||||
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='release|x64'">True</ExcludedFromBuild>
|
||||
|
||||
@@ -2451,6 +2451,9 @@
|
||||
<ClCompile Include="..\..\src\ripple\app\tests\OfferStream.test.cpp">
|
||||
<Filter>ripple\app\tests</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tests\OversizeMeta_test.cpp">
|
||||
<Filter>ripple\app\tests</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ripple\app\tests\Path_test.cpp">
|
||||
<Filter>ripple\app\tests</Filter>
|
||||
</ClCompile>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Express 2013 for Windows Desktop
|
||||
VisualStudioVersion = 12.0.31101.0
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.23107.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{26B7D9AC-1A80-8EF8-6703-D061F1BECB75}") = "RippleD", "RippleD.vcxproj", "{26B7D9AC-1A80-8EF8-6703-D061F1BECB75}"
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RippleD", "RippleD.vcxproj", "{26B7D9AC-1A80-8EF8-6703-D061F1BECB75}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
||||
176
src/ripple/app/tests/OversizeMeta_test.cpp
Normal file
176
src/ripple/app/tests/OversizeMeta_test.cpp
Normal file
@@ -0,0 +1,176 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
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 <BeastConfig.h>
|
||||
#include <ripple/test/jtx.h>
|
||||
#include <beast/unit_test/suite.h>
|
||||
#include <algorithm>
|
||||
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
// Make sure "plump" order books don't have problems
|
||||
class PlumpBook_test : public beast::unit_test::suite
|
||||
{
|
||||
public:
|
||||
void
|
||||
createOffers (jtx::Env& env,
|
||||
jtx::IOU const& iou, std::size_t n)
|
||||
{
|
||||
using namespace jtx;
|
||||
for (std::size_t i = 1; i <= n; ++i)
|
||||
env(offer("alice", XRP(i), iou(1)));
|
||||
}
|
||||
|
||||
void
|
||||
test (std::size_t n)
|
||||
{
|
||||
using namespace jtx;
|
||||
auto const billion = 1000000000ul;
|
||||
Env env(*this);
|
||||
env.disable_sigs();
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
env.fund(XRP(billion), gw, "alice", "bob", "carol");
|
||||
env.trust(USD(billion), "alice", "bob", "carol");
|
||||
env(pay(gw, "alice", USD(billion)));
|
||||
createOffers(env, USD, n);
|
||||
}
|
||||
|
||||
void
|
||||
run()
|
||||
{
|
||||
test(10000);
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE_MANUAL(PlumpBook,tx,ripple);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
class OversizeMeta_test : public beast::unit_test::suite
|
||||
{
|
||||
public:
|
||||
void
|
||||
createOffers (jtx::Env& env, jtx::IOU const& iou,
|
||||
std::size_t n)
|
||||
{
|
||||
using namespace jtx;
|
||||
for (std::size_t i = 1; i <= n; ++i)
|
||||
//env(offer("alice", XRP(i), iou(1)));
|
||||
env(offer("alice", XRP(1), iou(1)));
|
||||
}
|
||||
|
||||
void
|
||||
test()
|
||||
{
|
||||
std::size_t const n = 9000;
|
||||
using namespace jtx;
|
||||
auto const billion = 1000000000ul;
|
||||
Env env(*this);
|
||||
env.disable_sigs();
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
env.fund(XRP(billion), gw, "alice", "bob", "carol");
|
||||
env.trust(USD(billion), "alice", "bob", "carol");
|
||||
env(pay(gw, "alice", USD(billion)));
|
||||
createOffers(env, USD, n);
|
||||
env(pay("alice", gw, USD(billion)));
|
||||
env(offer("alice", USD(1), XRP(1)));
|
||||
}
|
||||
|
||||
void
|
||||
run()
|
||||
{
|
||||
test();
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE_MANUAL(OversizeMeta,tx,ripple);
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
class FindOversizeCross_test : public beast::unit_test::suite
|
||||
{
|
||||
public:
|
||||
// Return lowest x in [lo, hi] for which f(x)==true
|
||||
template <class Function>
|
||||
static
|
||||
std::size_t
|
||||
bfind(std::size_t lo, std::size_t hi, Function&& f)
|
||||
{
|
||||
auto len = hi - lo;
|
||||
while (len != 0)
|
||||
{
|
||||
auto l2 = len / 2;
|
||||
auto m = lo + l2;
|
||||
if (! f(m))
|
||||
{
|
||||
lo = ++m;
|
||||
len -= l2 + 1;
|
||||
}
|
||||
else
|
||||
len = l2;
|
||||
}
|
||||
return lo;
|
||||
}
|
||||
|
||||
void
|
||||
createOffers (jtx::Env& env, jtx::IOU const& iou,
|
||||
std::size_t n)
|
||||
{
|
||||
using namespace jtx;
|
||||
for (std::size_t i = 1; i <= n; ++i)
|
||||
env(offer("alice", XRP(i), iou(1)));
|
||||
//env(offer("alice", XRP(1), iou(1)));
|
||||
}
|
||||
|
||||
bool
|
||||
oversize(std::size_t n)
|
||||
{
|
||||
using namespace jtx;
|
||||
auto const billion = 1000000000ul;
|
||||
Env env(*this);
|
||||
env.disable_sigs();
|
||||
auto const gw = Account("gateway");
|
||||
auto const USD = gw["USD"];
|
||||
env.fund(XRP(billion), gw, "alice", "bob", "carol");
|
||||
env.trust(USD(billion), "alice", "bob", "carol");
|
||||
env(pay(gw, "alice", USD(billion)));
|
||||
createOffers(env, USD, n);
|
||||
env(pay("alice", gw, USD(billion)));
|
||||
env(offer("alice", USD(1), XRP(1)), ter(std::ignore));
|
||||
return env.ter() == tecOVERSIZE;
|
||||
}
|
||||
|
||||
void
|
||||
run()
|
||||
{
|
||||
auto const result = bfind(100, 9000,
|
||||
[&](std::size_t n)
|
||||
{ return oversize(n); });
|
||||
log << "Min oversize offers = " << result;
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE_MANUAL(FindOversizeCross,tx,ripple);
|
||||
|
||||
} // test
|
||||
} // ripple
|
||||
|
||||
@@ -30,4 +30,5 @@
|
||||
#include <ripple/app/tests/Regression_test.cpp>
|
||||
#include <ripple/app/tests/SusPay_test.cpp>
|
||||
#include <ripple/app/tests/SetAuth_test.cpp>
|
||||
#include <ripple/app/tests/OversizeMeta_test.cpp>
|
||||
#include <ripple/app/tests/Taker.test.cpp>
|
||||
|
||||
Reference in New Issue
Block a user