summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2017-11-29 10:14:49 +0000
committerTor Egge <Tor.Egge@oath.com>2017-11-29 10:38:14 +0000
commit57f5ec47aaf7ec84c668b483009f64b1ea8e839a (patch)
treecb8a9ae86b79953de7a2a7e893c1ac47b7835c0b /searchcore
parenta68b198f5ea62d365e336f62f24459229d34643e (diff)
Add unit tests for transaction log pruning when closing flush engine and
when completing priority flush strategy.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/flushengine/flushengine.cpp64
1 files changed, 55 insertions, 9 deletions
diff --git a/searchcore/src/tests/proton/flushengine/flushengine.cpp b/searchcore/src/tests/proton/flushengine/flushengine.cpp
index 5e8537b657f..985a970a380 100644
--- a/searchcore/src/tests/proton/flushengine/flushengine.cpp
+++ b/searchcore/src/tests/proton/flushengine/flushengine.cpp
@@ -13,6 +13,7 @@
#include <vespa/vespalib/data/slime/slime.h>
#include <vespa/vespalib/util/sync.h>
#include <vespa/vespalib/test/insertion_operators.h>
+#include <chrono>
#include <vespa/log/log.h>
LOG_SETUP("flushengine_test");
@@ -393,13 +394,12 @@ public:
}
};
-class ConstantFlushStrategy : public SimpleStrategy {
-public:
- uint64_t _millis;
-
-public:
- ConstantFlushStrategy(uint64_t millis) : SimpleStrategy(), _millis(millis) { }
- typedef std::shared_ptr<ConstantFlushStrategy> SP;
+class NoFlushStrategy : public SimpleStrategy
+{
+ virtual FlushContext::List getFlushTargets(const FlushContext::List &,
+ const flushengine::TlsStatsMap &) const override {
+ return FlushContext::List();
+ }
};
// --------------------------------------------------------------------------------
@@ -437,12 +437,38 @@ struct Fixture
SimpleStrategy::SP strategy;
FlushEngine engine;
- Fixture(uint32_t numThreads, uint32_t idleIntervalMS)
+ Fixture(uint32_t numThreads, uint32_t idleIntervalMS, SimpleStrategy::SP strategy_)
: tlsStatsFactory(std::make_shared<SimpleTlsStatsFactory>()),
- strategy(std::make_shared<SimpleStrategy>()),
+ strategy(strategy_),
engine(tlsStatsFactory, strategy, numThreads, idleIntervalMS)
{
}
+
+ Fixture(uint32_t numThreads, uint32_t idleIntervalMS)
+ : Fixture(numThreads, idleIntervalMS, std::make_shared<SimpleStrategy>())
+ {
+ }
+
+ std::shared_ptr<SimpleHandler>
+ addSimpleHandler(Targets targets)
+ {
+ auto handler = std::make_shared<SimpleHandler>(targets, "handler", 20);
+ engine.putFlushHandler(DocTypeName("handler"), handler);
+ engine.start();
+ return handler;
+ }
+
+ void assertOldestSerial(SimpleHandler &handler, search::SerialNum expOldestSerial)
+ {
+ using namespace std::chrono_literals;
+ for (int pass = 0; pass < 600; ++pass) {
+ std::this_thread::sleep_for(100ms);
+ if (handler._oldestSerial == expOldestSerial) {
+ break;
+ }
+ }
+ EXPECT_EQUAL(expOldestSerial, handler._oldestSerial);
+ }
};
@@ -717,6 +743,26 @@ TEST_F("require that state explorer can list flush targets", Fixture(1, 1))
target->_taskDone.await(LONG_TIMEOUT);
}
+TEST_F("require that oldest serial is updated when closing engine", Fixture(1, 100))
+{
+ auto target1 = std::make_shared<SimpleTarget>("target1", 10, false);
+ auto handler = f.addSimpleHandler({ target1 });
+ TEST_DO(f.assertOldestSerial(*handler, 10));
+ target1->_proceed.countDown();
+ f.engine.close();
+ EXPECT_EQUAL(20u, handler->_oldestSerial);
+}
+
+TEST_F("require that oldest serial is updated when finishing priority flush strategy", Fixture(1, 100, std::make_shared<NoFlushStrategy>()))
+{
+ auto target1 = std::make_shared<SimpleTarget>("target1", 10, true);
+ auto handler = f.addSimpleHandler({ target1 });
+ TEST_DO(f.assertOldestSerial(*handler, 10));
+ f.engine.setStrategy(std::make_shared<SimpleStrategy>());
+ EXPECT_EQUAL(20u, handler->_oldestSerial);
+}
+
+
TEST_MAIN()
{
TEST_RUN_ALL();