Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Klaus Wölfel
slapos.core
Commits
784fc798
Commit
784fc798
authored
Dec 06, 2013
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow test to run by giving user permission to allocate.
parent
5adc8ac1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
57 additions
and
1 deletion
+57
-1
master/bt5/slapos_cloud/TestTemplateItem/testSlapOSCloudAlarm.py
...bt5/slapos_cloud/TestTemplateItem/testSlapOSCloudAlarm.py
+56
-0
master/bt5/slapos_cloud/bt/revision
master/bt5/slapos_cloud/bt/revision
+1
-1
No files found.
master/bt5/slapos_cloud/TestTemplateItem/testSlapOSCloudAlarm.py
View file @
784fc798
...
@@ -9,6 +9,25 @@ from zExceptions import Unauthorized
...
@@ -9,6 +9,25 @@ from zExceptions import Unauthorized
from
DateTime
import
DateTime
from
DateTime
import
DateTime
from
Products.ERP5Type.DateUtils
import
addToDate
from
Products.ERP5Type.DateUtils
import
addToDate
from
App.Common
import
rfc1123_date
from
App.Common
import
rfc1123_date
from
functools
import
wraps
def
simulate
(
script_id
,
params_string
,
code_string
):
def
upperWrap
(
f
):
@
wraps
(
f
)
def
decorated
(
self
,
*
args
,
**
kw
):
if
script_id
in
self
.
portal
.
portal_skins
.
custom
.
objectIds
():
raise
ValueError
(
'Precondition failed: %s exists in custom'
%
script_id
)
createZODBPythonScript
(
self
.
portal
.
portal_skins
.
custom
,
script_id
,
params_string
,
code_string
)
try
:
result
=
f
(
self
,
*
args
,
**
kw
)
finally
:
if
script_id
in
self
.
portal
.
portal_skins
.
custom
.
objectIds
():
self
.
portal
.
portal_skins
.
custom
.
manage_delObjects
(
script_id
)
transaction
.
commit
()
return
result
return
decorated
return
upperWrap
class
TestSlapOSCorePromiseSlapOSModuleIdGeneratorAlarm
(
testSlapOSMixin
):
class
TestSlapOSCorePromiseSlapOSModuleIdGeneratorAlarm
(
testSlapOSMixin
):
...
@@ -241,6 +260,7 @@ return True""" )
...
@@ -241,6 +260,7 @@ return True""" )
'Allocation failed: Allocation disallowed'
,
'Allocation failed: Allocation disallowed'
,
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_no_free_partition
(
self
):
def
test_allocation_no_free_partition
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -250,6 +270,7 @@ return True""" )
...
@@ -250,6 +270,7 @@ return True""" )
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregateValue
(
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregateValue
(
portal_type
=
'Computer Partition'
))
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_no_host_instance
(
self
):
def
test_allocation_no_host_instance
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -269,6 +290,7 @@ return True""" )
...
@@ -269,6 +290,7 @@ return True""" )
software_installation
.
requestStart
()
software_installation
.
requestStart
()
self
.
tic
()
self
.
tic
()
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_free_partition
(
self
):
def
test_allocation_free_partition
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -289,6 +311,7 @@ return True""" )
...
@@ -289,6 +311,7 @@ return True""" )
computer_partition
.
markBusy
()
computer_partition
.
markBusy
()
self
.
tic
()
self
.
tic
()
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_host_instance
(
self
):
def
test_allocation_host_instance
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -302,6 +325,7 @@ return True""" )
...
@@ -302,6 +325,7 @@ return True""" )
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_capacity_scope_close
(
self
):
def
test_allocation_capacity_scope_close
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -317,6 +341,7 @@ return True""" )
...
@@ -317,6 +341,7 @@ return True""" )
self
.
assertEqual
(
None
,
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_host_capacity_scope_close
(
self
):
def
test_allocation_host_capacity_scope_close
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -332,6 +357,7 @@ return True""" )
...
@@ -332,6 +357,7 @@ return True""" )
self
.
assertEqual
(
None
,
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_allocation_scope_close
(
self
):
def
test_allocation_allocation_scope_close
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -347,6 +373,7 @@ return True""" )
...
@@ -347,6 +373,7 @@ return True""" )
self
.
assertEqual
(
None
,
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_host_allocation_scope_close
(
self
):
def
test_allocation_host_allocation_scope_close
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -362,6 +389,7 @@ return True""" )
...
@@ -362,6 +389,7 @@ return True""" )
self
.
assertEqual
(
None
,
self
.
assertEqual
(
None
,
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_allocation_scope_open_personal
(
self
):
def
test_allocation_allocation_scope_open_personal
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -378,6 +406,7 @@ return True""" )
...
@@ -378,6 +406,7 @@ return True""" )
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_host_allocation_scope_open_personal
(
self
):
def
test_allocation_host_allocation_scope_open_personal
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -394,6 +423,7 @@ return True""" )
...
@@ -394,6 +423,7 @@ return True""" )
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_allocation_scope_open_friend
(
self
):
def
test_allocation_allocation_scope_open_friend
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -426,6 +456,7 @@ return True""" )
...
@@ -426,6 +456,7 @@ return True""" )
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_host_allocation_scope_open_friend
(
self
):
def
test_allocation_host_allocation_scope_open_friend
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -458,6 +489,7 @@ return True""" )
...
@@ -458,6 +489,7 @@ return True""" )
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_does_not_fail_on_instance_with_damaged_sla_xml
(
self
):
def
test_allocation_does_not_fail_on_instance_with_damaged_sla_xml
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -469,6 +501,7 @@ return True""" )
...
@@ -469,6 +501,7 @@ return True""" )
portal_type
=
'Computer Partition'
))
portal_type
=
'Computer Partition'
))
transaction
.
abort
()
transaction
.
abort
()
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_does_not_fail_on_slave_with_damaged_sla_xml
(
self
):
def
test_allocation_does_not_fail_on_slave_with_damaged_sla_xml
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -498,6 +531,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -498,6 +531,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
portal
.
portal_skins
.
custom
.
manage_delObjects
(
script_name
)
self
.
portal
.
portal_skins
.
custom
.
manage_delObjects
(
script_name
)
transaction
.
commit
()
transaction
.
commit
()
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_alarm_software_instance_unallocated
(
self
):
def
test_alarm_software_instance_unallocated
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -511,6 +545,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -511,6 +545,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
'Visited by SoftwareInstance_tryToAllocatePartition'
,
'Visited by SoftwareInstance_tryToAllocatePartition'
,
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_alarm_slave_instance_unallocated
(
self
):
def
test_alarm_slave_instance_unallocated
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -524,6 +559,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -524,6 +559,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
'Visited by SoftwareInstance_tryToAllocatePartition'
,
'Visited by SoftwareInstance_tryToAllocatePartition'
,
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_alarm_software_instance_allocated
(
self
):
def
test_alarm_software_instance_allocated
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -540,6 +576,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -540,6 +576,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
'Visited by SoftwareInstance_tryToAllocatePartition'
,
'Visited by SoftwareInstance_tryToAllocatePartition'
,
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_alarm_slave_instance_allocated
(
self
):
def
test_alarm_slave_instance_allocated
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -556,6 +593,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -556,6 +593,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
'Visited by SoftwareInstance_tryToAllocatePartition'
,
'Visited by SoftwareInstance_tryToAllocatePartition'
,
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
self
.
software_instance
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
])
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_computer_guid
(
self
):
def
test_allocation_computer_guid
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -582,6 +620,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -582,6 +620,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_instance_guid
(
self
):
def
test_allocation_instance_guid
(
self
):
self
.
_makeSlaveTree
()
self
.
_makeSlaveTree
()
...
@@ -610,6 +649,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -610,6 +649,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_network_guid
(
self
):
def
test_allocation_network_guid
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -646,6 +686,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -646,6 +686,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_mode_unique_by_network_one_network
(
self
):
def
test_allocation_mode_unique_by_network_one_network
(
self
):
"""
"""
Test that when mode is "unique_by_network", we deploy new instance on
Test that when mode is "unique_by_network", we deploy new instance on
...
@@ -707,6 +748,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -707,6 +748,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
software_instance2
.
getAggregate
(
portal_type
=
'Computer Partition'
)
software_instance2
.
getAggregate
(
portal_type
=
'Computer Partition'
)
)
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_mode_unique_by_network_several_network
(
self
):
def
test_allocation_mode_unique_by_network_several_network
(
self
):
"""
"""
Test that when mode is "unique_by_network", we deploy new instance on
Test that when mode is "unique_by_network", we deploy new instance on
...
@@ -791,6 +833,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -791,6 +833,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
software_instance3
.
getAggregate
(
portal_type
=
'Computer Partition'
)
software_instance3
.
getAggregate
(
portal_type
=
'Computer Partition'
)
)
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_mode_unique_by_network_no_network
(
self
):
def
test_allocation_mode_unique_by_network_no_network
(
self
):
"""
"""
Test that when we request instance with mode as 'unique_by_network',
Test that when we request instance with mode as 'unique_by_network',
...
@@ -814,6 +857,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -814,6 +857,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
)
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
)
)
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_mode_unique_by_network_check_serialize_called
(
self
):
def
test_allocation_mode_unique_by_network_check_serialize_called
(
self
):
"""
"""
Test that on being_requested serialise is being called
Test that on being_requested serialise is being called
...
@@ -847,6 +891,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -847,6 +891,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
transaction
.
abort
()
transaction
.
abort
()
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_mode_unique_by_network_no_parallel
(
self
):
def
test_allocation_mode_unique_by_network_no_parallel
(
self
):
"""
"""
Test that when we request two instances of the same Hosting Subscription
Test that when we request two instances of the same Hosting Subscription
...
@@ -905,6 +950,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -905,6 +950,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
software_instance2
.
getAggregate
(
portal_type
=
'Computer Partition'
)
software_instance2
.
getAggregate
(
portal_type
=
'Computer Partition'
)
)
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_unexpected_sla_parameter
(
self
):
def
test_allocation_unexpected_sla_parameter
(
self
):
self
.
_makeTree
()
self
.
_makeTree
()
...
@@ -962,6 +1008,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -962,6 +1008,7 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
assertEqual
(
self
.
partition
.
getRelativeUrl
(),
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
self
.
software_instance
.
getAggregate
(
portal_type
=
'Computer Partition'
))
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_group_sla
(
self
):
def
test_allocation_group_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'group'
,
'vifib'
,
'ovh'
)
return
self
.
check_allocation_category_sla
(
'group'
,
'vifib'
,
'ovh'
)
...
@@ -969,33 +1016,42 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
...
@@ -969,33 +1016,42 @@ portal_workflow.doActionFor(context, action='edit_action', comment='Visited by S
def
test_allocation_cpu_core_sla
(
self
):
def
test_allocation_cpu_core_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'cpu_core'
,
'vifib'
,
'ovh'
)
return
self
.
check_allocation_category_sla
(
'cpu_core'
,
'vifib'
,
'ovh'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_cpu_frequency_sla
(
self
):
def
test_allocation_cpu_frequency_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'cpu_frequency'
,
'1000'
,
'2000'
)
return
self
.
check_allocation_category_sla
(
'cpu_frequency'
,
'1000'
,
'2000'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_cpu_type_sla
(
self
):
def
test_allocation_cpu_type_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'cpu_type'
,
'x86'
,
'x86/x86_32'
)
return
self
.
check_allocation_category_sla
(
'cpu_type'
,
'x86'
,
'x86/x86_32'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_local_area_network_type_sla
(
self
):
def
test_allocation_local_area_network_type_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'local_area_network_type'
,
return
self
.
check_allocation_category_sla
(
'local_area_network_type'
,
'ethernet'
,
'wifi'
)
'ethernet'
,
'wifi'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_memory_size_sla
(
self
):
def
test_allocation_memory_size_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'memory_size'
,
'128'
,
'256'
)
return
self
.
check_allocation_category_sla
(
'memory_size'
,
'128'
,
'256'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_memory_type_sla
(
self
):
def
test_allocation_memory_type_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'memory_type'
,
'ddr2'
,
'ddr3'
)
return
self
.
check_allocation_category_sla
(
'memory_type'
,
'ddr2'
,
'ddr3'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_region_sla
(
self
):
def
test_allocation_region_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'region'
,
'africa'
,
return
self
.
check_allocation_category_sla
(
'region'
,
'africa'
,
'america'
)
'america'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_storage_capacity_sla
(
self
):
def
test_allocation_storage_capacity_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'storage_capacity'
,
'finite'
,
return
self
.
check_allocation_category_sla
(
'storage_capacity'
,
'finite'
,
'infinite'
)
'infinite'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_storage_interface_sla
(
self
):
def
test_allocation_storage_interface_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'storage_interface'
,
'nas'
,
'san'
)
return
self
.
check_allocation_category_sla
(
'storage_interface'
,
'nas'
,
'san'
)
@
simulate
(
'Person_isAllowedToAllocate'
,
'*args, **kwargs'
,
'return True'
)
def
test_allocation_storage_redundancy_sla
(
self
):
def
test_allocation_storage_redundancy_sla
(
self
):
return
self
.
check_allocation_category_sla
(
'storage_redundancy'
,
'dht'
,
'raid'
)
return
self
.
check_allocation_category_sla
(
'storage_redundancy'
,
'dht'
,
'raid'
)
...
...
master/bt5/slapos_cloud/bt/revision
View file @
784fc798
304
305
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment