/** * Copyright (C) 2018-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * 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 * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * 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 Server Side 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 _threadPool; }; void ShardingTaskExecutorTest::setUp() { ShardServerTestFixture::setUp(); auto netForFixedTaskExecutor = std::make_unique(); _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(); NetworkInterfaceMock::InNetworkGuard ing(_network); 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(); NetworkInterfaceMock::InNetworkGuard ing(_network); 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