Lines Matching full:topology
29 Gets a unique topology id based on the pytest test_id.
211 self.alias = vnet_alias # reference in the test topology
330 topo_map: Dict # self.TOPOLOGY
335 TOPOLOGY = {} variable in VnetTestTemplate
406 """Creates jails & interfaces for the provided topology"""
424 print("============= TEST TOPOLOGY =============")
456 """Sets up all the required topology and handlers for the given test"""
462 topology = self.TOPOLOGY
464 obj_map = self.setup_topology(topology, topology_id)
532 topology = copy.deepcopy(
539 topology["if1"]["prefixes6"].append((prefix,))
541 topology["if1"]["prefixes4"].append((prefix,))
542 return topology
545 if not getattr(self, "TOPOLOGY", None):
546 self.TOPOLOGY = self._setup_default_topology()
548 names = self.TOPOLOGY.keys()