summaryrefslogtreecommitdiff
path: root/src/mongo/s/sharding_task_executor_test.cpp
diff options
context:
space:
mode:
authorBlake Oler <blake.oler@mongodb.com>2018-10-02 15:58:53 -0400
committerBlake Oler <blake.oler@mongodb.com>2018-10-11 11:37:54 -0400
commitf2944ecc32d49ecdf801b38653b79e2396a40510 (patch)
tree387c23852fa6978663bd5c823a0d50f77b9c6816 /src/mongo/s/sharding_task_executor_test.cpp
parentcc99b89e8c2ecbae3b4ae006f0a97927fe6040ce (diff)
downloadmongo-f2944ecc32d49ecdf801b38653b79e2396a40510.tar.gz
SERVER-35323 Guarantee the command object sent by the ShardingTaskExecutor will always have the correct logical session id
Diffstat (limited to 'src/mongo/s/sharding_task_executor_test.cpp')
-rw-r--r--src/mongo/s/sharding_task_executor_test.cpp150
1 files changed, 150 insertions, 0 deletions
diff --git a/src/mongo/s/sharding_task_executor_test.cpp b/src/mongo/s/sharding_task_executor_test.cpp
new file mode 100644
index 00000000000..27df594923a
--- /dev/null
+++ b/src/mongo/s/sharding_task_executor_test.cpp
@@ -0,0 +1,150 @@
+/**
+ * Copyright (C) 2018 MongoDB Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * As a special exception, the copyright holders give permission to link the
+ * code of portions of this program with the OpenSSL library under certain
+ * conditions as described in each individual source file and distribute
+ * linked combinations including the program with the OpenSSL library. You
+ * must comply with the GNU Affero General Public License in all respects for
+ * all of the code used other than as permitted herein. If you modify file(s)
+ * with this exception, you may extend this exception to your version of the
+ * file(s), but you are not obligated to do so. If you do not wish to do so,
+ * delete this exception statement from your version. If you delete this
+ * exception statement from all source files in the program, then also delete
+ * it in the license file.
+ */
+
+#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kExecutor
+
+#include "mongo/platform/basic.h"
+
+#include "mongo/s/sharding_task_executor.h"
+
+#include "mongo/executor/network_interface.h"
+#include "mongo/executor/network_interface_mock.h"
+#include "mongo/executor/task_executor_test_common.h"
+#include "mongo/executor/task_executor_test_fixture.h"
+#include "mongo/executor/thread_pool_mock.h"
+#include "mongo/executor/thread_pool_task_executor.h"
+#include "mongo/executor/thread_pool_task_executor_test_fixture.h"
+#include "mongo/s/shard_server_test_fixture.h"
+
+namespace mongo {
+namespace {
+
+using executor::NetworkInterfaceMock;
+using executor::RemoteCommandRequest;
+using executor::TaskExecutor;
+
+class ShardingTaskExecutorTest : public ShardServerTestFixture {
+private:
+ void setUp() final;
+ void tearDown() final;
+
+protected:
+ LogicalSessionId constructFullLsid();
+ void assertOpCtxLsidEqualsCmdObjLsid(const BSONObj& cmdObj);
+
+ executor::NetworkInterfaceMock* _network{nullptr};
+
+ std::unique_ptr<executor::ThreadPoolTaskExecutor> _threadPool;
+};
+
+void ShardingTaskExecutorTest::setUp() {
+ ShardServerTestFixture::setUp();
+
+ auto netForFixedTaskExecutor = std::make_unique<executor::NetworkInterfaceMock>();
+ _network = netForFixedTaskExecutor.get();
+
+ _threadPool = makeThreadPoolTestExecutor(std::move(netForFixedTaskExecutor));
+}
+
+void ShardingTaskExecutorTest::tearDown() {
+ ShardServerTestFixture::tearDown();
+}
+
+LogicalSessionId ShardingTaskExecutorTest::constructFullLsid() {
+ auto id = UUID::gen();
+ auto uid = SHA256Block{};
+
+ return LogicalSessionId(id, uid);
+}
+
+void ShardingTaskExecutorTest::assertOpCtxLsidEqualsCmdObjLsid(const BSONObj& cmdObj) {
+ auto opCtxLsid = operationContext()->getLogicalSessionId();
+
+ ASSERT(opCtxLsid);
+
+ auto cmdObjLsid = LogicalSessionFromClient::parse("lsid"_sd, cmdObj["lsid"].Obj());
+
+ ASSERT_EQ(opCtxLsid->getId(), cmdObjLsid.getId());
+ ASSERT_EQ(opCtxLsid->getUid(), *cmdObjLsid.getUid());
+}
+
+TEST_F(ShardingTaskExecutorTest, MissingLsidAddsLsidInCommand) {
+ operationContext()->setLogicalSessionId(constructFullLsid());
+ ASSERT(operationContext()->getLogicalSessionId());
+
+ executor::ShardingTaskExecutor executor(std::move(_threadPool));
+ executor.startup();
+ _network->enterNetwork();
+
+ const RemoteCommandRequest request(HostAndPort("localhost", 27017),
+ "mydb",
+ BSON("whatsUp"
+ << "doc"),
+ operationContext());
+
+ TaskExecutor::CallbackHandle cbHandle = unittest::assertGet(executor.scheduleRemoteCommand(
+ request, [=](const executor::TaskExecutor::RemoteCommandCallbackArgs) -> void {}, nullptr));
+
+ ASSERT(_network->hasReadyRequests());
+ NetworkInterfaceMock::NetworkOperationIterator noi = _network->getNextReadyRequest();
+ auto cmdObj = noi->getRequest().cmdObj;
+
+ assertOpCtxLsidEqualsCmdObjLsid(cmdObj);
+}
+
+TEST_F(ShardingTaskExecutorTest, IncompleteLsidAddsLsidInCommand) {
+ operationContext()->setLogicalSessionId(constructFullLsid());
+ ASSERT(operationContext()->getLogicalSessionId());
+
+ executor::ShardingTaskExecutor executor(std::move(_threadPool));
+ executor.startup();
+ _network->enterNetwork();
+
+ BSONObjBuilder bob;
+ bob.append("whatsUp", "doc");
+ {
+ BSONObjBuilder subbob(bob.subobjStart("lsid"));
+ subbob << "id" << operationContext()->getLogicalSessionId()->getId();
+ subbob.done();
+ }
+
+ const RemoteCommandRequest request(
+ HostAndPort("localhost", 27017), "mydb", bob.obj(), operationContext());
+
+ TaskExecutor::CallbackHandle cbHandle = unittest::assertGet(executor.scheduleRemoteCommand(
+ request, [=](const executor::TaskExecutor::RemoteCommandCallbackArgs) -> void {}, nullptr));
+
+ ASSERT(_network->hasReadyRequests());
+ NetworkInterfaceMock::NetworkOperationIterator noi = _network->getNextReadyRequest();
+ auto cmdObj = noi->getRequest().cmdObj;
+
+ assertOpCtxLsidEqualsCmdObjLsid(cmdObj);
+}
+
+} // namespace
+} // namespace mongo