/** * 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. */ #include "mongo/platform/basic.h" #include "mongo/s/request_types/update_zone_key_range_request_type.h" #include "mongo/bson/json.h" #include "mongo/db/jsobj.h" #include "mongo/unittest/unittest.h" namespace mongo { namespace { TEST(UpdateZoneKeyRangeRequest, BasicValidMongosAssignCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); ASSERT_EQ("foo.bar", request.getNS().ns()); ASSERT_BSONOBJ_EQ(BSON("x" << 1), request.getRange().getMin()); ASSERT_BSONOBJ_EQ(BSON("x" << 100), request.getRange().getMax()); ASSERT_FALSE(request.isRemove()); ASSERT_EQ("z", request.getZoneName()); } TEST(UpdateZoneKeyRangeRequest, BasicValidMongosRemoveCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); ASSERT_EQ("foo.bar", request.getNS().ns()); ASSERT_BSONOBJ_EQ(BSON("x" << 1), request.getRange().getMin()); ASSERT_BSONOBJ_EQ(BSON("x" << 100), request.getRange().getMax()); ASSERT_TRUE(request.isRemove()); } TEST(UpdateZoneKeyRangeRequest, InvalidNSMongosAssignCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::InvalidNamespace, requestStatus.getStatus()); } TEST(UpdateZoneKeyRangeRequest, CommandBuilderShouldAlwaysCreateConfigCommandForAssignType) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); BSONObjBuilder builder; request.appendAsConfigCommand(&builder); auto configCmdObj = builder.obj(); auto expectedObj = fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON"); ASSERT_BSONOBJ_EQ(expectedObj, configCmdObj); } TEST(UpdateZoneKeyRangeRequest, CommandBuilderShouldAlwaysCreateConfigCommandForRemoveType) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); BSONObjBuilder builder; request.appendAsConfigCommand(&builder); auto configCmdObj = builder.obj(); auto expectedObj = fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON"); ASSERT_BSONOBJ_EQ(expectedObj, configCmdObj); } TEST(UpdateZoneKeyRangeRequest, MissingMinErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, MissingMaxErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, MissingZoneErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 } })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, MissingShardNameErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, WrongShardNameTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: 1234, min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, WrongMinRangeTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: "1", max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, WrongMaxRangeTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: "x", zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, WrongZoneNameTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: 123 })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(UpdateZoneKeyRangeRequest, CannotUseMongosToParseConfigCommand) { auto request = UpdateZoneKeyRangeRequest::parseFromMongosCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, BasicValidMongosAssignCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); ASSERT_EQ("foo.bar", request.getNS().ns()); ASSERT_BSONOBJ_EQ(BSON("x" << 1), request.getRange().getMin()); ASSERT_BSONOBJ_EQ(BSON("x" << 100), request.getRange().getMax()); ASSERT_FALSE(request.isRemove()); ASSERT_EQ("z", request.getZoneName()); } TEST(CfgAssignKeyRangeToZoneRequest, BasicValidMongosRemoveCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); ASSERT_EQ("foo.bar", request.getNS().ns()); ASSERT_BSONOBJ_EQ(BSON("x" << 1), request.getRange().getMin()); ASSERT_BSONOBJ_EQ(BSON("x" << 100), request.getRange().getMax()); ASSERT_TRUE(request.isRemove()); } TEST(CfgAssignKeyRangeToZoneRequest, InvalidNSConfigAssignCommand) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::InvalidNamespace, requestStatus.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, CommandBuilderShouldAlwaysCreateConfigCommandForAssignType) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); BSONObjBuilder builder; request.appendAsConfigCommand(&builder); auto configCmdObj = builder.obj(); auto expectedObj = fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON"); ASSERT_BSONOBJ_EQ(expectedObj, configCmdObj); } TEST(CfgAssignKeyRangeToZoneRequest, CommandBuilderShouldAlwaysCreateConfigCommandForRemoveType) { auto requestStatus = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON")); ASSERT_OK(requestStatus.getStatus()); auto request = requestStatus.getValue(); BSONObjBuilder builder; request.appendAsConfigCommand(&builder); auto configCmdObj = builder.obj(); auto expectedObj = fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: null })BSON"); ASSERT_BSONOBJ_EQ(expectedObj, configCmdObj); } TEST(CfgAssignKeyRangeToZoneRequest, MissingMinErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, MissingMaxErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, MissingZoneErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 } })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, MissingShardNameErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, WrongShardNameTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: 1234, min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, WrongMinRangeTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: "1", max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, WrongMaxRangeTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: "x", zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, WrongZoneNameTypeErrors) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ _configsvrUpdateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: 123 })BSON")); ASSERT_EQ(ErrorCodes::TypeMismatch, request.getStatus()); } TEST(CfgAssignKeyRangeToZoneRequest, CannotUseConfigToParseMongosCommand) { auto request = UpdateZoneKeyRangeRequest::parseFromConfigCommand(fromjson(R"BSON({ updateZoneKeyRange: "foo.bar", min: { x: 1 }, max: { x: 100 }, zone: "z" })BSON")); ASSERT_EQ(ErrorCodes::NoSuchKey, request.getStatus()); } } // unnamed namespace } // namespace mongo