Ejemplo n.º 1
0
    def test_search(self):
        config = Config()

        StopWatch.start("search")
        r = config.search("cloudmesh.cloud.*.cm.active", True)
        StopWatch.stop("search")
        pprint(r)
Ejemplo n.º 2
0
    def test_search(self):
        config = Config()

        Benchmark.Start()
        r = config.search("cloudmesh.cloud.*.cm.active", True)
        Benchmark.Stop()
        pprint(r)
Ejemplo n.º 3
0
    def test_search_openstack(self):
        HEADING()
        config = Config()

        Benchmark.Start()
        r = config.search("cloudmesh.cloud.*.cm.kind", "openstack")
        Benchmark.Stop()
        pprint(r)
Ejemplo n.º 4
0
    def test_search_active_all(self):
        HEADING()
        config = Config()

        Benchmark.Start()
        r = config.search("cloudmesh.cloud.*.cm.active")
        Benchmark.Stop()
        pprint(r)