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
Titouan Soulard
slapos.core
Commits
04019b9f
Commit
04019b9f
authored
Jan 06, 2023
by
Romain Courteaud
🐙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_cloud: project needed
parent
03dd81b7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
381 deletions
+18
-381
master/bt5/slapos_cloud/TestTemplateItem/portal_components/test.erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.py
...t.erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.py
+15
-357
master/bt5/slapos_cloud/TestTemplateItem/portal_components/test.erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.xml
....erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.xml
+3
-24
No files found.
master/bt5/slapos_cloud/TestTemplateItem/portal_components/test.erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.py
View file @
04019b9f
...
...
@@ -20,8 +20,6 @@
##############################################################################
from
erp5.component.test.SlapOSTestCaseMixin
import
SlapOSTestCaseMixin
import
transaction
from
time
import
sleep
from
zExceptions
import
Unauthorized
from
unittest
import
expectedFailure
from
Products.ERP5Type.Errors
import
UnsupportedWorkflowMethod
...
...
@@ -29,13 +27,15 @@ from Products.ERP5Type.Errors import UnsupportedWorkflowMethod
class
TestSlapOSCoreComputeNodeSlapInterfaceWorkflow
(
SlapOSTestCaseMixin
):
def
afterSetUp
(
self
):
SlapOSTestCaseMixin
.
afterSetUp
(
self
)
self
.
project
=
self
.
addProject
()
# Clone compute_node document
self
.
compute_node
=
self
.
portal
.
compute_node_module
.
template_compute_node
\
.
Base_createCloneDocument
(
batch_mode
=
1
)
new_id
=
self
.
generateNewId
()
self
.
compute_node
.
edit
(
title
=
"compute node %s"
%
(
new_id
,
),
reference
=
"TESTCOMP-%s"
%
(
new_id
,
)
reference
=
"TESTCOMP-%s"
%
(
new_id
,
),
follow_up_value
=
self
.
project
)
self
.
compute_node
.
validate
()
self
.
tic
()
...
...
@@ -74,7 +74,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
self
.
assertEqual
(
None
,
self
.
portal
.
REQUEST
.
get
(
'compute_node_certificate'
))
def
test_approveComputeNodeRegistration
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
login
(
self
.
person_user
.
getUserId
())
compute_node
=
self
.
portal
.
compute_node_module
.
newContent
(
portal_type
=
'Compute Node'
,
title
=
"Compute Node %s for %s"
%
(
self
.
new_id
,
self
.
person_user
.
getReference
()),
...
...
@@ -96,7 +96,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
'report_compute_node_bang'
and
q
[
'comment'
]
==
comment
])
def
test_reportComputeNodeBang
(
self
):
self
.
_makeComplexComputeNode
()
self
.
_makeComplexComputeNode
(
self
.
project
)
self
.
login
(
self
.
compute_node
.
getUserId
())
comment
=
'Bang from compute_node'
started_instance
=
self
.
compute_node
.
partition1
.
getAggregateRelatedValue
(
...
...
@@ -140,7 +140,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
self
.
_countInstanceBang
(
destroyed_instance2
,
comment
))
def
test_requestSoftwareRelease_software_release_url_required
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -149,7 +149,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
transaction
.
abort
()
def
test_requestSoftwareRelease_state_required
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -159,7 +159,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
transaction
.
abort
()
def
test_requestSoftwareRelease_available
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -175,7 +175,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
self
.
assertEqual
(
'validated'
,
software_installation
.
getValidationState
())
def
test_requestSoftwareRelease_destroyed
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -189,7 +189,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
self
.
assertEqual
(
None
,
software_installation
)
def
test_requestSoftwareRelease_available_destroyed
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -217,7 +217,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
self
.
assertEqual
(
'validated'
,
software_installation
.
getValidationState
())
def
test_requestSoftwareRelease_not_indexed
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -232,7 +232,7 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflow(SlapOSTestCaseMixin):
@
expectedFailure
def
test_requestSoftwareRelease_same_transaction
(
self
):
self
.
person_user
=
self
.
makePerson
()
self
.
person_user
=
self
.
makePerson
(
self
.
project
)
self
.
compute_node
.
edit
(
source_administration
=
self
.
person_user
.
getRelativeUrl
())
self
.
tic
()
self
.
login
(
self
.
person_user
.
getUserId
())
...
...
@@ -360,17 +360,18 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflowSupply(SlapOSTestCaseMixin):
def
afterSetUp
(
self
):
SlapOSTestCaseMixin
.
afterSetUp
(
self
)
portal
=
self
.
getPortalObject
()
self
.
project
=
self
.
addProject
()
# Clone compute_node document
compute_node
=
portal
.
compute_node_module
.
template_compute_node
\
.
Base_createCloneDocument
(
batch_mode
=
1
)
# Clone person document
person_user
=
self
.
makePerson
(
new_id
=
self
.
new_id
,
index
=
0
)
person_user
=
self
.
makePerson
(
self
.
project
,
new_id
=
self
.
new_id
,
index
=
0
)
compute_node
.
edit
(
title
=
"Compute Node %s for %s"
%
(
self
.
new_id
,
person_user
.
getReference
()),
reference
=
"TESTCOMP-%s"
%
self
.
new_id
,
source_administration
=
person_user
.
getRelativeUrl
()
follow_up_value
=
self
.
project
)
compute_node
.
validate
()
self
.
compute_node
=
compute_node
...
...
@@ -661,346 +662,3 @@ class TestSlapOSCoreComputeNodeSlapInterfaceWorkflowSupply(SlapOSTestCaseMixin):
self
.
assertEqual
(
'start_requested'
,
software_installation
.
getSlapState
())
self
.
assertEqual
(
'SOFTINSTALL-%s'
%
(
previous_id
+
2
),
software_installation
.
getReference
())
class
TestSlapOSCoreComputeNodeSlapInterfaceWorkflowTransfer
(
SlapOSTestCaseMixin
):
def
afterSetUp
(
self
):
SlapOSTestCaseMixin
.
afterSetUp
(
self
)
portal
=
self
.
getPortalObject
()
# Clone compute_node document
compute_node
=
portal
.
compute_node_module
.
template_compute_node
\
.
Base_createCloneDocument
(
batch_mode
=
1
)
# Clone person document
person_user
=
self
.
makePerson
(
new_id
=
self
.
new_id
,
index
=
0
)
compute_node
.
edit
(
title
=
"Compute Node %s for %s"
%
(
self
.
new_id
,
person_user
.
getReference
()),
reference
=
"TESTCOMP-%s"
%
self
.
new_id
,
source_administration
=
person_user
.
getRelativeUrl
()
)
compute_node
.
validate
()
self
.
compute_node
=
compute_node
self
.
tic
()
# Login as new user
self
.
login
(
person_user
.
getUserId
())
new_person
=
self
.
portal
.
portal_membership
.
getAuthenticatedMember
().
getUserValue
()
self
.
assertEqual
(
person_user
.
getRelativeUrl
(),
new_person
.
getRelativeUrl
())
def
_makeProject
(
self
):
project
=
self
.
portal
.
project_module
.
newContent
()
project
.
edit
(
reference
=
"TESTPROJ-%s"
%
project
.
getId
())
project
.
validate
()
self
.
tic
()
return
project
def
_makeOrganisation
(
self
):
organisation
=
self
.
portal
.
organisation_module
.
newContent
()
organisation
.
edit
(
reference
=
"TESTSITE-%s"
%
organisation
.
getId
())
organisation
.
validate
()
self
.
tic
()
return
organisation
def
test_Computer_requestTransfer_Unauthorized
(
self
):
source_administrator
=
self
.
portal
.
portal_membership
.
getAuthenticatedMember
().
getUserValue
()
site
=
self
.
_makeOrganisation
()
self
.
login
()
self
.
assertRaises
(
Unauthorized
,
self
.
compute_node
.
requestTransfer
,
destination
=
site
.
getRelativeUrl
(),
destination_section
=
None
,
destination_project
=
None
)
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertRaises
(
ValueError
,
self
.
compute_node
.
requestTransfer
,
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
)
self
.
login
()
other_user
=
self
.
makePerson
(
user
=
1
)
self
.
assertEqual
(
1
,
len
(
other_user
.
objectValues
(
portal_type
=
"ERP5 Login"
)))
self
.
compute_node
.
setSourceAdministrationValue
(
source_administrator
)
self
.
tic
()
self
.
assertRaises
(
Unauthorized
,
self
.
compute_node
.
requestTransfer
,
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
)
self
.
login
(
other_user
.
getUserId
())
self
.
assertRaises
(
Unauthorized
,
self
.
compute_node
.
requestTransfer
,
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
)
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
site
.
getRelativeUrl
(),
destination_section
=
None
,
destination_project
=
None
),
None
)
def
test_Computer_requestTransfer_project
(
self
):
source_administrator
=
self
.
portal
.
portal_membership
.
getAuthenticatedMember
().
getUserValue
()
self
.
compute_node
.
setSourceAdministrationValue
(
source_administrator
)
self
.
login
()
project
=
self
.
_makeProject
()
other_project
=
self
.
_makeProject
()
site
=
self
.
_makeOrganisation
()
self
.
tic
()
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
None
)
# Place in a project
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
site
.
getRelativeUrl
(),
destination_section
=
None
,
destination_project
=
project
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
project
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
1
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
login
(
source_administrator
.
getUserId
())
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# We don't remove from Project if destination project is not provided
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
project
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
2
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# Place in another project
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
other_project
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
other_project
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
3
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
login
(
source_administrator
.
getUserId
())
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# We don't remove from Project if destination project is not provided
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
other_project
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
4
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
def
test_Computer_requestTransfer_owner
(
self
):
source_administrator
=
self
.
portal
.
portal_membership
.
getAuthenticatedMember
().
getUserValue
()
self
.
compute_node
.
setSourceAdministrationValue
(
source_administrator
)
self
.
login
()
organisation
=
self
.
_makeOrganisation
()
other_organisation
=
self
.
_makeOrganisation
()
site
=
self
.
_makeOrganisation
()
self
.
tic
()
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
site
.
getRelativeUrl
(),
destination_project
=
None
,
destination_section
=
organisation
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
organisation
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
1
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# Place in another project
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_project
=
None
,
destination_section
=
other_organisation
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
3
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
other_organisation
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
3
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
login
(
source_administrator
.
getUserId
())
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# We don't remove from Project if destination project is not provided
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
4
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
def
test_Computer_requestTransfer_site
(
self
):
source_administrator
=
self
.
portal
.
portal_membership
.
getAuthenticatedMember
().
getUserValue
()
self
.
compute_node
.
setSourceAdministrationValue
(
source_administrator
)
self
.
login
()
site
=
self
.
_makeOrganisation
()
other_site
=
self
.
_makeOrganisation
()
self
.
tic
()
self
.
login
(
source_administrator
.
getUserId
())
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination_section
=
None
,
destination_project
=
None
,
destination
=
site
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
self
.
assertEqual
(
1
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
self
.
login
(
source_administrator
.
getUserId
())
# We don't remove from Project if destination project is not provided
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
site
)
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# Place in another project
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination_section
=
None
,
destination_project
=
None
,
destination
=
other_site
.
getRelativeUrl
()),
None
)
self
.
tic
()
self
.
assertEqual
(
3
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
other_site
)
self
.
assertEqual
(
3
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
self
.
login
(
source_administrator
.
getUserId
())
# Ensure that we don't have 2 new Internal Packing lists in the same second
sleep
(
1
)
# We don't remove from Project if destination project is not provided
self
.
assertEqual
(
self
.
compute_node
.
requestTransfer
(
destination
=
None
,
destination_section
=
None
,
destination_project
=
None
),
None
)
self
.
tic
()
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentProjectValue
(),
None
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentOwnerValue
(),
source_administrator
)
self
.
assertEqual
(
self
.
compute_node
.
Item_getCurrentSiteValue
(),
other_site
)
self
.
assertEqual
(
4
,
len
(
self
.
compute_node
.
getAggregateRelatedList
(
portal_type
=
"Internal Packing List Line"
))
)
master/bt5/slapos_cloud/TestTemplateItem/portal_components/test.erp5.testSlapOSCloudComputeNodeSlapInterfaceWorkflow.xml
View file @
04019b9f
...
...
@@ -6,12 +6,6 @@
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
_recorded_property_dict
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAAI=
</string>
</persistent>
</value>
</item>
<item>
<key>
<string>
default_reference
</string>
</key>
<value>
<string>
testSlapOSCloudComputeNodeSlapInterfaceWorkflow
</string>
</value>
...
...
@@ -61,28 +55,13 @@
<item>
<key>
<string>
workflow_history
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAA
M
=
</string>
</persistent>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAA
I
=
</string>
</persistent>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"2"
aka=
"AAAAAAAAAAI="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
<pickle>
<dictionary>
<item>
<key>
<string>
data
</string>
</key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
<record
id=
"3"
aka=
"AAAAAAAAAAM="
>
<pickle>
<global
name=
"PersistentMapping"
module=
"Persistence.mapping"
/>
</pickle>
...
...
@@ -95,7 +74,7 @@
<item>
<key>
<string>
component_validation_workflow
</string>
</key>
<value>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAA
Q
=
</string>
</persistent>
<persistent>
<string
encoding=
"base64"
>
AAAAAAAAAA
M
=
</string>
</persistent>
</value>
</item>
</dictionary>
...
...
@@ -104,7 +83,7 @@
</dictionary>
</pickle>
</record>
<record
id=
"
4"
aka=
"AAAAAAAAAAQ
="
>
<record
id=
"
3"
aka=
"AAAAAAAAAAM
="
>
<pickle>
<global
name=
"WorkflowHistoryList"
module=
"Products.ERP5Type.Workflow"
/>
</pickle>
...
...
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