1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
#include "test.h"
#include "mongo.h"
#include "config.h"
#include <errno.h>
#include <sys/socket.h>
#include "libmongo-private.h"
void
test_mongo_sync_cmd_authenticate_net_secondary (void)
{
mongo_sync_connection *c;
skip (!config.secondary_host, 4,
"Secondary server not configured");
c = mongo_sync_connect (config.secondary_host, config.secondary_port, TRUE);
mongo_sync_conn_set_auto_reconnect (c, TRUE);
mongo_sync_cmd_is_master (c);
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "s3kr1+") == TRUE,
"mongo_sync_cmd_authenticate() works");
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "bad_pw") == FALSE,
"mongo_sync_cmd_authenticate() should fail with a bad password");
ok (mongo_sync_cmd_authenticate (c, config.db, "xxx", "s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() should fail with a bad username");
shutdown (c->super.fd, SHUT_RDWR);
sleep (3);
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "s3kr1+") == TRUE,
"mongo_sync_cmd_authenticate() automatically reconnects");
mongo_sync_disconnect (c);
endskip;
}
void
test_mongo_sync_cmd_authenticate_net (void)
{
mongo_sync_connection *c;
begin_network_tests (8);
c = mongo_sync_connect (config.primary_host, config.primary_port, TRUE);
mongo_sync_conn_set_auto_reconnect (c, TRUE);
mongo_sync_cmd_user_add (c, config.db, "test", "s3kr1+");
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "s3kr1+") == TRUE,
"mongo_sync_cmd_authenticate() works");
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "bad_pw") == FALSE,
"mongo_sync_cmd_authenticate() should fail with a bad password");
ok (mongo_sync_cmd_authenticate (c, config.db, "xxx", "s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() should fail with a bad username");
shutdown (c->super.fd, SHUT_RDWR);
sleep (3);
ok (mongo_sync_cmd_authenticate (c, config.db, "test", "s3kr1+") == TRUE,
"mongo_sync_cmd_authenticate() automatically reconnects");
mongo_sync_disconnect (c);
test_mongo_sync_cmd_authenticate_net_secondary ();
end_network_tests ();
}
void
test_mongo_sync_cmd_authenticate (void)
{
mongo_sync_connection *c;
c = test_make_fake_sync_conn (-1, FALSE);
errno = 0;
ok (mongo_sync_cmd_authenticate (NULL, "test", "test",
"s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() fails with a NULL connection");
cmp_ok (errno, "==", ENOTCONN,
"errno is set to ENOTCONN");
errno = 0;
ok (mongo_sync_cmd_authenticate (c, NULL, "test", "s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() fails with a NULL db");
cmp_ok (errno, "==", EINVAL,
"errno is set to EINVAL");
errno = 0;
ok (mongo_sync_cmd_authenticate (c, "test", NULL, "s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() fails with a NULL user");
cmp_ok (errno, "==", EINVAL,
"errno is set to EINVAL");
errno = 0;
ok (mongo_sync_cmd_authenticate (c, "test", "test", NULL) == FALSE,
"mongo_sync_cmd_authenticate() fails with a NULL password");
cmp_ok (errno, "==", EINVAL,
"errno is set to EINVAL");
ok (mongo_sync_cmd_authenticate (c, "test", "test",
"s3kr1+") == FALSE,
"mongo_sync_cmd_authenticate() fails with a bogus FD");
mongo_sync_disconnect (c);
test_mongo_sync_cmd_authenticate_net ();
}
RUN_TEST (17, mongo_sync_cmd_authenticate);
|