/** * 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/db/catalog/collection.h" #include "mongo/db/client.h" #include "mongo/db/db.h" #include "mongo/db/db_raii.h" #include "mongo/db/dbdirectclient.h" #include "mongo/db/json.h" #include "mongo/dbtests/dbtests.h" #include "mongo/stdx/thread.h" namespace CountTests { class Base { public: Base() : _lk(&_opCtx, nsToDatabaseSubstring(ns()), MODE_X), _context(&_opCtx, ns()), _client(&_opCtx) { _database = _context.db(); { WriteUnitOfWork wunit(&_opCtx); _collection = _database->getCollection(&_opCtx, ns()); if (_collection) { _database->dropCollection(&_opCtx, ns()).transitional_ignore(); } _collection = _database->createCollection(&_opCtx, ns()); wunit.commit(); } DBDirectClient client(&_opCtx); client.createIndex(ns(), IndexSpec().addKey("a").unique(false)); } ~Base() { try { WriteUnitOfWork wunit(&_opCtx); uassertStatusOK(_database->dropCollection(&_opCtx, ns())); wunit.commit(); } catch (...) { FAIL("Exception while cleaning up collection"); } } protected: static const char* ns() { return "unittests.counttests"; } void insert(const char* s) { WriteUnitOfWork wunit(&_opCtx); const BSONObj o = fromjson(s); OpDebug* const nullOpDebug = nullptr; if (o["_id"].eoo()) { BSONObjBuilder b; OID oid; oid.init(); b.appendOID("_id", &oid); b.appendElements(o); _collection->insertDocument(&_opCtx, InsertStatement(b.obj()), nullOpDebug, false) .transitional_ignore(); } else { _collection->insertDocument(&_opCtx, InsertStatement(o), nullOpDebug, false) .transitional_ignore(); } wunit.commit(); } const ServiceContext::UniqueOperationContext _opCtxPtr = cc().makeOperationContext(); OperationContext& _opCtx = *_opCtxPtr; Lock::DBLock _lk; OldClientContext _context; Database* _database; Collection* _collection; DBDirectClient _client; }; class Basic : public Base { public: void run() { insert("{\"a\":\"b\"}"); insert("{\"c\":\"d\"}"); ASSERT_EQUALS(2ULL, _client.count(ns(), fromjson("{}"))); } }; class Query : public Base { public: void run() { insert("{\"a\":\"b\"}"); insert("{\"a\":\"b\",\"x\":\"y\"}"); insert("{\"a\":\"c\"}"); ASSERT_EQUALS(2ULL, _client.count(ns(), fromjson("{\"a\":\"b\"}"))); } }; class QueryFields : public Base { public: void run() { insert("{\"a\":\"b\"}"); insert("{\"a\":\"c\"}"); insert("{\"d\":\"e\"}"); ASSERT_EQUALS(1ULL, _client.count(ns(), fromjson("{\"a\":\"b\"}"))); } }; class IndexedRegex : public Base { public: void run() { insert("{\"a\":\"c\"}"); insert("{\"a\":\"b\"}"); insert("{\"a\":\"d\"}"); ASSERT_EQUALS(1ULL, _client.count(ns(), fromjson("{\"a\":/^b/}"))); } }; class All : public Suite { public: All() : Suite("count") {} void setupTests() { add(); add(); add(); add(); } }; SuiteInstance myall; } // namespace CountTests