Package yakumo :: Package smoketests
[hide private]
[frames] | no frames]

Source Code for Package yakumo.smoketests

 1  # Copyright 2014-2017 by Akira Yoshiyama <akirayoshiyama@gmail.com>. 
 2  # All Rights Reserved. 
 3  # 
 4  #    Licensed under the Apache License, Version 2.0 (the "License"); you may 
 5  #    not use this file except in compliance with the License. You may obtain 
 6  #    a copy of the License at 
 7  # 
 8  #         http://www.apache.org/licenses/LICENSE-2.0 
 9  # 
10  #    Unless required by applicable law or agreed to in writing, software 
11  #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 
12  #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 
13  #    License for the specific language governing permissions and limitations 
14  #    under the License. 
15   
16   
17  from . import st10_v2_role_project_user_admin 
18  from . import st11_v2_service_endpoint_admin 
19  from . import st12_v3_role_project_user_admin 
20  from . import st13_v3_service_endpoint_admin 
21  from . import st14_v3_project_on_project_admin 
22  from . import st15_v3_region_on_region_admin 
23  from . import st20_image 
24  from . import st22_image_metadata_nova 
25  from . import st30_network_subnet_port 
26  from . import st31_security_group 
27  from . import st40_volume_snapshot 
28  from . import st41_upload_to_image 
29  from . import st42_volume_type_admin 
30  from . import st43_volume_type_qos_admin 
31  from . import st50_server 
32  from . import st51_boot_from_volume 
33  from . import st52_attach_volume 
34  from . import st53_attach_interface 
35  from . import st54_server_metadata 
36  from . import st55_host_aggregate_admin 
37  from . import st56_key_pair 
38  from . import st60_container_admin 
39  from . import st61_object_admin 
40   
41   
42  __all__ = [ 
43      'KEYSTONE_TESTS', 
44      'GLANCE_TESTS', 
45      'NEUTRON_TESTS', 
46      'CINDER_TESTS', 
47      'NOVA_TESTS', 
48      'SWIFT_TESTS', 
49  ] 
50   
51  KEYSTONE_TESTS = [ 
52      st10_v2_role_project_user_admin, 
53      st11_v2_service_endpoint_admin, 
54      st12_v3_role_project_user_admin, 
55      st13_v3_service_endpoint_admin, 
56      st14_v3_project_on_project_admin, 
57      st15_v3_region_on_region_admin, 
58  ] 
59   
60  GLANCE_TESTS = [ 
61      st20_image, 
62      st22_image_metadata_nova, 
63  ] 
64   
65  NEUTRON_TESTS = [ 
66      st30_network_subnet_port, 
67      st31_security_group, 
68  ] 
69   
70  CINDER_TESTS = [ 
71      st40_volume_snapshot, 
72      st41_upload_to_image, 
73      st42_volume_type_admin, 
74      st43_volume_type_qos_admin, 
75  ] 
76   
77  NOVA_TESTS = [ 
78      st50_server, 
79      st51_boot_from_volume, 
80      st52_attach_volume, 
81      st53_attach_interface, 
82      st54_server_metadata, 
83      st55_host_aggregate_admin, 
84      st56_key_pair, 
85  ] 
86   
87  SWIFT_TESTS = [ 
88      st60_container_admin, 
89      st61_object_admin, 
90  ] 
91