本文整理匯總了Python中ooinstall.oo_config.OOConfig.calc_missing_facts方法的典型用法代碼示例。如果您正苦於以下問題:Python OOConfig.calc_missing_facts方法的具體用法?Python OOConfig.calc_missing_facts怎麽用?Python OOConfig.calc_missing_facts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ooinstall.oo_config.OOConfig
的用法示例。
在下文中一共展示了OOConfig.calc_missing_facts方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_load_host_incomplete_facts
# 需要導入模塊: from ooinstall.oo_config import OOConfig [as 別名]
# 或者: from ooinstall.oo_config.OOConfig import calc_missing_facts [as 別名]
def test_load_host_incomplete_facts(self):
cfg_path = self.write_config(os.path.join(self.work_dir, "ooinstall.conf"), CONFIG_INCOMPLETE_FACTS)
ooconfig = OOConfig(cfg_path)
missing_host_facts = ooconfig.calc_missing_facts()
self.assertEquals(2, len(missing_host_facts))
self.assertEquals(1, len(missing_host_facts["10.0.0.2"]))
self.assertEquals(3, len(missing_host_facts["10.0.0.3"]))
示例2: test_load_complete_facts
# 需要導入模塊: from ooinstall.oo_config import OOConfig [as 別名]
# 或者: from ooinstall.oo_config.OOConfig import calc_missing_facts [as 別名]
def test_load_complete_facts(self):
cfg_path = self.write_config(os.path.join(self.work_dir,
'ooinstall.conf'), SAMPLE_CONFIG)
ooconfig = OOConfig(cfg_path)
missing_host_facts = ooconfig.calc_missing_facts()
self.assertEquals(0, len(missing_host_facts))