当前位置: 首页>>代码示例>>Python>>正文


Python GrinderExecutor.resource_files方法代码示例

本文整理汇总了Python中bzt.modules.grinder.GrinderExecutor.resource_files方法的典型用法代码示例。如果您正苦于以下问题:Python GrinderExecutor.resource_files方法的具体用法?Python GrinderExecutor.resource_files怎么用?Python GrinderExecutor.resource_files使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在bzt.modules.grinder.GrinderExecutor的用法示例。


在下文中一共展示了GrinderExecutor.resource_files方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_resource_files_collection_noscript

# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import resource_files [as 别名]
 def test_resource_files_collection_noscript(self):
     obj = GrinderExecutor()
     obj.engine = EngineEmul()
     obj.execution.merge({"scenario": {"properties-file": "tests/grinder/grinder.properties"}})
     res_files = obj.resource_files()
     artifacts = os.listdir(obj.engine.artifacts_dir)
     self.assertEqual(len(res_files), 2)
     self.assertEqual(len(artifacts), 2)
开发者ID:Yingmin-Li,项目名称:taurus,代码行数:10,代码来源:test_GrinderExecutor.py

示例2: test_resource_files_collection_remote

# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import resource_files [as 别名]
 def test_resource_files_collection_remote(self):
     obj = GrinderExecutor()
     obj.engine = EngineEmul()
     obj.execution.merge({"scenario": {"script": __dir__() + "/../grinder/helloworld.py",
                                       "properties-file": __dir__() + "/../grinder/grinder.properties"}})
     res_files = obj.resource_files()
     artifacts = os.listdir(obj.engine.artifacts_dir)
     self.assertEqual(len(res_files), 2)
     self.assertEqual(len(artifacts), 2)
开发者ID:vasischev,项目名称:taurus,代码行数:11,代码来源:test_GrinderExecutor.py

示例3: test_resource_files_collection_invalid

# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import resource_files [as 别名]
    def test_resource_files_collection_invalid(self):
        obj = GrinderExecutor()
        obj.engine = EngineEmul()
        obj.execution.merge({"scenario": {"script": "tests/grinder/helloworld.py",
                                          "properties-file": "tests/grinder/grinder_invalid.properties"}})
        res_files = obj.resource_files()
        artifacts = os.listdir(obj.engine.artifacts_dir)
        self.assertEqual(len(res_files), 2)
        self.assertEqual(len(artifacts), 2)

        self.assertIn("helloworld.py", open(os.path.join(obj.engine.artifacts_dir,
                                                         "grinder_invalid.properties")).read())
开发者ID:Yingmin-Li,项目名称:taurus,代码行数:14,代码来源:test_GrinderExecutor.py

示例4: test_resource_files_collection_basic

# 需要导入模块: from bzt.modules.grinder import GrinderExecutor [as 别名]
# 或者: from bzt.modules.grinder.GrinderExecutor import resource_files [as 别名]
 def test_resource_files_collection_basic(self):
     obj = GrinderExecutor()
     obj.engine = EngineEmul()
     obj.execution.merge({"scenario": {"script": __dir__() + "/../grinder/helloworld.py"}})
     res_files = obj.resource_files()
     self.assertEqual(len(res_files), 1)
开发者ID:PurdyForks,项目名称:taurus,代码行数:8,代码来源:test_Grinder.py


注:本文中的bzt.modules.grinder.GrinderExecutor.resource_files方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。