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
Léo-Paul Géneau
slapos.core
Commits
a5f2248b
Commit
a5f2248b
authored
Dec 02, 2011
by
Antoine Catton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test_ComputerPartition_rename_root_and_bang
parent
245010d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
83 additions
and
0 deletions
+83
-0
master/product/Vifib/tests/testVifibSlapBang.py
master/product/Vifib/tests/testVifibSlapBang.py
+83
-0
No files found.
master/product/Vifib/tests/testVifibSlapBang.py
View file @
a5f2248b
...
...
@@ -681,6 +681,89 @@ class TestVifibSlapBang(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"
)
def
test_ComputerPartition_rename_root_and_bang
(
self
):
r"""
Request Master: __________
/ \
| HS: Master |
\
__________/
_____|____
/ \
| SI: Master |
\
__________/
Rename Software Instance Master into MasterDead:
__________
/ \
| HS: Master |
\
__________/
_______|______
/ \
| SI: MasterDead |
\
______________/
Banging the tree should result:
_____________________________
/ \
| HS: Master |
\
______________________________/
____/_____ _______\
______
/ \
/
\
| SI: Master | | SI: MasterDead |
\
__________/
\______________/
"""
self
.
computer_partition_amount
=
2
sequence_list
=
SequenceList
()
sequence_string
=
self
.
prepare_install_requested_computer_partition_sequence_string
+
"""
SetRootSoftwareInstanceCurrentInstance
Tic
LoginTestVifibCustomer
RenameCurrentSoftwareInstanceDead
Tic
Logout
SlapLoginCurrentSoftwareInstance
Bang
SlapLogout
Tic
LoginTestVifibCustomer
CheckTreeHasARootSoftwareInstance
Logout
"""
sequence_list
.
addSequenceString
(
sequence_string
)
sequence_list
.
play
(
self
)
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
TestVifibSlapBang
))
...
...
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