aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-11-30 21:51:22 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-11-30 21:51:22 +0000
commita1528a875cab61ac9f5be10cd806605d04cd24b6 (patch)
tree24f8cc94c13b87eb6bc9b50b845cdb79c1afec22 /searchcore/src/tests
parentaa3ffac0caaba2c60fabc585be8376cfe132c17d (diff)
sync_all_executors is now gone.
Diffstat (limited to 'searchcore/src/tests')
-rw-r--r--searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp23
1 files changed, 15 insertions, 8 deletions
diff --git a/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp b/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
index 1c2d903fead..4446d316d23 100644
--- a/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
+++ b/searchcore/src/tests/proton/documentdb/storeonlyfeedview/storeonlyfeedview_test.cpp
@@ -241,11 +241,6 @@ struct FixtureBase {
}
template <typename FunctionType>
- void runInMasterAndSyncAll(FunctionType func) {
- test::runInMaster(writeService, func);
- writeService.sync_all_executors();
- }
- template <typename FunctionType>
void runInMasterAndSync(FunctionType func) {
test::runInMasterAndSync(writeService, func);
}
@@ -288,6 +283,18 @@ struct MoveFixture : public FixtureBase<MoveOperationFeedView> {
feedview->clearWriteDoneContexts();
EXPECT_EQUAL(0, outstandingMoveOps);
}
+
+ void handleMove(const MoveOperation & op) {
+ auto ctx = beginMoveOp();
+ runInMasterAndSync([&, ctx]() {
+ feedview->handleMove(op, std::move(ctx));
+ });
+ while (ctx.use_count() > 2) {
+ LOG(info, "use_count = %ld", ctx.use_count());
+ std::this_thread::sleep_for(1s);
+ }
+ ctx.reset();
+ }
};
TEST_F("require that prepareMove sets target db document id", Fixture)
@@ -323,7 +330,7 @@ TEST_F("require that handleMove() adds document to target and removes it from so
MoveOperation::UP op = makeMoveOp(DbDocumentId(subdb_id + 1, 1), subdb_id);
TEST_DO(f.assertPutCount(0));
f.runInMasterAndSync([&]() { f.feedview->prepareMove(*op); });
- f.runInMasterAndSyncAll([&]() { f.feedview->handleMove(*op, f.beginMoveOp()); });
+ f.handleMove(*op);
TEST_DO(f.assertPutCount(1));
TEST_DO(f.assertAndClearMoveOp());
lid = op->getDbDocumentId().getLid();
@@ -335,7 +342,7 @@ TEST_F("require that handleMove() adds document to target and removes it from so
MoveOperation::UP op = makeMoveOp(DbDocumentId(subdb_id, 1), subdb_id + 1);
op->setDbDocumentId(DbDocumentId(subdb_id + 1, 1));
TEST_DO(f.assertRemoveCount(0));
- f.runInMasterAndSyncAll([&]() { f.feedview->handleMove(*op, f.beginMoveOp()); });
+ f.handleMove(*op);
EXPECT_FALSE(f.metaStore->validLid(lid));
TEST_DO(f.assertRemoveCount(1));
TEST_DO(f.assertAndClearMoveOp());
@@ -363,7 +370,7 @@ TEST_F("require that handleMove() handles move within same subdb and propagates
op->setTargetLid(1);
TEST_DO(f.assertPutCount(0));
TEST_DO(f.assertRemoveCount(0));
- f.runInMasterAndSyncAll([&]() { f.feedview->handleMove(*op, f.beginMoveOp()); });
+ f.handleMove(*op);
TEST_DO(f.assertPutCount(1));
TEST_DO(f.assertRemoveCount(1));
TEST_DO(f.assertAndClearMoveOp());