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
Nicolas Wavrant
slapos.core
Commits
8b81ece3
Commit
8b81ece3
authored
Oct 31, 2012
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test computer_partition_slap_interface_workflow.
parent
6d32aee3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
2 deletions
+97
-2
master/bt5/slapos_cloud/TestTemplateItem/testSlapOSCoreComputerPartitionSlapInterfaceWorkflow.py
...m/testSlapOSCoreComputerPartitionSlapInterfaceWorkflow.py
+94
-0
master/bt5/slapos_cloud/bt/revision
master/bt5/slapos_cloud/bt/revision
+1
-1
master/bt5/slapos_cloud/bt/template_test_id_list
master/bt5/slapos_cloud/bt/template_test_id_list
+2
-1
No files found.
master/bt5/slapos_cloud/TestTemplateItem/testSlapOSCoreComputerPartitionSlapInterfaceWorkflow.py
0 → 100644
View file @
8b81ece3
# Copyright (c) 2002-2012 Nexedi SA and Contributors. All Rights Reserved.
from
Products.SlapOS.tests.testSlapOSMixin
import
\
testSlapOSMixin
class
TestSlapOSCoreComputerPartitionSlapInterfaceWorkflow
(
testSlapOSMixin
):
def
afterSetUp
(
self
):
super
(
TestSlapOSCoreComputerPartitionSlapInterfaceWorkflow
,
self
).
afterSetUp
()
# Clone computer document
self
.
computer
=
self
.
portal
.
computer_module
.
template_computer
\
.
Base_createCloneDocument
(
batch_mode
=
1
)
new_id
=
self
.
generateNewId
()
self
.
computer
.
edit
(
title
=
"computer %s"
%
(
new_id
,
),
reference
=
"TESTCOMP-%s"
%
(
new_id
,
),
allocation_scope
=
'open/personal'
,
capacity_scope
=
'open'
,
)
self
.
computer
.
validate
()
# install an software release
self
.
software_installation
=
self
.
portal
.
software_installation_module
\
.
newContent
(
portal_type
=
'Software Installation'
,
url_string
=
self
.
generateNewSoftwareReleaseUrl
(),
aggregate
=
self
.
computer
.
getRelativeUrl
())
self
.
software_installation
.
validate
()
self
.
software_installation
.
requestStart
()
self
.
tic
()
def
test_markFree
(
self
):
self
.
login
(
self
.
computer
.
getReference
())
partition
=
self
.
computer
.
newContent
(
portal_type
=
'Computer Partition'
,
reference
=
'PART-%s'
%
self
.
generateNewId
())
partition
.
validate
()
partition
.
markFree
()
self
.
tic
()
self
.
assertEqual
(
1
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
def
test_markFree_markBusy
(
self
):
self
.
login
(
self
.
computer
.
getReference
())
partition
=
self
.
computer
.
newContent
(
portal_type
=
'Computer Partition'
,
reference
=
'PART-%s'
%
self
.
generateNewId
())
partition
.
validate
()
partition
.
markFree
()
self
.
tic
()
self
.
assertEqual
(
1
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
partition
.
markBusy
()
self
.
tic
()
self
.
assertEqual
(
0
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
def
test_markFree_markBusy_markFree
(
self
):
self
.
login
(
self
.
computer
.
getReference
())
partition
=
self
.
computer
.
newContent
(
portal_type
=
'Computer Partition'
,
reference
=
'PART-%s'
%
self
.
generateNewId
())
partition
.
validate
()
partition
.
markFree
()
self
.
tic
()
self
.
assertEqual
(
1
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
partition
.
markBusy
()
self
.
tic
()
self
.
assertEqual
(
0
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
partition
.
markFree
()
self
.
tic
()
self
.
assertEqual
(
1
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
def
test_markInactive
(
self
):
self
.
login
(
self
.
computer
.
getReference
())
partition
=
self
.
computer
.
newContent
(
portal_type
=
'Computer Partition'
,
reference
=
'PART-%s'
%
self
.
generateNewId
())
partition
.
validate
()
partition
.
markInactive
()
self
.
tic
()
self
.
assertEqual
(
0
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
def
test_markInactive_markFree
(
self
):
self
.
login
(
self
.
computer
.
getReference
())
partition
=
self
.
computer
.
newContent
(
portal_type
=
'Computer Partition'
,
reference
=
'PART-%s'
%
self
.
generateNewId
())
partition
.
validate
()
partition
.
markInactive
()
self
.
tic
()
self
.
assertEqual
(
0
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
partition
.
markFree
()
self
.
tic
()
self
.
assertEqual
(
1
,
self
.
portal
.
portal_catalog
.
countResults
(
parent_uid
=
self
.
computer
.
getUid
(),
free_for_request
=
1
)[
0
][
0
])
master/bt5/slapos_cloud/bt/revision
View file @
8b81ece3
166
167
\ No newline at end of file
\ No newline at end of file
master/bt5/slapos_cloud/bt/template_test_id_list
View file @
8b81ece3
...
@@ -4,4 +4,5 @@ testSlapOSCorePersonRequestComputer
...
@@ -4,4 +4,5 @@ testSlapOSCorePersonRequestComputer
testSlapOSCoreSoftwareInstanceRequest
testSlapOSCoreSoftwareInstanceRequest
testSlapOSShadow
testSlapOSShadow
testSlapOSCoreAllocation
testSlapOSCoreAllocation
testSlapOSCoreComputerSlapInterfaceWorkflow
testSlapOSCoreComputerSlapInterfaceWorkflow
\ No newline at end of file
testSlapOSCoreComputerPartitionSlapInterfaceWorkflow
\ 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