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
Łukasz Nowak
slapos.core
Commits
6efac5df
Commit
6efac5df
authored
Dec 05, 2011
by
Antoine Catton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put step in SlapWebService in Mixin
parent
e6e8d33a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
32 deletions
+50
-32
master/product/Vifib/tests/testVifibSlapWebService.py
master/product/Vifib/tests/testVifibSlapWebService.py
+50
-32
No files found.
master/product/Vifib/tests/testVifibSlapWebService.py
View file @
6efac5df
...
...
@@ -3870,6 +3870,56 @@ class TestVifibSlapWebServiceMixin(testVifibMixin):
def
stepSetRandomRequestedReference
(
self
,
sequence
,
**
kw
):
sequence
[
'requested_reference'
]
=
self
.
id
()
+
str
(
random
())
def
stepRenameCurrentSoftwareInstanceDead
(
self
,
sequence
,
**
kw
):
hosting_subscription
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
sequence
[
'hosting_subscription_uid'
],
)
software_instance
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
sequence
[
'software_instance_uid'
]
)
software_instance
.
rename
(
new_name
=
'%sDead'
%
software_instance
.
getTitle
())
self
.
stepTic
()
parent
=
software_instance
.
getPredecessorRelatedValue
(
portal_type
=
[
"Hosting Subscription"
,
"Software Instance"
,
"Slave Instance"
]
)
self
.
assertEquals
(
hosting_subscription
,
parent
,
"Software Instance wasn't reattached to the hosting "
"subscription"
)
def
stepCheckTreeHasARootSoftwareInstance
(
self
,
sequence
,
**
kw
):
hosting_subscription_uid
=
sequence
[
'hosting_subscription_uid'
]
hosting_subscription
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
hosting_subscription_uid
,
)
root_software_instance
=
self
.
portal
.
portal_catalog
.
getResultValue
(
root_uid
=
hosting_subscription_uid
,
title
=
hosting_subscription
.
getTitle
(),
)
self
.
failIfEqual
(
root_software_instance
,
None
,
"No root software instance"
)
def
stepSetSoftwareInstanceGetRootOfTheTree
(
self
,
sequence
,
**
kw
):
hosting_subscription_uid
=
sequence
[
'hosting_subscription_uid'
]
hosting_subscription
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
hosting_subscription_uid
,
)
root_software_instance
=
self
.
portal
.
portal_catalog
.
getResultValue
(
root_uid
=
hosting_subscription_uid
,
title
=
hosting_subscription
.
getTitle
(),
)
self
.
failIfEqual
(
root_software_instance
,
None
,
"No root software instance"
)
computer_partition_reference
=
self
.
_softwareInstance_getComputerPartition
(
root_software_instance
).
getReference
()
sequence
.
edit
(
software_instance_uid
=
root_software_instance
.
getUid
(),
computer_partition_reference
=
computer_partition_reference
)
class
TestVifibSlapWebService
(
TestVifibSlapWebServiceMixin
):
########################################
# slap.initializeConnection
...
...
@@ -4204,38 +4254,6 @@ class TestVifibSlapWebService(TestVifibSlapWebServiceMixin):
sequence_list
.
addSequenceString
(
sequence_string
)
sequence_list
.
play
(
self
)
def
stepRenameCurrentSoftwareInstanceDead
(
self
,
sequence
):
hosting_subscription
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
sequence
[
'hosting_subscription_uid'
],
)
software_instance
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
sequence
[
'software_instance_uid'
]
)
software_instance
.
rename
(
new_name
=
'%sDead'
%
software_instance
.
getTitle
())
parent
=
software_instance
.
getPredecessorRelatedValue
(
portal_type
=
[
"Hosting Subscription"
,
"Software Instance"
,
"Slave Instance"
]
)
self
.
assertEquals
(
hosting_subscription
,
parent
,
"Software Instance wasn't reattached to the hosting "
"subscription"
)
def
stepCheckTreeHasARootSoftwareInstance
(
self
,
sequence
):
hosting_subscription_uid
=
sequence
[
'hosting_subscription_uid'
]
hosting_subscription
=
self
.
portal
.
portal_catalog
.
getResultValue
(
uid
=
hosting_subscription_uid
,
)
root_software_instance
=
self
.
portal
.
portal_catalog
.
getResultValue
(
root_uid
=
hosting_subscription_uid
,
title
=
hosting_subscription
.
getTitle
(),
)
self
.
failIfEqual
(
root_software_instance
,
None
,
"No root software instance"
)
# class IComputerPartition
# def started():
# def stopped():
...
...
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