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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
#ifndef _POSIX_SOURCE
#define _POSIX_SOURCE /* For getaddrinfo(3) */
#endif
#ifndef _BSD_SOURCE
#define _BSD_SOURCE /* For NI_MAXHOST up to glibc-2.19 */
#endif
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE /* For NI_MAXHOST since glibc-2.20 */
#endif
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 600 /* For unsetenv(3) */
#endif
#include "../test.h"
#include "server.h"
#include "isds.h"
static const char *username = "douglas";
static const char *password = "42";
static const char *otp_code = "314";
static int test_login(const isds_error error,
const isds_otp_resolution resolution, struct isds_ctx *context,
const char *url, const char *username, const char *password,
const struct isds_pki_credentials *pki_credentials,
struct isds_otp *otp) {
isds_error err;
err = isds_login(context, url, username, password, pki_credentials, otp);
if (error != err)
FAIL_TEST("Wrong return code: expected=%s, returned=%s (%s)",
isds_strerror(error), isds_strerror(err),
isds_long_message(context));
if (otp != NULL && resolution != otp->resolution)
FAIL_TEST("Wrong OTP resolution: expected=%d, returned=%d (%s)",
resolution, otp->resolution, isds_long_message(context));
PASS_TEST;
}
static int test_logout(const isds_error error, struct isds_ctx *context) {
isds_error err;
err = isds_logout(context);
if (error != err)
FAIL_TEST("Wrong return code: expected=%s, returned=%s (%s)",
isds_strerror(error), isds_strerror(err),
isds_long_message(context));
PASS_TEST;
}
static int test_ping(const isds_error error, struct isds_ctx *context) {
isds_error err;
err = isds_ping(context);
if (error != err)
FAIL_TEST("Wrong return code: expected=%s, returned=%s (%s)",
isds_strerror(error), isds_strerror(err),
isds_long_message(context));
PASS_TEST;
}
int main(int argc, char **argv) {
int error;
pid_t server_process;
struct isds_ctx *context = NULL;
char *url = NULL;
struct isds_otp otp_credentials = {
.method = OTP_TIME
};
INIT_TEST("TOTP authentication");
if (unsetenv("http_proxy")) {
ABORT_UNIT("Could not remove http_proxy variable from environment\n");
}
if (isds_init()) {
isds_cleanup();
ABORT_UNIT("isds_init() failed\n");
}
context = isds_ctx_create();
if (!context) {
isds_cleanup();
ABORT_UNIT("isds_ctx_create() failed\n");
}
{
const struct service_configuration services[] = {
{ SERVICE_DS_Dz_DummyOperation, NULL },
{ SERVICE_END, NULL }
};
const struct arguments_otp_authentication server_arguments = {
.method = AUTH_OTP_TIME,
.username = username,
.password = password,
.otp = (char *) otp_code,
.isds_deviations = 1,
.services = services
};
error = start_server(&server_process, &url,
server_otp_authentication, &server_arguments, NULL);
if (error == -1) {
isds_ctx_free(&context);
isds_cleanup();
ABORT_UNIT(server_error);
}
otp_credentials.otp_code = NULL;
TEST("First phase with invalid password", test_login,
IE_NOT_LOGGED_IN, OTP_RESOLUTION_BAD_AUTHENTICATION, context,
url, "7777777", "nbuusr1", NULL, &otp_credentials);
isds_logout(context);
otp_credentials.otp_code = NULL;
TEST("First phase with valid password", test_login,
IE_PARTIAL_SUCCESS, OTP_RESOLUTION_TOTP_SENT, context,
url, username, password, NULL, &otp_credentials);
isds_logout(context);
otp_credentials.otp_code = (char *) otp_code;
TEST("Second phase with invalid password", test_login,
IE_NOT_LOGGED_IN, OTP_RESOLUTION_BAD_AUTHENTICATION, context,
url, "7777777", "nbuusr1", NULL, &otp_credentials);
isds_logout(context);
otp_credentials.otp_code = "666";
TEST("Second phase with valid password but invalid OTP code", test_login,
IE_NOT_LOGGED_IN, OTP_RESOLUTION_BAD_AUTHENTICATION, context,
url, username, password, NULL, &otp_credentials);
isds_logout(context);
otp_credentials.otp_code = (char *) otp_code;
TEST("Second phase with valid password and valid OTP code", test_login,
IE_SUCCESS, OTP_RESOLUTION_SUCCESS, context,
url, username, password, NULL, &otp_credentials);
TEST("Ping after succesfull OTP log-in", test_ping,
IE_SUCCESS, context);
TEST("Log-out after successfull log-in", test_logout,
IE_SUCCESS, context);
TEST("Ping after log-out after succesfull OTP log-in", test_ping,
IE_CONNECTION_CLOSED, context);
if (stop_server(server_process)) {
ABORT_UNIT(server_error);
}
free(url);
url = NULL;
}
{
error = start_server(&server_process, &url,
server_out_of_order, NULL, NULL);
if (error == -1) {
isds_ctx_free(&context);
isds_cleanup();
ABORT_UNIT(server_error);
}
otp_credentials.otp_code = "666";
TEST("log into out-of-order server", test_login,
IE_SOAP, OTP_RESOLUTION_UNKNOWN, context,
url, username, password, NULL, &otp_credentials);
isds_logout(context);
if (stop_server(server_process)) {
ABORT_UNIT(server_error);
}
free(url);
url = NULL;
}
isds_ctx_free(&context);
isds_cleanup();
SUM_TEST();
}
|