cc1  v2.1
CC1 source code docs
 All Classes Namespaces Files Functions Variables Pages
s111_disk_test_buses_in_running_vm.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 # @COPYRIGHT_begin
3 #
4 # Copyright [2010-2014] Institute of Nuclear Physics PAN, Krakow, Poland
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # @COPYRIGHT_end
19 
20 ##
21 #
22 # Attach various disks to running vm
23 #
24 from predefined.actions import *
25 from predefined.users import *
26 from predefined.macros import *
27 import settings
28 
29 actions = []
30 actions.append(list_clusters)
31 
32 actions.append(list_filesystems)
33 actions.append(list_video_devices)
34 actions.append(list_network_devices)
35 actions.append(list_disk_controllers)
36 actions.append(list_private_storage_images)
37 actions.append(list_private_vm_images)
38 actions.append(list_templates)
39 actions.append(list_available_networks)
40 
41 #buses = ['ide', 'scsi', 'sata', 'usb', 'virtio']
42 buses = ['scsi', 'usb', 'virtio']
43 
44 # Try to attach each type disk (bus) to vm
45 for bus in buses:
46  actions.append({'u': u_new,
47  'fname': 'vm.user.create',
48  'args': [{'vnc': True,
49  'name': 'TestVMStorage',
50  'iso_list': [],
51  'image_id': MACRO_GET_PRIVATE_VM_IMAGE_ID("PrivateImage"),
52  'disk_list': [],
53  'template_id': MACRO_GET_TEMPLATE_ID("Small"),
54  'description': 'asd'}]
55  })
56 
57  actions.append(wait_vm_is_running("TestVMStorage"))
58 
59 
60  # Attach disk in running
61  actions.append(list_user_vms)
62  actions.append({'u': u_new,
63  'fname': 'image.user.edit',
64  'args': [MACRO_GET_PRIVATE_STORAGE_ID("Test Storage1"),
65  {'description': 'First test storage',
66  'name': 'Test Storage1',
67  'disk_controller': MACRO_GET_DISK_CONTROLLER_ID(bus)}]
68  })
69  actions.append({'u': u_new,
70  'fname': 'image.user.attach',
71  'args': [MACRO_GET_USER_VM_ID("TestVMStorage"),
72  {'img_id': MACRO_GET_PRIVATE_STORAGE_ID("Test Storage1"),
73  'disk_controller': MACRO_GET_DISK_CONTROLLER_ID(bus)}],
74  })
75 
76 
77  # Detach disk
78  actions.append({'u': u_new,
79  'fname': 'image.user.detach',
80  'args': [{'vm_id': MACRO_GET_USER_VM_ID("TestVMStorage"),
81  'img_id': MACRO_GET_PRIVATE_STORAGE_ID("Test Storage1")}],
82  })
83 
84  # Destroy VM
85  actions.append({'u': u_new,
86  'fname': 'vm.user.destroy',
87  'args': [[MACRO_GET_USER_VM_ID("TestVMStorage")]]})
88