test: Report server crash in simline tests
[libisds.git] / test / simline / basic_authentication.c
blob06af4614e269674b7e1b956a2b569b7d27af805f
1 #ifndef _POSIX_SOURCE
2 #define _POSIX_SOURCE /* For getaddrinfo(3) */
3 #endif
5 #ifndef _BSD_SOURCE
6 #define _BSD_SOURCE /* For NI_MAXHOST */
7 #endif
9 #ifndef _XOPEN_SOURCE
10 #define _XOPEN_SOURCE 600 /* For unsetenv(3) */
11 #endif
13 #include "../test.h"
14 #include "server.h"
15 #include "isds.h"
17 static const char *username = "douglas";
18 static const char *password = "42";
21 static int test_login(const isds_error error, struct isds_ctx *context,
22 const char *url, const char *username, const char *password,
23 const struct isds_pki_credentials *pki_credentials,
24 struct isds_otp *otp) {
25 isds_error err;
27 err = isds_login(context, url, username, password, pki_credentials, otp);
28 if (error != err)
29 FAIL_TEST("Wrong return code: expected=%s, returned=%s (%s)",
30 isds_strerror(error), isds_strerror(err),
31 isds_long_message(context));
33 isds_logout(context);
34 PASS_TEST;
37 int main(int argc, char **argv) {
38 int error;
39 pid_t server_process;
40 char *server_address = NULL;
41 struct isds_ctx *context = NULL;
42 char *url = NULL;
44 INIT_TEST("basic authentication");
46 if (unsetenv("http_proxy")) {
47 ABORT_UNIT("Could not remove http_proxy variable from environment\n");
49 if (isds_init()) {
50 isds_cleanup();
51 ABORT_UNIT("isds_init() failed\n");
53 context = isds_ctx_create();
54 if (!context) {
55 isds_cleanup();
56 ABORT_UNIT("isds_ctx_create() failed\n");
60 const struct service_configuration services[] = {
61 { SERVICE_DS_Dz_DummyOperation, NULL },
62 { SERVICE_END, NULL }
64 const struct arguments_basic_authentication server_arguments = {
65 .username = username,
66 .password = password,
67 .isds_deviations = 1,
68 .services = services
70 error = start_server(&server_process, &server_address,
71 server_basic_authentication, &server_arguments, NULL);
72 if (error == -1) {
73 isds_ctx_free(&context);
74 isds_cleanup();
75 ABORT_UNIT(server_error);
77 if (-1 == test_asprintf(&url, "http://%s/", server_address)) {
78 free(server_address);
79 stop_server(server_process);
80 isds_ctx_free(&context);
81 isds_cleanup();
82 ABORT_UNIT("Could not format ISDS URL");
84 free(server_address);
86 TEST("invalid credentials", test_login, IE_NOT_LOGGED_IN, context,
87 url, "7777777", "nbuusr1", NULL, NULL);
89 TEST("valid login", test_login, IE_SUCCESS, context,
90 url, username, password, NULL, NULL);
92 if (stop_server(server_process)) {
93 ABORT_UNIT(server_error);
96 free(url);
97 url = NULL;
101 error = start_server(&server_process, &server_address,
102 server_out_of_order, NULL, NULL);
103 if (error == -1) {
104 isds_ctx_free(&context);
105 isds_cleanup();
106 ABORT_UNIT(server_error);
108 if (-1 == test_asprintf(&url, "http://%s/", server_address)) {
109 free(server_address);
110 stop_server(server_process);
111 isds_ctx_free(&context);
112 isds_cleanup();
113 ABORT_UNIT("Could not format ISDS URL");
115 free(server_address);
117 TEST("log into out-of-order server", test_login, IE_SOAP, context,
118 url, username, password, NULL, NULL);
120 if (stop_server(server_process)) {
121 ABORT_UNIT(server_error);
124 free(url);
125 url = NULL;
128 isds_ctx_free(&context);
129 isds_cleanup();
130 SUM_TEST();