aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/security-acm/03_security-acm_dom_conflict.py
blob: 4aef380de5710a25857aae17158c70e672992fe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2006
# Author: Stefan Berger <stefanb@us.ibm.com>
#
# A test that exercises the conflict set of the chinese wall policy.
# Start a first domain and then a second one. The second one is
# expected NOT to be starteable.

from XmTestLib import *
from acm_utils import *
import commands
import os

testlabel1 = "blue"
testlabel2 = "red"

config = {"access_control":"policy=%s,label=%s" % (testpolicy,testlabel1)}

domain1 = XmTestDomain(name="domain-%s" % testlabel1,
                       extraConfig=config)

try:
    domain1.start(noConsole=True)
except DomainError, e:
    if verbose:
        print e.extra
    FAIL("Unable to start 1st labeled test domain")

# Verify with xm dry-run
status, output = traceCommand("xm dry-run /tmp/xm-test.conf | "
                              "grep -v \"Dry Run\"")
if status != 0:
    FAIL("'xm dry-run' failed")
if not re.search("PERMITTED", output):
    FAIL("'xm dry-run' did not succeed.")

config = {"access_control":"policy=%s,label=%s" % (testpolicy,testlabel2)}

domain2 = XmTestDomain(name="domain-%s" % testlabel2,
                       extraConfig=config)

try:
    domain2.start(noConsole=True)
    # Should never get here!
    FAIL("Could start a domain in a conflict set - "
         "this should not be possible")
except DomainError, e:
    #This is exactly what we want in this case
    status = 0

# Verify with xm dry-run
status, output = traceCommand("xm dry-run /tmp/xm-test.conf | "
                              "grep -v \"Dry Run\"")
if status != 0:
    FAIL("'xm dry-run' failed.")
if not re.search("PERMITTED", output):
    FAIL("'xm dry-run' did not show that operation was permitted.")

domain1.destroy()