📄 05_security-acm_dom_res_conf.py
字号:
#!/usr/bin/python# Copyright (C) International Business Machines Corp., 2006# Author: Stefan Berger <stefanb@us.ibm.com>## A test that tries to start a domain using a resource that it is# not supposed to be able to use due to its labelingfrom XmTestLib import *from acm_utils import *import commandsimport ostestlabel1 = "blue"resource1 = "phy:ram0"config = {"access_control":"policy=%s,label=%s" % (testpolicy,testlabel1), "disk" :"%s,hda1,w" % (resource1)}domain1 = XmTestDomain(name="domain-%s" % testlabel1, extraConfig=config)ACMLabelResource(resource1,"red")try: domain1.start(noConsole=True) # Should never get here FAIL("Could start domain with resource that it is not supposed to access.")except DomainError, e: #That's exactly what we want to have in this case dummy = 0# Verify via dry-runstatus, output = traceCommand("xm dry-run /tmp/xm-test.conf | " "grep -v \"Dry Run\"")if not re.search("%s: DENIED" %resource1, output): FAIL("'xm dry-run' did not show expected result that operation was NOT " "permitted: \n%s" % output)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -