mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Redesign CSF framework (RIPD-1361):
- Separate `Scheduler` from `BasicNetwork`. - Add an event/collector framework for monitoring invariants and calculating statistics. - Allow distinct network and trust connections between Peers. - Add a simple routing strategy to support broadcasting arbitrary messages. - Add a common directed graph (`Digraph`) class for representing network and trust topologies. - Add a `PeerGroup` class for simpler specification of the trust and network topologies. - Add a `LedgerOracle` class to ensure distinct ledger histories and simplify branch checking. - Add a `Submitter` to send transactions in at fixed or random intervals to fixed or random peers. Co-authored-by: Joseph McGee
This commit is contained in:
89
src/test/csf/Histogram_test.cpp
Normal file
89
src/test/csf/Histogram_test.cpp
Normal file
@@ -0,0 +1,89 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
This file is part of rippled: https://github.com/ripple/rippled
|
||||
Copyright (c) 2012-2017 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/beast/unit_test.h>
|
||||
#include <test/csf/Histogram.h>
|
||||
|
||||
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
class Histogram_test : public beast::unit_test::suite
|
||||
{
|
||||
public:
|
||||
void
|
||||
run() override
|
||||
{
|
||||
using namespace csf;
|
||||
Histogram<int> hist;
|
||||
|
||||
BEAST_EXPECT(hist.size() == 0);
|
||||
BEAST_EXPECT(hist.numBins() == 0);
|
||||
BEAST_EXPECT(hist.minValue() == 0);
|
||||
BEAST_EXPECT(hist.maxValue() == 0);
|
||||
BEAST_EXPECT(hist.avg() == 0);
|
||||
BEAST_EXPECT(hist.percentile(0.0f) == hist.minValue());
|
||||
BEAST_EXPECT(hist.percentile(0.5f) == 0);
|
||||
BEAST_EXPECT(hist.percentile(0.9f) == 0);
|
||||
BEAST_EXPECT(hist.percentile(1.0f) == hist.maxValue());
|
||||
|
||||
hist.insert(1);
|
||||
|
||||
BEAST_EXPECT(hist.size() == 1);
|
||||
BEAST_EXPECT(hist.numBins() == 1);
|
||||
BEAST_EXPECT(hist.minValue() == 1);
|
||||
BEAST_EXPECT(hist.maxValue() == 1);
|
||||
BEAST_EXPECT(hist.avg() == 1);
|
||||
BEAST_EXPECT(hist.percentile(0.0f) == hist.minValue());
|
||||
BEAST_EXPECT(hist.percentile(0.5f) == 1);
|
||||
BEAST_EXPECT(hist.percentile(0.9f) == 1);
|
||||
BEAST_EXPECT(hist.percentile(1.0f) == hist.maxValue());
|
||||
|
||||
hist.insert(9);
|
||||
|
||||
BEAST_EXPECT(hist.size() == 2);
|
||||
BEAST_EXPECT(hist.numBins() == 2);
|
||||
BEAST_EXPECT(hist.minValue() == 1);
|
||||
BEAST_EXPECT(hist.maxValue() == 9);
|
||||
BEAST_EXPECT(hist.avg() == 5);
|
||||
BEAST_EXPECT(hist.percentile(0.0f) == hist.minValue());
|
||||
BEAST_EXPECT(hist.percentile(0.5f) == 1);
|
||||
BEAST_EXPECT(hist.percentile(0.9f) == 9);
|
||||
BEAST_EXPECT(hist.percentile(1.0f) == hist.maxValue());
|
||||
|
||||
hist.insert(1);
|
||||
|
||||
BEAST_EXPECT(hist.size() == 3);
|
||||
BEAST_EXPECT(hist.numBins() == 2);
|
||||
BEAST_EXPECT(hist.minValue() == 1);
|
||||
BEAST_EXPECT(hist.maxValue() == 9);
|
||||
BEAST_EXPECT(hist.avg() == 11/3);
|
||||
BEAST_EXPECT(hist.percentile(0.0f) == hist.minValue());
|
||||
BEAST_EXPECT(hist.percentile(0.5f) == 1);
|
||||
BEAST_EXPECT(hist.percentile(0.9f) == 9);
|
||||
BEAST_EXPECT(hist.percentile(1.0f) == hist.maxValue());
|
||||
}
|
||||
};
|
||||
|
||||
BEAST_DEFINE_TESTSUITE(Histogram, test, ripple);
|
||||
|
||||
} // test
|
||||
} // ripple
|
||||
Reference in New Issue
Block a user