Add VT test
[platform/upstream/kmscon.git] / tests / test_vt.c
1 /*
2  * test_console - Test VT Layer
3  *
4  * Copyright (c) 2011 David Herrmann <dh.herrmann@googlemail.com>
5  * Copyright (c) 2011 University of Tuebingen
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining
8  * a copy of this software and associated documentation files
9  * (the "Software"), to deal in the Software without restriction, including
10  * without limitation the rights to use, copy, modify, merge, publish,
11  * distribute, sublicense, and/or sell copies of the Software, and to
12  * permit persons to whom the Software is furnished to do so, subject to
13  * the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included
16  * in all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25  */
26
27 /*
28  * Test VT Layer
29  * This opens a new VT and prints some text on it. You can then change the VT
30  * and change back. This is only to test the VT subsystem and event engine.
31  */
32
33 #include <errno.h>
34 #include <signal.h>
35 #include <stdbool.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <unistd.h>
39
40 #include "eloop.h"
41 #include "log.h"
42 #include "vt.h"
43
44 static bool terminate;
45
46 static void sig_term(struct kmscon_signal *sig, int signum, void *data)
47 {
48         terminate = true;
49 }
50
51 int main(int argc, char **argv)
52 {
53         int ret;
54         struct kmscon_eloop *loop;
55         struct kmscon_vt *vt;
56         struct kmscon_signal *sig;
57
58         ret = kmscon_eloop_new(&loop);
59         if (ret) {
60                 log_err("Cannot create eloop\n");
61                 goto err_out;
62         }
63
64         ret = kmscon_eloop_new_signal(loop, &sig, SIGINT, sig_term, NULL);
65         if (ret) {
66                 log_err("Cannot add signal\n");
67                 goto err_loop;
68         }
69
70         ret = kmscon_vt_new(&vt, NULL, NULL);
71         if (ret) {
72                 log_err("Cannot create vt\n");
73                 goto err_sig;
74         }
75
76         ret = kmscon_vt_open(vt, KMSCON_VT_NEW);
77         if (ret) {
78                 log_err("Cannot open VT\n");
79                 goto err_vt;
80         }
81
82         ret = kmscon_vt_connect_eloop(vt, loop);
83         if (ret) {
84                 log_err("Cannot connect VT\n");
85                 goto err_vt;
86         }
87
88         while (!terminate) {
89                 ret = kmscon_eloop_dispatch(loop, -1);
90                 if (ret) {
91                         log_err("Dispatcher failed\n");
92                         break;
93                 }
94         }
95
96 err_vt:
97         kmscon_vt_unref(vt);
98 err_sig:
99         kmscon_eloop_rm_signal(sig);
100 err_loop:
101         kmscon_eloop_unref(loop);
102 err_out:
103         return abs(ret);
104 }