mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
76 lines
2.0 KiB
C++
76 lines
2.0 KiB
C++
// basictests.cpp : basic 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 "stdafx.h"
|
|
|
|
#include "dbtests.h"
|
|
#include "../util/base64.h"
|
|
|
|
namespace BasicTests {
|
|
|
|
class Rarely {
|
|
public:
|
|
void run() {
|
|
int first = 0;
|
|
int second = 0;
|
|
int third = 0;
|
|
for( int i = 0; i < 128; ++i ) {
|
|
incRarely( first );
|
|
incRarely2( second );
|
|
ONCE ++third;
|
|
}
|
|
ASSERT_EQUALS( 1, first );
|
|
ASSERT_EQUALS( 1, second );
|
|
ASSERT_EQUALS( 1, third );
|
|
}
|
|
private:
|
|
void incRarely( int &c ) {
|
|
RARELY ++c;
|
|
}
|
|
void incRarely2( int &c ) {
|
|
RARELY ++c;
|
|
}
|
|
};
|
|
|
|
class Base64Tests {
|
|
public:
|
|
void run(){
|
|
base64::testAlphabet();
|
|
ASSERT_EQUALS( "ZWxp" , base64::encode( "eli" , 3 ) );
|
|
ASSERT_EQUALS( "ZWxpb3Rz" , base64::encode( "eliots" , 6 ) );
|
|
|
|
ASSERT_EQUALS( "ZQ==" , base64::encode( "e" , 1 ) );
|
|
ASSERT_EQUALS( "ZWw=" , base64::encode( "el" , 2 ) );
|
|
}
|
|
};
|
|
|
|
class All : public Suite {
|
|
public:
|
|
All() : Suite( "basic" ){
|
|
}
|
|
|
|
void setupTests(){
|
|
add< Rarely >();
|
|
add< Base64Tests >();
|
|
}
|
|
} myall;
|
|
|
|
} // namespace BasicTests
|
|
|