Source code for cfme.networks.cloud_network

from navmazing import NavigateToSibling, NavigateToAttribute

from cfme.common import WidgetasticTaggable
from cfme.exceptions import ItemNotFound
from cfme.networks.views import CloudNetworkDetailsView, CloudNetworkView
from utils import providers, version
from utils.appliance import Navigatable
from utils.appliance.implementations.ui import navigator, CFMENavigateStep, navigate_to


[docs]class CloudNetworkCollection(Navigatable): """Collection object for Cloud Network object""" def __init__(self, appliance=None, parent_provider=None): Navigatable.__init__(self, appliance=appliance) self.parent = parent_provider
[docs] def instantiate(self, name): return CloudNetwork(name=name, appliance=self.appliance, collection=self)
[docs] def all(self): if self.parent: view = navigate_to(self.parent, 'CloudNetworks') else: view = navigate_to(self, 'All') list_networks_obj = view.entities.get_all(surf_pages=True) return [self.instantiate(name=n.name) for n in list_networks_obj]
[docs]class CloudNetwork(WidgetasticTaggable, Navigatable): """Class representing cloud networks in cfme database""" in_version = ('5.8', version.LATEST) category = 'networks' page_name = 'cloud_network' string_name = 'CloudNetwork' quad_name = None db_types = ['CloudNetwork'] def __init__(self, name, provider=None, collection=None, appliance=None): self.collection = collection or CloudNetworkCollection(appliance=appliance) Navigatable.__init__(self, appliance=self.collection.appliance) self.name = name self.provider = provider @property def parent_provider(self): """ Return object of parent cloud provider """ view = navigate_to(self, 'Details') provider_name = view.entities.relationships.get_text_of('Parent ems cloud') return providers.get_crud_by_name(provider_name) @property def network_type(self): """ Return type of network """ view = navigate_to(self, 'Details') return view.entities.properties.get_text_of('Type') @property def network_provider(self): """ Returns network provider """ from cfme.networks.provider import NetworkProviderCollection # cloud network collection contains reference to provider if self.collection.parent: return self.collection.parent # otherwise get provider name from ui view = navigate_to(self, 'Details') try: prov_name = view.entities.relationships.get_text_of("Network Manager") collection = NetworkProviderCollection(appliance=self.appliance) return collection.instantiate(name=prov_name) except ItemNotFound: # BZ 1480577 return None
@navigator.register(CloudNetworkCollection, 'All')
[docs]class All(CFMENavigateStep): VIEW = CloudNetworkView prerequisite = NavigateToAttribute('appliance.server', 'LoggedIn')
[docs] def step(self): self.prerequisite_view.navigation.select('Networks', 'Networks')
@navigator.register(CloudNetwork, 'Details')
[docs]class Details(CFMENavigateStep): prerequisite = NavigateToAttribute('collection', 'All') VIEW = CloudNetworkDetailsView
[docs] def step(self): self.prerequisite_view.entities.get_entity(by_name=self.obj.name).click()
@navigator.register(CloudNetwork, 'EditTags')
[docs]class EditTags(CFMENavigateStep): prerequisite = NavigateToSibling('Details')
[docs] def step(self): self.prerequisite_view.toolbar.policy.item_select('Edit Tags')