Files
mongo/client/examples/authTest.cpp

32 lines
738 B
C++
Raw Normal View History

2009-01-20 11:38:12 -05:00
// authTest.cpp
#include <iostream>
2009-01-29 18:38:35 -05:00
#include "client/dbclient.h"
2009-01-20 11:38:12 -05:00
using namespace mongo;
int main() {
DBClientConnection conn;
string errmsg;
if ( ! conn.connect( "127.0.0.1" , errmsg ) ) {
cout << "couldn't connect : " << errmsg << endl;
throw -11;
}
{ // clean up old data from any previous tests
conn.remove( "test.system.users" , emptyObj );
}
2009-01-29 18:38:35 -05:00
conn.insert( "test.system.users" , BSON( "user" << "eliot" << "pwd" << conn.createPasswordDigest( "bar" ) ) );
2009-01-20 11:38:12 -05:00
errmsg.clear();
bool ok = conn.auth( "test" , "eliot" , "bar" , errmsg );
if ( ! ok )
cout << errmsg << endl;
assert( ok );
assert( ! conn.auth( "test" , "eliot" , "bars" , errmsg ) );
}