* Fix volume transfer request accept to actually not crash when trying to call Volume API. * Fix volume transfer request accept syntax to have only one positional argument, which is the ID of the resource in the command * Change the output column order in volume transfer request list to have ID followed by Name then the remaining columns. Closes-bug: 1633582 Change-Id: I5cc005f039d171cc70859f60e7fe649b09ead229
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.4 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
 | 
						|
import uuid
 | 
						|
 | 
						|
from openstackclient.tests.functional.volume.v1 import common
 | 
						|
 | 
						|
 | 
						|
class TransferRequestTests(common.BaseVolumeTests):
 | 
						|
    """Functional tests for transfer request. """
 | 
						|
 | 
						|
    NAME = uuid.uuid4().hex
 | 
						|
    VOLUME_NAME = uuid.uuid4().hex
 | 
						|
    HEADERS = ['Name']
 | 
						|
    FIELDS = ['name']
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def setUpClass(cls):
 | 
						|
        super(TransferRequestTests, cls).setUpClass()
 | 
						|
        opts = cls.get_opts(['display_name'])
 | 
						|
        raw_output = cls.openstack(
 | 
						|
            'volume create --size 1 ' + cls.VOLUME_NAME + opts)
 | 
						|
        cls.assertOutput(cls.VOLUME_NAME + '\n', raw_output)
 | 
						|
 | 
						|
        opts = cls.get_opts(cls.FIELDS)
 | 
						|
        raw_output = cls.openstack(
 | 
						|
            'volume transfer request create ' +
 | 
						|
            cls.VOLUME_NAME +
 | 
						|
            ' --name ' + cls.NAME + opts)
 | 
						|
        cls.assertOutput(cls.NAME + '\n', raw_output)
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def tearDownClass(cls):
 | 
						|
        raw_output_transfer = cls.openstack(
 | 
						|
            'volume transfer request delete ' + cls.NAME)
 | 
						|
        raw_output_volume = cls.openstack(
 | 
						|
            'volume delete ' + cls.VOLUME_NAME)
 | 
						|
        cls.assertOutput('', raw_output_transfer)
 | 
						|
        cls.assertOutput('', raw_output_volume)
 | 
						|
 | 
						|
    def test_volume_transfer_request_accept(self):
 | 
						|
        volume_name = uuid.uuid4().hex
 | 
						|
        name = uuid.uuid4().hex
 | 
						|
 | 
						|
        # create a volume
 | 
						|
        opts = self.get_opts(['display_name'])
 | 
						|
        raw_output = self.openstack(
 | 
						|
            'volume create --size 1 ' + volume_name + opts)
 | 
						|
        self.assertEqual(volume_name + '\n', raw_output)
 | 
						|
 | 
						|
        # create volume transfer request for the volume
 | 
						|
        # and get the auth_key of the new transfer request
 | 
						|
        opts = self.get_opts(['auth_key'])
 | 
						|
        auth_key = self.openstack(
 | 
						|
            'volume transfer request create ' +
 | 
						|
            volume_name +
 | 
						|
            ' --name ' + name + opts)
 | 
						|
        self.assertNotEqual('', auth_key)
 | 
						|
 | 
						|
        # accept the volume transfer request
 | 
						|
        json_output = json.loads(self.openstack(
 | 
						|
            'volume transfer request accept -f json ' +
 | 
						|
            name + ' ' +
 | 
						|
            '--auth-key ' + auth_key
 | 
						|
        ))
 | 
						|
        self.assertEqual(name, json_output.get('name'))
 | 
						|
 | 
						|
        # the volume transfer will be removed by default after accepted
 | 
						|
        # so just need to delete the volume here
 | 
						|
        raw_output = self.openstack(
 | 
						|
            'volume delete ' + volume_name)
 | 
						|
        self.assertEqual('', raw_output)
 | 
						|
 | 
						|
    def test_volume_transfer_request_list(self):
 | 
						|
        opts = self.get_opts(self.HEADERS)
 | 
						|
        raw_output = self.openstack('volume transfer request list' + opts)
 | 
						|
        self.assertIn(self.NAME, raw_output)
 | 
						|
 | 
						|
    def test_volume_transfer_request_show(self):
 | 
						|
        opts = self.get_opts(self.FIELDS)
 | 
						|
        raw_output = self.openstack(
 | 
						|
            'volume transfer request show ' + self.NAME + opts)
 | 
						|
        self.assertEqual(self.NAME + '\n', raw_output)
 |