]> git.proxmox.com Git - mirror_lxc.git/blame - src/tests/createtest.c
tests: Fix createtest
[mirror_lxc.git] / src / tests / createtest.c
CommitLineData
72d0e1cb
SG
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 */
948955a2 19#include <lxc/lxccontainer.h>
72d0e1cb
SG
20
21#include <unistd.h>
22#include <signal.h>
23#include <stdio.h>
24#include <sys/types.h>
25#include <sys/wait.h>
26#include <stdlib.h>
27#include <errno.h>
28
29#define MYNAME "lxctest1"
30
31int main(int argc, char *argv[])
32{
33 struct lxc_container *c;
34 int ret = 1;
35
afeecbba 36 if ((c = lxc_container_new(MYNAME, NULL)) == NULL) {
72d0e1cb
SG
37 fprintf(stderr, "%d: error opening lxc_container %s\n", __LINE__, MYNAME);
38 ret = 1;
39 goto out;
40 }
41
42 if (c->is_defined(c)) {
43 fprintf(stderr, "%d: %s thought it was defined\n", __LINE__, MYNAME);
44 goto out;
45 }
46
47 if (!c->set_config_item(c, "lxc.network.type", "veth")) {
48 fprintf(stderr, "%d: failed to set network type\n", __LINE__);
49 goto out;
50 }
51 c->set_config_item(c, "lxc.network.link", "lxcbr0");
52 c->set_config_item(c, "lxc.network.flags", "up");
dc23c1c8 53 if (!c->createl(c, "ubuntu", NULL, NULL, 0, "-r", "lucid", NULL)) {
72d0e1cb
SG
54 fprintf(stderr, "%d: failed to create a lucid container\n", __LINE__);
55 goto out;
56 }
57
58 if (!c->is_defined(c)) {
59 fprintf(stderr, "%d: %s thought it was not defined\n", __LINE__, MYNAME);
60 goto out;
61 }
62
80a873c2 63 c->clear_config(c);
72d0e1cb 64 c->load_config(c, NULL);
540f932a 65 c->want_daemonize(c, true);
72d0e1cb
SG
66 if (!c->startl(c, 0, NULL)) {
67 fprintf(stderr, "%d: failed to start %s\n", __LINE__, MYNAME);
68 goto out;
69 }
72d0e1cb
SG
70
71 if (!c->stop(c)) {
72 fprintf(stderr, "%d: failed to stop %s\n", __LINE__, MYNAME);
73 goto out;
74 }
75
76 if (!c->destroy(c)) {
77 fprintf(stderr, "%d: error deleting %s\n", __LINE__, MYNAME);
78 goto out;
79 }
80
81 if (c->is_defined(c)) {
82 fprintf(stderr, "%d: %s thought it was defined\n", __LINE__, MYNAME);
83 goto out;
84 }
85
86 fprintf(stderr, "all lxc_container tests passed for %s\n", c->name);
87 ret = 0;
88out:
89 lxc_container_put(c);
90 exit(ret);
91}