]> git.proxmox.com Git - mirror_lxc.git/blame_incremental - src/tests/createtest.c
meson: Remove non-existent tests
[mirror_lxc.git] / src / tests / createtest.c
... / ...
CommitLineData
1/* liblxcapi
2 *
3 * Copyright © 2012 Serge Hallyn <serge.hallyn@ubuntu.com>.
4 * Copyright © 2012 Canonical Ltd.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#include "config.h"
21
22#include <lxc/lxccontainer.h>
23
24#include <unistd.h>
25#include <signal.h>
26#include <stdio.h>
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <stdlib.h>
30#include <errno.h>
31
32#define MYNAME "lxctest1"
33
34int main(int argc, char *argv[])
35{
36 struct lxc_container *c;
37 int ret = 1;
38
39 if ((c = lxc_container_new(MYNAME, NULL)) == NULL) {
40 fprintf(stderr, "%d: error opening lxc_container %s\n", __LINE__, MYNAME);
41 ret = 1;
42 goto out;
43 }
44
45 if (c->is_defined(c)) {
46 fprintf(stderr, "%d: %s thought it was defined\n", __LINE__, MYNAME);
47 goto out;
48 }
49
50 if (!c->set_config_item(c, "lxc.net.0.type", "veth")) {
51 fprintf(stderr, "%d: failed to set network type\n", __LINE__);
52 goto out;
53 }
54
55 c->set_config_item(c, "lxc.net.0.link", "lxcbr0");
56 c->set_config_item(c, "lxc.net.0.flags", "up");
57
58 if (!c->createl(c, "busybox", NULL, NULL, 0, NULL)) {
59 fprintf(stderr, "%d: failed to create a trusty container\n", __LINE__);
60 goto out;
61 }
62
63 if (!c->is_defined(c)) {
64 fprintf(stderr, "%d: %s thought it was not defined\n", __LINE__, MYNAME);
65 goto out;
66 }
67
68 c->clear_config(c);
69 c->load_config(c, NULL);
70 c->want_daemonize(c, true);
71
72 if (!c->startl(c, 0, NULL)) {
73 fprintf(stderr, "%d: failed to start %s\n", __LINE__, MYNAME);
74 goto out;
75 }
76
77 if (!c->stop(c)) {
78 fprintf(stderr, "%d: failed to stop %s\n", __LINE__, MYNAME);
79 goto out;
80 }
81
82 if (!c->destroy(c)) {
83 fprintf(stderr, "%d: error deleting %s\n", __LINE__, MYNAME);
84 goto out;
85 }
86
87 if (c->is_defined(c)) {
88 fprintf(stderr, "%d: %s thought it was defined\n", __LINE__, MYNAME);
89 goto out;
90 }
91
92 fprintf(stderr, "all lxc_container tests passed for %s\n", c->name);
93 ret = 0;
94
95out:
96 lxc_container_put(c);
97 exit(ret);
98}