chiark / gitweb /
util: user parse_uid() wherever applicable
[elogind.git] / src / test-login.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <sys/poll.h>
23 #include <string.h>
24
25 #include "sd-login.h"
26 #include "util.h"
27 #include "strv.h"
28
29 int main(int argc, char* argv[]) {
30         int r, k;
31         uid_t u, u2;
32         char *seat;
33         char *session;
34         char *state;
35         char *session2;
36         char *t;
37         char **seats, **sessions;
38         uid_t *uids;
39         unsigned n;
40         struct pollfd pollfd;
41         sd_login_monitor *m;
42
43         assert_se(sd_pid_get_session(0, &session) == 0);
44         printf("session = %s\n", session);
45
46         assert_se(sd_pid_get_owner_uid(0, &u2) == 0);
47         printf("user = %lu\n", (unsigned long) u2);
48
49         r = sd_uid_get_sessions(u2, false, &sessions);
50         assert_se(r >= 0);
51         assert_se(t = strv_join(sessions, ", "));
52         strv_free(sessions);
53         printf("sessions = %s\n", t);
54         free(t);
55
56         r = sd_uid_get_seats(u2, false, &seats);
57         assert_se(r >= 0);
58         assert_se(t = strv_join(seats, ", "));
59         strv_free(seats);
60         printf("seats = %s\n", t);
61         free(t);
62
63         r = sd_session_is_active(session);
64         assert_se(r >= 0);
65         printf("active = %s\n", yes_no(r));
66
67         assert_se(sd_session_get_uid(session, &u) >= 0);
68         printf("uid = %lu\n", (unsigned long) u);
69         assert_se(u == u2);
70
71         assert_se(sd_session_get_seat(session, &seat) >= 0);
72         printf("seat = %s\n", seat);
73
74         assert_se(sd_uid_get_state(u, &state) >= 0);
75         printf("state = %s\n", state);
76
77         assert_se(sd_uid_is_on_seat(u, 0, seat) > 0);
78
79         k = sd_uid_is_on_seat(u, 1, seat);
80         assert_se(k >= 0);
81         assert_se(!!r == !!r);
82
83         assert_se(sd_seat_get_active(seat, &session2, &u2) >= 0);
84         printf("session2 = %s\n", session2);
85         printf("uid2 = %lu\n", (unsigned long) u2);
86
87         assert_se(sd_seat_get_sessions(seat, &sessions, &uids, &n) >= 0);
88         assert_se(t = strv_join(sessions, ", "));
89         strv_free(sessions);
90         printf("sessions = %s\n", t);
91         free(t);
92         printf("uids =");
93         for (k = 0; k < (int) n; k++)
94                 printf(" %lu", (unsigned long) uids[k]);
95         printf("\n");
96         free(uids);
97
98         free(session);
99         free(state);
100         free(session2);
101         free(seat);
102
103         assert_se(sd_get_seats(&seats) >= 0);
104         assert_se(t = strv_join(seats, ", "));
105         strv_free(seats);
106         printf("seats = %s\n", t);
107         free(t);
108
109         assert_se(sd_get_sessions(&sessions) >= 0);
110         assert_se(t = strv_join(sessions, ", "));
111         strv_free(sessions);
112         printf("sessions = %s\n", t);
113         free(t);
114
115         r = sd_get_uids(&uids);
116         assert_se(r >= 0);
117
118         printf("uids =");
119         for (k = 0; k < r; k++)
120                 printf(" %lu", (unsigned long) uids[k]);
121         printf("\n");
122
123         free(uids);
124
125         r = sd_login_monitor_new("session", &m);
126         assert_se(r >= 0);
127
128         zero(pollfd);
129         pollfd.fd = sd_login_monitor_get_fd(m);
130         pollfd.events = POLLIN;
131
132         for (n = 0; n < 5; n++) {
133                 r = poll(&pollfd, 1, -1);
134                 assert_se(r >= 0);
135
136                 sd_login_monitor_flush(m);
137                 printf("Wake!\n");
138         }
139
140         sd_login_monitor_unref(m);
141
142         return 0;
143 }