Best Python code snippet using autotest_python
glance.py
Source:glance.py
...21 elif kind == 'local':22 self._storage_tags = LocalStorage(config)23 else:24 raise ValueError('Not supported storage \'{0}\''.format(kind))25 def _resolve_class_path(self, method_name, *args, **kwargs):26 path = ''27 if 'path' in kwargs:28 path = kwargs['path']29 elif len(args) > 0 and isinstance(args[0], basestring):30 path = args[0]31 if path.startswith(Storage.images):32 obj = self._storage_layers33 elif path.startswith(Storage.repositories):34 obj = self._storage_tags35 else:36 obj = self._storage_base37 if not hasattr(obj, method_name):38 return39 return getattr(obj, method_name)40 def __getattr__(self, name):41 def dispatcher(*args, **kwargs):42 attr = self._resolve_class_path(name, *args, **kwargs)43 if not attr:44 raise ValueError('Cannot dispath method '45 '"{0}" args: {1}, {2}'.format(name,46 args,47 kwargs))48 if callable(attr):49 return attr(*args, **kwargs)50 return attr51 return dispatcher52class GlanceStorageLayers(Storage):53 """This class stores the image layers into OpenStack Glance.54 However tags are still stored on other filesystem-like stores.55 """56 disk_format = 'raw'...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!