~ubuntu-branches/ubuntu/quantal/lxc/quantal-201208301614

« back to all changes in this revision

Viewing changes to src/tests/shutdowntest.c

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber, Stéphane Graber, Serge Hallyn
  • Date: 2012-08-22 11:50:51 UTC
  • Revision ID: package-import@ubuntu.com-20120822115051-2cmb0vjrkyadjovf
Tags: 0.8.0~rc1-4ubuntu28
[ Stéphane Graber ]
* Merge liblxc changes:
  - Build-depend on automake as autogen.sh is now run at build time.
  - Introduce new liblxc0 binary package
  - Make lxc to depend on liblxc0
  - Move library to the new binary package
  - Change libdir to be the public multi-arch path
  - Build with --disable-rpath
  - Move all the test binaries to a lxc-test-* namespace
* Merge python3-lxc changes:
  - Introduce new python3-lxc binary package
  - Update debian/rules to build the python3 code
* Update lxc-start-ephemeral:
  - Replace tabs by 4 spaces, fix indentation
  - Fix code to work properly as non-root (calling sudo where needed)

[ Serge Hallyn ]
* confile.c: support hooks in save_config().
* conf.h: Add array of hook names

Show diffs side-by-side

added added

removed removed

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