Co-Authored-By: Hongbin Lu <hongbin.lu@huawei.com> Change-Id: Ia863c1af602ac2b83ff7e20352323fa0529dfc43 Closes-Bug: #1694137
		
			
				
	
	
		
			138 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 | 
						|
#    not use this file except in compliance with the License. You may obtain
 | 
						|
#    a copy of the License at
 | 
						|
#
 | 
						|
#         http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
#    Unless required by applicable law or agreed to in writing, software
 | 
						|
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 | 
						|
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 | 
						|
#    License for the specific language governing permissions and limitations
 | 
						|
#    under the License.
 | 
						|
 | 
						|
import json
 | 
						|
 | 
						|
from tempest.lib.common.utils import data_utils
 | 
						|
from tempest.lib import exceptions
 | 
						|
 | 
						|
from zunclient.tests.functional import base
 | 
						|
 | 
						|
 | 
						|
class TestCase(base.FunctionalTestBase):
 | 
						|
 | 
						|
    def openstack(self, *args, **kwargs):
 | 
						|
        return self._zun_osc(*args, **kwargs)
 | 
						|
 | 
						|
    def get_opts(self, fields=None, output_format='json'):
 | 
						|
        """Get options for OSC output fields format.
 | 
						|
 | 
						|
        :param List fields: List of fields to get
 | 
						|
        :param String output_format: Select output format
 | 
						|
        :return: String of formatted options
 | 
						|
        """
 | 
						|
        if not fields:
 | 
						|
            return ' -f {0}'.format(output_format)
 | 
						|
        return ' -f {0} {1}'.format(output_format,
 | 
						|
                                    ' '.join(['-c ' + it for it in fields]))
 | 
						|
 | 
						|
    def container_create(self, image='cirros', name=None, params=''):
 | 
						|
        """Create container and add cleanup.
 | 
						|
 | 
						|
        :param String image: Image for a new container
 | 
						|
        :param String name: Name for a new container
 | 
						|
        :param String params: Additional args and kwargs
 | 
						|
        :return: JSON object of created container
 | 
						|
        """
 | 
						|
        if not name:
 | 
						|
            name = data_utils.rand_name('container')
 | 
						|
 | 
						|
        opts = self.get_opts()
 | 
						|
        output = self.openstack('appcontainer create {0}'
 | 
						|
                                ' --name {1} {2} {3}'
 | 
						|
                                .format(opts, name, image, params))
 | 
						|
        container = json.loads(output)
 | 
						|
 | 
						|
        if not output:
 | 
						|
            self.fail('Container has not been created!')
 | 
						|
        return container
 | 
						|
 | 
						|
    def container_run(self, image='cirros', name=None, params='sleep 100000'):
 | 
						|
        """Run container and add cleanup.
 | 
						|
 | 
						|
        :param String image: Image for a new container
 | 
						|
        :param String name: Name for a new container
 | 
						|
        :param String params: Additional args and kwargs
 | 
						|
        :return: JSON object of created container
 | 
						|
        """
 | 
						|
        if not name:
 | 
						|
            name = data_utils.rand_name('container')
 | 
						|
 | 
						|
        opts = self.get_opts()
 | 
						|
        output = self.openstack('appcontainer run {0}'
 | 
						|
                                ' --name {1} {2} {3}'
 | 
						|
                                .format(opts, name, image, params))
 | 
						|
        container = json.loads(output)
 | 
						|
 | 
						|
        if not output:
 | 
						|
            self.fail('Container has not run!')
 | 
						|
        return container
 | 
						|
 | 
						|
    def container_delete(self, identifier, ignore_exceptions=False):
 | 
						|
        """Try to delete container by name or UUID.
 | 
						|
 | 
						|
        :param String identifier: Name or UUID of the container
 | 
						|
        :param Bool ignore_exceptions: Ignore exception (needed for cleanUp)
 | 
						|
        :return: raw values output
 | 
						|
        :raise: CommandFailed exception when command fails
 | 
						|
                to delete a container
 | 
						|
        """
 | 
						|
        try:
 | 
						|
            return self.openstack('appcontainer delete {0}'
 | 
						|
                                  .format(identifier))
 | 
						|
        except exceptions.CommandFailed:
 | 
						|
            if not ignore_exceptions:
 | 
						|
                raise
 | 
						|
 | 
						|
    def container_list(self, fields=None, params=''):
 | 
						|
        """List Container.
 | 
						|
 | 
						|
        :param List fields: List of fields to show
 | 
						|
        :param String params: Additional kwargs
 | 
						|
        :return: list of JSON container objects
 | 
						|
        """
 | 
						|
        opts = self.get_opts(fields=fields)
 | 
						|
        output = self.openstack('appcontainer list {0} {1}'
 | 
						|
                                .format(opts, params))
 | 
						|
        return json.loads(output)
 | 
						|
 | 
						|
    def container_show(self, identifier, fields=None, params=''):
 | 
						|
        """Show specified container.
 | 
						|
 | 
						|
        :param String identifier: Name or UUID of the container
 | 
						|
        :param List fields: List of fields to show
 | 
						|
        :param List params: Additional kwargs
 | 
						|
        :return: JSON object of container
 | 
						|
        """
 | 
						|
        opts = self.get_opts(fields)
 | 
						|
        output = self.openstack('appcontainer show {0} {1} {2}'
 | 
						|
                                .format(opts, identifier, params))
 | 
						|
        return json.loads(output)
 | 
						|
 | 
						|
    def container_rename(self, identifier, name):
 | 
						|
        """Rename specified container.
 | 
						|
 | 
						|
        :param String identifier: Name or UUID of the container
 | 
						|
        :param String name: new name for the container
 | 
						|
        """
 | 
						|
        self.openstack('appcontainer rename {0} {1}'
 | 
						|
                       .format(identifier, name))
 | 
						|
 | 
						|
    def container_execute(self, identifier, command):
 | 
						|
        """Execute in specified container.
 | 
						|
 | 
						|
        :param String identifier: Name or UUID of the container
 | 
						|
        :param String command: command execute in the container
 | 
						|
        """
 | 
						|
        return self.openstack('appcontainer exec {0} {1}'
 | 
						|
                              .format(identifier, command))
 |