2009-05-11 16:49:30 +02:00
|
|
|
// cusrortests.cpp // cursor related unit tests
|
|
|
|
//
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../db/clientcursor.h"
|
|
|
|
|
|
|
|
#include "dbtests.h"
|
|
|
|
|
|
|
|
namespace CursorTests {
|
|
|
|
|
2009-07-03 02:18:39 +02:00
|
|
|
typedef IdSet_Deprecated IdSet;
|
|
|
|
|
2009-05-11 16:49:30 +02:00
|
|
|
namespace IdSetTests {
|
|
|
|
|
|
|
|
class BasicSize {
|
|
|
|
public:
|
|
|
|
void run() {
|
|
|
|
IdSet a;
|
|
|
|
IdSet b;
|
2009-05-11 17:23:43 +02:00
|
|
|
int baseSize = BSON( "a" << 4 ).objsize() + sizeof( BSONObj );
|
2009-05-11 16:49:30 +02:00
|
|
|
ASSERT_EQUALS( 0, IdSet::aggregateSize() );
|
|
|
|
a.put( BSON( "a" << 4 ) );
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT_EQUALS( baseSize, a.mySize() );
|
2009-05-11 16:49:30 +02:00
|
|
|
a.put( BSON( "ab" << 4 ) );
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT_EQUALS( baseSize * 2 + 1, a.mySize() );
|
|
|
|
ASSERT_EQUALS( baseSize * 2 + 1, IdSet::aggregateSize() );
|
2009-05-11 16:49:30 +02:00
|
|
|
b.put( BSON( "abc" << 4 ) );
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT_EQUALS( baseSize + 2, b.mySize() );
|
|
|
|
ASSERT_EQUALS( baseSize * 3 + 1 + 2, IdSet::aggregateSize() );
|
2009-05-11 16:49:30 +02:00
|
|
|
}
|
|
|
|
~BasicSize() {
|
|
|
|
if ( 0 != IdSet::aggregateSize() )
|
|
|
|
FAIL( "aggregateSize not reset" );
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
dblock lk_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Upgrade {
|
|
|
|
public:
|
|
|
|
Upgrade() : num_() {}
|
|
|
|
void run() {
|
2009-05-12 21:58:26 +02:00
|
|
|
setClient( "unittests.bar" );
|
2009-05-11 16:49:30 +02:00
|
|
|
|
2009-05-11 17:23:43 +02:00
|
|
|
IdSet::maxSize_ = ( BSON( "_id" << int( 1 ) ).objsize() + sizeof( BSONObj ) - 1 ) * 8;
|
2009-05-11 16:49:30 +02:00
|
|
|
|
|
|
|
IdSet a;
|
|
|
|
IdSet b;
|
|
|
|
ASSERT( a.inMem() );
|
|
|
|
ASSERT( b.inMem() );
|
2009-05-11 17:23:43 +02:00
|
|
|
a.put( obj() );
|
|
|
|
b.put( obj() );
|
|
|
|
b.put( obj() );
|
|
|
|
b.put( obj() );
|
2009-05-11 16:49:30 +02:00
|
|
|
b.mayUpgradeStorage( "b" );
|
|
|
|
ASSERT( b.inMem() );
|
2009-05-11 17:23:43 +02:00
|
|
|
a.put( obj() );
|
|
|
|
a.put( obj() );
|
2009-05-11 16:49:30 +02:00
|
|
|
a.mayUpgradeStorage( "a" );
|
|
|
|
ASSERT( a.inMem() );
|
2009-05-11 17:23:43 +02:00
|
|
|
a.put( obj() );
|
2009-05-11 16:49:30 +02:00
|
|
|
a.mayUpgradeStorage( "a" );
|
|
|
|
ASSERT( !a.inMem() );
|
2009-05-11 17:23:43 +02:00
|
|
|
b.put( obj() );
|
2009-05-11 16:49:30 +02:00
|
|
|
b.mayUpgradeStorage( "b" );
|
|
|
|
ASSERT( !b.inMem() );
|
|
|
|
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT( a.get( obj( 0 ) ) );
|
2009-05-11 16:49:30 +02:00
|
|
|
for( int i = 1; i < 4; ++i )
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT( b.get( obj( i ) ) );
|
2009-05-11 16:49:30 +02:00
|
|
|
for( int i = 4; i < 7; ++i )
|
2009-05-11 17:23:43 +02:00
|
|
|
ASSERT( a.get( obj( i ) ) );
|
|
|
|
ASSERT( b.get( obj( 7 ) ) );
|
2009-05-11 16:49:30 +02:00
|
|
|
}
|
|
|
|
~Upgrade() {
|
|
|
|
setClient( "local.temp" );
|
|
|
|
if ( nsdetails( "local.temp.clientcursor.a" ) || nsdetails( "local.temp.clientcursor.b" ) )
|
|
|
|
FAIL( "client cursor temp collection not deleted" );
|
|
|
|
}
|
|
|
|
private:
|
2009-05-11 17:23:43 +02:00
|
|
|
BSONObj obj( int i = -1 ) {
|
2009-05-11 16:49:30 +02:00
|
|
|
if ( i == -1 )
|
|
|
|
i = num_++;
|
|
|
|
return BSON( "_id" << i );
|
|
|
|
}
|
|
|
|
dblock lk_;
|
|
|
|
int num_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace IdSetTests
|
|
|
|
|
2009-05-12 22:37:23 +02:00
|
|
|
class All : public Suite {
|
2009-05-11 16:49:30 +02:00
|
|
|
public:
|
|
|
|
All() {
|
|
|
|
add< IdSetTests::BasicSize >();
|
|
|
|
add< IdSetTests::Upgrade >();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace CursorTests
|
|
|
|
|
|
|
|
UnitTest::TestPtr cursorTests() {
|
|
|
|
return UnitTest::createSuite< CursorTests::All >();
|
2009-05-11 17:07:11 +02:00
|
|
|
}
|