本文整理汇总了Python中EDConfiguration.EDConfiguration.getOptionItem方法的典型用法代码示例。如果您正苦于以下问题:Python EDConfiguration.getOptionItem方法的具体用法?Python EDConfiguration.getOptionItem怎么用?Python EDConfiguration.getOptionItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDConfiguration.EDConfiguration
的用法示例。
在下文中一共展示了EDConfiguration.getOptionItem方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: EDTestCaseEDConfiguration
# 需要导入模块: from EDConfiguration import EDConfiguration [as 别名]
# 或者: from EDConfiguration.EDConfiguration import getOptionItem [as 别名]
class EDTestCaseEDConfiguration(EDTestCase):
def __init__(self, _strTestName=None):
EDTestCase.__init__(self, "EDTestCaseEDConfiguration")
self.__edConfiguration = None
strKernelDataHome = EDUtilsTest.getPluginTestDataDirectory(self.getClassName())
strDataDir = "EDConfiguration"
self.___strDataPath = EDUtilsPath.mergePath(strKernelDataHome, strDataDir)
def preProcess(self):
"""
Constructs the utilitary EDConfiguration class
"""
#Loads py module directly using xml configuration file
self.___edConfiguration = EDConfiguration(os.path.join(self.___strDataPath, "XSConfiguration.xml"))
self.___edConfiguration.load()
def testGetPluginList(self):
"""
Testing the retrieved XSPluginList from configuration
"""
edPluginList = self.___edConfiguration.getPluginList()
EDAssert.equal(2, self.___edConfiguration.getPluginListSize())
def testGetPluginItem(self):
"""
Testing Plugin indexingMosflm Configuration
"""
xsPluginItem = self.___edConfiguration.getPluginItem("indexingMosflm")
EDAssert.equal("indexingMosflm", xsPluginItem.getName())
paramList = xsPluginItem.getXSParamList()
paramItems = paramList.getXSParamItem()
EDAssert.equal("workingDir", paramItems[0].getName())
EDAssert.equal("/path/to/working/dir", paramItems[0].getValue())
EDAssert.equal("number", paramItems[1].getName())
EDAssert.equal("3", paramItems[1].getValue())
def testGetPluginItemError(self):
"""
Testing the retrieval of an absent plugin
"""
EDAssert.equal(None, self.___edConfiguration.getPluginItem("toto"))
def testGetParamItem(self):
"""
Testing the XSParamItem inside an XSPluginItem
"""
xsPluginItem = self.___edConfiguration.getPluginItem("indexingMosflm")
xsParamItem = self.___edConfiguration.getParamItem(xsPluginItem, "workingDir")
EDAssert.equal("workingDir", xsParamItem.getName())
def testGetParamValue(self):
"""
Testing the XSParamItem Value convertion from string to different formats
"""
xsPluginItem = self.___edConfiguration.getPluginItem("indexingMosflm")
EDAssert.equal("/path/to/working/dir", self.___edConfiguration.getStringParamValue(xsPluginItem, "workingDir"))
EDAssert.equal("/path/to/working/dir", EDConfiguration.getStringParamValue(xsPluginItem, "workingDir"))
EDAssert.equal(3, self.___edConfiguration.getIntegerParamValue(xsPluginItem, "number"))
EDAssert.equal(3, EDConfiguration.getIntegerParamValue(xsPluginItem, "number"))
def testGetOptionItem(self):
"""
Testing the XSOptionItem inside an XSPluginItem
"""
xsPluginItem = self.___edConfiguration.getPluginItem("indexing")
xsOptionItemMosflm = self.___edConfiguration.getOptionItem(xsPluginItem, "indexingMosflm")
EDAssert.equal(True, xsOptionItemMosflm.getEnabled())
xsOptionItemXds = self.___edConfiguration.getOptionItem(xsPluginItem, "indexingXds")
EDAssert.equal(False, xsOptionItemXds.getEnabled())
xsOptionItemLabelit = self.___edConfiguration.getOptionItem(xsPluginItem, "indexingLabelit")
EDAssert.equal(False, xsOptionItemLabelit.getEnabled())
def process(self):
self.addTestMethod(self.testGetPluginList)
self.addTestMethod(self.testGetPluginItem)
self.addTestMethod(self.testGetPluginItemError)
self.addTestMethod(self.testGetParamItem)
self.addTestMethod(self.testGetParamValue)
self.addTestMethod(self.testGetOptionItem)