summaryrefslogtreecommitdiff
path: root/src/mongo/db/server_parameters_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/server_parameters_test.cpp')
-rw-r--r--src/mongo/db/server_parameters_test.cpp84
1 files changed, 42 insertions, 42 deletions
diff --git a/src/mongo/db/server_parameters_test.cpp b/src/mongo/db/server_parameters_test.cpp
index 6e74cde215d..bc7dea80e53 100644
--- a/src/mongo/db/server_parameters_test.cpp
+++ b/src/mongo/db/server_parameters_test.cpp
@@ -35,55 +35,55 @@
namespace mongo {
- using std::string;
- using std::vector;
-
- TEST( ServerParameters, Simple1 ) {
- int f = 5;
- ExportedServerParameter<int> ff( NULL, "ff", &f, true, true );
- ASSERT_EQUALS( "ff" , ff.name() );
- ASSERT_EQUALS( 5, ff.get() );
-
- ff.set( 6 );
- ASSERT_EQUALS( 6, ff.get() );
- ASSERT_EQUALS( 6, f );
-
- ff.set( BSON( "x" << 7 ).firstElement() );
- ASSERT_EQUALS( 7, ff.get() );
- ASSERT_EQUALS( 7, f );
-
- ff.setFromString( "8" );
- ASSERT_EQUALS( 8, ff.get() );
- ASSERT_EQUALS( 8, f );
-
- }
-
- TEST( ServerParameters, Vector1 ) {
- vector<string> v;
+using std::string;
+using std::vector;
+
+TEST(ServerParameters, Simple1) {
+ int f = 5;
+ ExportedServerParameter<int> ff(NULL, "ff", &f, true, true);
+ ASSERT_EQUALS("ff", ff.name());
+ ASSERT_EQUALS(5, ff.get());
+
+ ff.set(6);
+ ASSERT_EQUALS(6, ff.get());
+ ASSERT_EQUALS(6, f);
+
+ ff.set(BSON("x" << 7).firstElement());
+ ASSERT_EQUALS(7, ff.get());
+ ASSERT_EQUALS(7, f);
+
+ ff.setFromString("8");
+ ASSERT_EQUALS(8, ff.get());
+ ASSERT_EQUALS(8, f);
+}
- ExportedServerParameter< vector<string> > vv( NULL, "vv", &v, true, true );
+TEST(ServerParameters, Vector1) {
+ vector<string> v;
- BSONObj x = BSON( "x" << BSON_ARRAY( "a" << "b" << "c" ) );
- vv.set( x.firstElement() );
+ ExportedServerParameter<vector<string>> vv(NULL, "vv", &v, true, true);
- ASSERT_EQUALS( 3U, v.size() );
- ASSERT_EQUALS( "a", v[0] );
- ASSERT_EQUALS( "b", v[1] );
- ASSERT_EQUALS( "c", v[2] );
+ BSONObj x = BSON("x" << BSON_ARRAY("a"
+ << "b"
+ << "c"));
+ vv.set(x.firstElement());
- BSONObjBuilder b;
+ ASSERT_EQUALS(3U, v.size());
+ ASSERT_EQUALS("a", v[0]);
+ ASSERT_EQUALS("b", v[1]);
+ ASSERT_EQUALS("c", v[2]);
- OperationContextNoop txn;
- vv.append(&txn, b, vv.name());
+ BSONObjBuilder b;
- BSONObj y = b.obj();
- ASSERT( x.firstElement().woCompare( y.firstElement(), false ) == 0 );
+ OperationContextNoop txn;
+ vv.append(&txn, b, vv.name());
+ BSONObj y = b.obj();
+ ASSERT(x.firstElement().woCompare(y.firstElement(), false) == 0);
- vv.setFromString( "d,e" );
- ASSERT_EQUALS( 2U, v.size() );
- ASSERT_EQUALS( "d", v[0] );
- ASSERT_EQUALS( "e", v[1] );
- }
+ vv.setFromString("d,e");
+ ASSERT_EQUALS(2U, v.size());
+ ASSERT_EQUALS("d", v[0]);
+ ASSERT_EQUALS("e", v[1]);
+}
}