05_security-acm_dom_res_conf.py

来自「xen虚拟机源代码安装包」· Python 代码 · 共 39 行

PY
39
字号
#!/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 + =
减小字号Ctrl + -
显示快捷键?