]> git.proxmox.com Git - mirror_lxc.git/blame - src/tests/createtest.c
Merge the liblxc API work by Serge Hallyn.
[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 */
19#include "../lxc/lxccontainer.h"
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
36 if ((c = lxc_container_new(MYNAME)) == NULL) {
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");
53 if (!c->createl(c, "ubuntu", "-r", "lucid", NULL)) {
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
63 c->load_config(c, NULL);
64 c->want_daemonize(c);
65 if (!c->startl(c, 0, NULL)) {
66 fprintf(stderr, "%d: failed to start %s\n", __LINE__, MYNAME);
67 goto out;
68 }
69 fprintf(stderr, "%d: %s started, you have 60 seconds to test a console\n", __LINE__, MYNAME);
70 sleep(60); // wait a minute to let user connect to console
71
72 if (!c->stop(c)) {
73 fprintf(stderr, "%d: failed to stop %s\n", __LINE__, MYNAME);
74 goto out;
75 }
76
77 if (!c->destroy(c)) {
78 fprintf(stderr, "%d: error deleting %s\n", __LINE__, MYNAME);
79 goto out;
80 }
81
82 if (c->is_defined(c)) {
83 fprintf(stderr, "%d: %s thought it was defined\n", __LINE__, MYNAME);
84 goto out;
85 }
86
87 fprintf(stderr, "all lxc_container tests passed for %s\n", c->name);
88 ret = 0;
89out:
90 lxc_container_put(c);
91 exit(ret);
92}