// repltests.cpp : Unit tests for replication // /** * Copyright (C) 2009 10gen 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 . */ #include "../db/repl.h" #include "../db/db.h" #include "../db/instance.h" #include "../db/json.h" #include "dbtests.h" namespace mongo { void createOplog(); } namespace ReplTests { BSONObj f( const char *s ) { return fromjson( s ); } class Base { public: Base() { master = true; createOplog(); dblock lk; setClient( ns() ); } ~Base() { try { master = false; deleteAll( ns() ); deleteAll( logNs() ); } catch ( ... ) { FAIL( "Exception while cleaning up test" ); } } protected: static const char *ns() { return "dbtests.repltests"; } static const char *logNs() { return "local.oplog.$main"; } DBClientInterface *client() const { return &client_; } BSONObj one( const BSONObj &query = emptyObj ) const { return client()->findOne( ns(), query ); } void checkOne( const BSONObj &o ) const { check( o, one( o ) ); } void checkAll( const BSONObj &o ) const { auto_ptr< DBClientCursor > c = client()->query( ns(), o ); assert( c->more() ); while( c->more() ) { check( o, c->next() ); } } void check( const BSONObj &expected, const BSONObj &got ) const { if ( expected.woCompare( got ) ) { out() << "expected: " << expected.toString() << ", got: " << got.toString() << endl; } ASSERT( !expected.woCompare( got ) ); } BSONObj oneOp() const { return client()->findOne( logNs(), emptyObj ); } int count() const { int count = 0; dblock lk; setClient( ns() ); auto_ptr< Cursor > c = theDataFileMgr.findAll( ns() ); for(; c->ok(); c->advance(), ++count ) { // cout << "obj: " << c->current().toString() << endl; } return count; } static void applyAllOperations() { class Applier : public ReplSource { public: static void apply( const BSONObj &op ) { ReplSource::applyOperation( op ); } }; dblock lk; setClient( logNs() ); vector< BSONObj > ops; for( auto_ptr< Cursor > c = theDataFileMgr.findAll( logNs() ); c->ok(); c->advance() ) ops.push_back( c->current() ); setClient( ns() ); for( vector< BSONObj >::iterator i = ops.begin(); i != ops.end(); ++i ) Applier::apply( *i ); } static void printAll( const char *ns ) { dblock lk; setClient( ns ); auto_ptr< Cursor > c = theDataFileMgr.findAll( ns ); vector< DiskLoc > toDelete; out() << "all for " << ns << endl; for(; c->ok(); c->advance() ) { out() << c->current().toString() << endl; } } // These deletes don't get logged. static void deleteAll( const char *ns ) { dblock lk; setClient( ns ); auto_ptr< Cursor > c = theDataFileMgr.findAll( ns ); vector< DiskLoc > toDelete; for(; c->ok(); c->advance() ) { toDelete.push_back( c->currLoc() ); } for( vector< DiskLoc >::iterator i = toDelete.begin(); i != toDelete.end(); ++i ) { theDataFileMgr.deleteRecord( ns, i->rec(), *i, true ); } } static void insert( const BSONObj &o, bool god = false ) { dblock lk; setClient( ns() ); theDataFileMgr.insert( ns(), o.objdata(), o.objsize(), god ); } static BSONObj wid( const char *json ) { class BSONObjBuilder b; OID id; id.init(); b.appendOID( "_id", &id ); b.appendElements( fromjson( json ) ); return b.obj(); } private: static DBDirectClient client_; }; DBDirectClient Base::client_; class LogBasic : public Base { public: void run() { ASSERT( !database->haveLogged() ); ASSERT( oneOp().isEmpty() ); client()->insert( ns(), fromjson( "{\"a\":\"b\"}" ) ); ASSERT( database->haveLogged() ); ASSERT( !oneOp().isEmpty() ); } }; namespace Idempotence { class Base : public ReplTests::Base { public: void run() { reset(); doIt(); check(); applyAllOperations(); check(); reset(); applyAllOperations(); check(); applyAllOperations(); check(); } protected: virtual void doIt() const = 0; virtual void check() const = 0; virtual void reset() const = 0; }; class InsertAutoId : public Base { public: InsertAutoId() : o_( fromjson( "{\"a\":\"b\"}" ) ) {} void doIt() const { client()->insert( ns(), o_ ); } void check() const { ASSERT_EQUALS( 1, count() ); } void reset() const { deleteAll( ns() ); } protected: BSONObj o_; }; class InsertWithId : public InsertAutoId { public: InsertWithId() { o_ = fromjson( "{\"_id\":ObjectId(\"0f0f0f0f0f0f0f0f0f0f0f0f\"),\"a\":\"b\"}" ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( o_ ); } }; class InsertTwo : public Base { public: InsertTwo() : o_( fromjson( "{'_id':1,a:'b'}" ) ), t_( fromjson( "{'_id':2,c:'d'}" ) ) {} void doIt() const { vector< BSONObj > v; v.push_back( o_ ); v.push_back( t_ ); client()->insert( ns(), v ); } void check() const { ASSERT_EQUALS( 2, count() ); checkOne( o_ ); checkOne( t_ ); } void reset() const { deleteAll( ns() ); } private: BSONObj o_; BSONObj t_; }; class InsertTwoIdentical : public Base { public: InsertTwoIdentical() : o_( fromjson( "{\"a\":\"b\"}" ) ) {} void doIt() const { client()->insert( ns(), o_ ); client()->insert( ns(), o_ ); } void check() const { ASSERT_EQUALS( 2, count() ); } void reset() const { deleteAll( ns() ); } private: BSONObj o_; }; class UpdateSameField : public Base { public: UpdateSameField() : q_( fromjson( "{a:'b'}" ) ), o1_( wid( "{a:'b'}" ) ), o2_( wid( "{a:'b'}" ) ), u_( fromjson( "{a:'c'}" ) ){} void doIt() const { client()->update( ns(), q_, u_ ); } void check() const { ASSERT_EQUALS( 2, count() ); ASSERT( !client()->findOne( ns(), q_ ).isEmpty() ); ASSERT( !client()->findOne( ns(), u_ ).isEmpty() ); } void reset() const { deleteAll( ns() ); insert( o1_ ); insert( o2_ ); } private: BSONObj q_, o1_, o2_, u_; }; class UpdateSameFieldWithId : public Base { public: UpdateSameFieldWithId() : o_( fromjson( "{'_id':1,a:'b'}" ) ), q_( fromjson( "{a:'b'}" ) ), u_( fromjson( "{'_id':1,a:'c'}" ) ){} void doIt() const { client()->update( ns(), q_, u_ ); } void check() const { ASSERT_EQUALS( 2, count() ); ASSERT( !client()->findOne( ns(), q_ ).isEmpty() ); ASSERT( !client()->findOne( ns(), u_ ).isEmpty() ); } void reset() const { deleteAll( ns() ); insert( o_ ); insert( fromjson( "{'_id':2,a:'b'}" ) ); } private: BSONObj o_, q_, u_; }; class UpdateSameFieldExplicitId : public Base { public: UpdateSameFieldExplicitId() : o_( fromjson( "{'_id':1,a:'b'}" ) ), u_( fromjson( "{'_id':1,a:'c'}" ) ){} void doIt() const { client()->update( ns(), o_, u_ ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( u_ ); } void reset() const { deleteAll( ns() ); insert( o_ ); } protected: BSONObj o_, u_; }; class UpdateId : public UpdateSameFieldExplicitId { public: UpdateId() { o_ = fromjson( "{'_id':1}" ); u_ = fromjson( "{'_id':2}" ); } }; class UpdateDifferentFieldExplicitId : public Base { public: UpdateDifferentFieldExplicitId() : o_( fromjson( "{'_id':1,a:'b'}" ) ), q_( fromjson( "{'_id':1}" ) ), u_( fromjson( "{'_id':1,a:'c'}" ) ){} void doIt() const { client()->update( ns(), q_, u_ ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( u_ ); } void reset() const { deleteAll( ns() ); insert( o_ ); } protected: BSONObj o_, q_, u_; }; class UpsertUpdateNoMods : public UpdateDifferentFieldExplicitId { void doIt() const { client()->update( ns(), q_, u_, true ); } }; class UpsertInsertNoMods : public InsertAutoId { void doIt() const { client()->update( ns(), fromjson( "{a:'c'}" ), o_, true ); } }; class UpdateSet : public Base { public: UpdateSet() : o_( fromjson( "{'_id':1,a:5}" ) ), q_( fromjson( "{a:5}" ) ), u_( fromjson( "{$set:{a:7}}" ) ), ou_( fromjson( "{'_id':1,a:7}" ) ) {} void doIt() const { client()->update( ns(), q_, u_ ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( ou_ ); } void reset() const { deleteAll( ns() ); insert( o_ ); } protected: BSONObj o_, q_, u_, ou_; }; class UpdateInc : public Base { public: UpdateInc() : o_( fromjson( "{'_id':1,a:5}" ) ), q_( fromjson( "{a:5}" ) ), u_( fromjson( "{$inc:{a:3}}" ) ), ou_( fromjson( "{'_id':1,a:8}" ) ) {} void doIt() const { client()->update( ns(), q_, u_ ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( ou_ ); } void reset() const { deleteAll( ns() ); insert( o_ ); } protected: BSONObj o_, q_, u_, ou_; }; class UpsertInsertIdMod : public Base { public: UpsertInsertIdMod() : q_( fromjson( "{'_id':5,a:4}" ) ), u_( fromjson( "{$inc:{a:3}}" ) ), ou_( fromjson( "{'_id':5,a:3}" ) ) {} void doIt() const { client()->update( ns(), q_, u_, true ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( ou_ ); } void reset() const { deleteAll( ns() ); } protected: BSONObj q_, u_, ou_; }; class UpsertInsertSet : public Base { public: UpsertInsertSet() : q_( fromjson( "{a:5}" ) ), u_( fromjson( "{$set:{a:7}}" ) ), ou_( fromjson( "{a:7}" ) ) {} void doIt() const { client()->update( ns(), q_, u_, true ); } void check() const { ASSERT_EQUALS( 2, count() ); ASSERT( !client()->findOne( ns(), ou_ ).isEmpty() ); } void reset() const { deleteAll( ns() ); insert( fromjson( "{'_id':7,a:7}" ) ); } protected: BSONObj o_, q_, u_, ou_; }; class UpsertInsertInc : public Base { public: UpsertInsertInc() : q_( fromjson( "{a:5}" ) ), u_( fromjson( "{$inc:{a:3}}" ) ), ou_( fromjson( "{a:3}" ) ) {} void doIt() const { client()->update( ns(), q_, u_, true ); } void check() const { ASSERT_EQUALS( 1, count() ); ASSERT( !client()->findOne( ns(), ou_ ).isEmpty() ); } void reset() const { deleteAll( ns() ); } protected: BSONObj o_, q_, u_, ou_; }; class UpdateWithoutPreexistingId : public Base { public: UpdateWithoutPreexistingId() : o_( fromjson( "{a:5}" ) ), u_( fromjson( "{a:5}" ) ), ot_( fromjson( "{b:4}" ) ) {} void doIt() const { client()->update( ns(), o_, u_ ); } void check() const { ASSERT_EQUALS( 2, count() ); checkOne( u_ ); checkOne( ot_ ); } void reset() const { deleteAll( ns() ); insert( ot_, true ); insert( o_, true ); } protected: BSONObj o_, u_, ot_; }; class Remove : public Base { public: Remove() : o1_( f( "{\"_id\":\"010101010101010101010101\",\"a\":\"b\"}" ) ), o2_( f( "{\"_id\":\"010101010101010101010102\",\"a\":\"b\"}" ) ), q_( f( "{\"a\":\"b\"}" ) ) {} void doIt() const { client()->remove( ns(), q_ ); } void check() const { ASSERT_EQUALS( 0, count() ); } void reset() const { deleteAll( ns() ); insert( o1_ ); insert( o2_ ); } protected: BSONObj o1_, o2_, q_; }; class RemoveOne : public Remove { void doIt() const { client()->remove( ns(), q_, true ); } void check() const { ASSERT_EQUALS( 1, count() ); } }; class FailingUpdate : public Base { public: FailingUpdate() : o_( fromjson( "{'_id':1,a:'b'}" ) ), u_( fromjson( "{'_id':1,c:'d'}" ) ) {} void doIt() const { client()->update( ns(), o_, u_ ); client()->insert( ns(), o_ ); } void check() const { ASSERT_EQUALS( 1, count() ); checkOne( o_ ); } void reset() const { deleteAll( ns() ); } protected: BSONObj o_, u_; }; } // namespace Idempotence class All : public UnitTest::Suite { public: All() { add< LogBasic >(); add< Idempotence::InsertAutoId >(); add< Idempotence::InsertWithId >(); add< Idempotence::InsertTwo >(); add< Idempotence::InsertTwoIdentical >(); add< Idempotence::UpdateSameField >(); add< Idempotence::UpdateSameFieldWithId >(); add< Idempotence::UpdateSameFieldExplicitId >(); add< Idempotence::UpdateId >(); add< Idempotence::UpdateDifferentFieldExplicitId >(); add< Idempotence::UpsertUpdateNoMods >(); add< Idempotence::UpsertInsertNoMods >(); add< Idempotence::UpdateSet >(); add< Idempotence::UpdateInc >(); add< Idempotence::UpsertInsertIdMod >(); add< Idempotence::UpsertInsertSet >(); add< Idempotence::UpsertInsertInc >(); add< Idempotence::UpdateWithoutPreexistingId >(); add< Idempotence::Remove >(); add< Idempotence::RemoveOne >(); add< Idempotence::FailingUpdate >(); } }; } // namespace ReplTests UnitTest::TestPtr replTests() { return UnitTest::createSuite< ReplTests::All >(); }