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
Eric Zheng
slapos.core
Commits
117a957c
Commit
117a957c
authored
Nov 09, 2012
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test Computer_updateFromDict
parent
bea9bfd6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
820 additions
and
2 deletions
+820
-2
master/bt5/slapos_slap_tool/TestTemplateItem/testSlapOSCoreComputerUpdateFromDict.py
.../TestTemplateItem/testSlapOSCoreComputerUpdateFromDict.py
+817
-0
master/bt5/slapos_slap_tool/bt/revision
master/bt5/slapos_slap_tool/bt/revision
+1
-1
master/bt5/slapos_slap_tool/bt/template_test_id_list
master/bt5/slapos_slap_tool/bt/template_test_id_list
+2
-1
No files found.
master/bt5/slapos_slap_tool/TestTemplateItem/testSlapOSCoreComputerUpdateFromDict.py
0 → 100644
View file @
117a957c
# Copyright (c) 2002-2012 Nexedi SA and Contributors. All Rights Reserved.
from
Products.SlapOS.tests.testSlapOSMixin
import
\
testSlapOSMixin
class
TestSlapOSCoreComputerUpdateFromDict
(
testSlapOSMixin
):
def
afterSetUp
(
self
):
super
(
TestSlapOSCoreComputerUpdateFromDict
,
self
).
afterSetUp
()
self
.
computer
=
self
.
portal
.
computer_module
.
template_computer
\
.
Base_createCloneDocument
(
batch_mode
=
1
)
self
.
computer
.
edit
(
reference
=
'TESTC-%s'
%
self
.
generateNewId
(),
)
# All tests expect no address in the default computer
address_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
# All tests expect no partition in the default computer
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
0
)
self
.
login
()
#############################################
# Computer network information
#############################################
def
test_CreateComputerNetworkInformation
(
self
):
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
self
.
assertEqual
(
self
.
computer
.
getQuantity
(),
0
)
address_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'a'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'b'
)
self
.
assertEqual
(
address
.
getId
(),
'default_network_address'
)
def
test_UpdateComputerNetworkInformation
(
self
):
self
.
computer
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'c'
,
'netmask'
:
'd'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
self
.
assertEqual
(
self
.
computer
.
getQuantity
(),
0
)
address_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'd'
)
# Existing document should be edited if possible
self
.
assertEqual
(
address
.
getId
(),
'foo'
)
def
test_RemoveComputerNetworkInformation
(
self
):
self
.
computer
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
self
.
computer
.
newContent
(
id
=
'bar'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'e'
,
'netmask'
:
'f'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
self
.
assertEqual
(
self
.
computer
.
getQuantity
(),
0
)
# One address should be removed
address_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'e'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'f'
)
# Existing document should be edited if possible
self
.
assertTrue
(
address
.
getId
()
in
(
'foo'
,
'bar'
))
#############################################
# Computer Partition network information
#############################################
def
test_CreateSinglePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[{
'addr'
:
'c'
,
'netmask'
:
'd'
,
}],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'd'
)
self
.
assertEqual
(
address
.
getNetworkInterface
(),
'bar'
)
self
.
assertEqual
(
address
.
getId
(),
'default_network_address'
)
def
test_CreateMultiplePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[{
'addr'
:
'c'
,
'netmask'
:
'd'
,
},{
'addr'
:
'e'
,
'netmask'
:
'f'
,
}],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
2
)
default_address
=
[
x
for
x
in
address_list
\
if
x
.
getId
()
==
'default_network_address'
][
0
]
self
.
assertEqual
(
default_address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
default_address
.
getNetmask
(),
'd'
)
self
.
assertEqual
(
default_address
.
getNetworkInterface
(),
'bar'
)
other_address
=
[
x
for
x
in
address_list
\
if
x
.
getId
()
!=
'default_network_address'
][
0
]
self
.
assertEqual
(
other_address
.
getIpAddress
(),
'e'
)
self
.
assertEqual
(
other_address
.
getNetmask
(),
'f'
)
self
.
assertEqual
(
other_address
.
getNetworkInterface
(),
'bar'
)
def
test_UpdateSinglePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
address
=
partition
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[{
'addr'
:
'c'
,
'netmask'
:
'd'
,
}],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'd'
)
self
.
assertEqual
(
address
.
getNetworkInterface
(),
'bar'
)
self
.
assertEqual
(
address
.
getId
(),
'foo'
)
def
test_UpdateMultiplePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
other_address
=
partition
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
default_address
=
partition
.
newContent
(
id
=
'default_network_interface'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[{
'addr'
:
'c'
,
'netmask'
:
'd'
,
},{
'addr'
:
'e'
,
'netmask'
:
'f'
,
}],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
2
)
# First address should go to the default one
self
.
assertEqual
(
default_address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
default_address
.
getNetmask
(),
'd'
)
self
.
assertEqual
(
default_address
.
getNetworkInterface
(),
'bar'
)
self
.
assertEqual
(
other_address
.
getIpAddress
(),
'e'
)
self
.
assertEqual
(
other_address
.
getNetmask
(),
'f'
)
self
.
assertEqual
(
other_address
.
getNetworkInterface
(),
'bar'
)
def
test_RemoveSinglePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
other_address
=
partition
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
default_address
=
partition
.
newContent
(
id
=
'default_network_interface'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[{
'addr'
:
'c'
,
'netmask'
:
'd'
,
}],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
1
)
address
=
address_list
[
0
]
self
.
assertEqual
(
address
.
getIpAddress
(),
'c'
)
self
.
assertEqual
(
address
.
getNetmask
(),
'd'
)
self
.
assertEqual
(
address
.
getNetworkInterface
(),
'bar'
)
self
.
assertEqual
(
address
.
getId
(),
'default_network_interface'
)
def
test_RemoveMultiplePartitionNetworkInformation
(
self
):
partition
=
self
.
computer
.
newContent
(
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
# No address in the empty partition
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
other_address
=
partition
.
newContent
(
id
=
'foo'
,
portal_type
=
'Internet Protocol Address'
,
)
default_address
=
partition
.
newContent
(
id
=
'default_network_interface'
,
portal_type
=
'Internet Protocol Address'
,
)
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
address_list
=
partition
.
contentValues
(
portal_type
=
'Internet Protocol Address'
)
self
.
assertEqual
(
len
(
address_list
),
0
)
#############################################
# Computer Partition information
#############################################
def
test_CreateSinglePartition
(
self
):
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
def
test_CreateMultiplePartition
(
self
):
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo1'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar1'
},
},{
'reference'
:
'foo2'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar2'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
2
)
partition
=
[
x
for
x
in
partition_list
\
if
x
.
getReference
()
==
'foo1'
][
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo1'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
partition
=
[
x
for
x
in
partition_list
\
if
x
.
getReference
()
!=
'foo1'
][
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo2'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
# Code does not enter in such state (yet?)
# def test_UpdateDraftSinglePartition(self):
# partition = self.computer.newContent(
# id='bar',
# reference='foo',
# portal_type='Computer Partition',
# )
# parameter_dict = {
# 'partition_list': [{
# 'reference': 'foo',
# 'address_list': [],
# 'tap': {'name': 'bar'},
# }],
# 'address': 'a',
# 'netmask': 'b',
# }
# self.computer.Computer_updateFromDict(parameter_dict)
#
# partition_list = self.computer.contentValues(
# portal_type='Computer Partition')
# self.assertEqual(len(partition_list), 1)
# partition = partition_list[0]
# self.assertEqual(partition.getReference(), 'foo')
# self.assertEqual(partition.getValidationState(), 'validated')
# self.assertEqual(partition.getSlapState(), 'free')
# self.assertEqual(partition.getId(), 'bar')
def
test_UpdateInvalidatedSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
validate
()
partition
.
invalidate
()
partition
.
markFree
()
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_UpdateValidatedSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
validate
()
partition
.
markFree
()
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_UpdateFreeSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markFree
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_UpdateBusySinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markFree
()
partition
.
markBusy
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'busy'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_UpdateInactiveSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markInactive
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[{
'reference'
:
'foo'
,
'address_list'
:
[],
'tap'
:
{
'name'
:
'bar'
},
}],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'validated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'free'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveDraftSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'draft'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'draft'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveInvalidatedSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
validate
()
partition
.
invalidate
()
partition
.
markFree
()
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'invalidated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'inactive'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveValidatedSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
validate
()
partition
.
markFree
()
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'invalidated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'inactive'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveFreeSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markFree
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'invalidated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'inactive'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveBusySinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markFree
()
partition
.
markBusy
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'invalidated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'busy'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
def
test_RemoveInactiveSinglePartition
(
self
):
partition
=
self
.
computer
.
newContent
(
id
=
'bar'
,
reference
=
'foo'
,
portal_type
=
'Computer Partition'
,
)
partition
.
markInactive
()
partition
.
validate
()
parameter_dict
=
{
'partition_list'
:
[],
'address'
:
'a'
,
'netmask'
:
'b'
,
}
self
.
computer
.
Computer_updateFromDict
(
parameter_dict
)
partition_list
=
self
.
computer
.
contentValues
(
portal_type
=
'Computer Partition'
)
self
.
assertEqual
(
len
(
partition_list
),
1
)
partition
=
partition_list
[
0
]
self
.
assertEqual
(
partition
.
getReference
(),
'foo'
)
self
.
assertEqual
(
partition
.
getValidationState
(),
'invalidated'
)
self
.
assertEqual
(
partition
.
getSlapState
(),
'inactive'
)
self
.
assertEqual
(
partition
.
getId
(),
'bar'
)
# def test_Computer_checkAndUpdateCapacityScope_no_capacity_quantity(self):
# self._makeTree()
# self.computer.edit(capacity_quantity=1)
# partition = self.computer.newContent(portal_type='Computer Partition',
# reference='part1')
# partition.markFree()
# partition.markBusy()
# partition.validate()
# self.software_instance.setAggregate(partition.getRelativeUrl())
# self.tic()
#
# self.computer.Computer_checkAndUpdateCapacityScope()
# self.assertEqual('close', self.computer.getCapacityScope())
# self.assertEqual('Computer capacity limit exceeded',
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
#
# def test_Computer_checkAndUpdateCapacityScope_no_access(self):
# self.computer.edit(reference='TESTC-%s' % self.generateNewId())
# self.computer.Computer_checkAndUpdateCapacityScope()
# self.assertEqual('close', self.computer.getCapacityScope())
# self.assertEqual("Computer didn't contact the server",
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
#
# def test_Computer_checkAndUpdateCapacityScope_close(self):
# self.computer.edit(capacity_scope='close')
# self.computer.Computer_checkAndUpdateCapacityScope()
# self.assertEqual('open', self.computer.getCapacityScope())
#
# def test_Computer_checkAndUpdateCapacityScope_with_error(self):
# memcached_dict = self.portal.portal_memcached.getMemcachedDict(
# key_prefix='slap_tool',
# plugin_path='portal_memcached/default_memcached_plugin')
# memcached_dict[self.computer.getReference()] = json.dumps({
# 'text': '#error not ok'
# })
# self.computer.Computer_checkAndUpdateCapacityScope()
# self.assertEqual('close', self.computer.getCapacityScope())
# self.assertEqual("Computer reported an error",
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
#
# def test_Computer_checkAndUpdateCapacityScope_with_error_non_public(self):
# memcached_dict = self.portal.portal_memcached.getMemcachedDict(
# key_prefix='slap_tool',
# plugin_path='portal_memcached/default_memcached_plugin')
# memcached_dict[self.computer.getReference()] = json.dumps({
# 'text': '#error not ok'
# })
# self.computer.edit(allocation_scope='open/personal')
# self.computer.Computer_checkAndUpdateCapacityScope()
# self.assertEqual('open', self.computer.getCapacityScope())
#
# def _simulateComputer_checkAndUpdateCapacityScope(self):
# script_name = 'Computer_checkAndUpdateCapacityScope'
# if script_name in self.portal.portal_skins.custom.objectIds():
# raise ValueError('Precondition failed: %s exists in custom' % script_name)
# createZODBPythonScript(self.portal.portal_skins.custom,
# script_name,
# '*args, **kwargs',
# '# Script body\n'
# """portal_workflow = context.portal_workflow
# portal_workflow.doActionFor(context, action='edit_action', comment='Visited by Computer_checkAndUpdateCapacityScope') """ )
# transaction.commit()
#
# def _dropComputer_checkAndUpdateCapacityScope(self):
# script_name = 'Computer_checkAndUpdateCapacityScope'
# if script_name in self.portal.portal_skins.custom.objectIds():
# self.portal.portal_skins.custom.manage_delObjects(script_name)
# transaction.commit()
#
# def test_alarm(self):
# self._simulateComputer_checkAndUpdateCapacityScope()
# try:
# self.portal.portal_alarms.slapos_update_computer_capacity_scope.activeSense()
# self.tic()
# finally:
# self._dropComputer_checkAndUpdateCapacityScope()
# self.assertEqual(
# 'Visited by Computer_checkAndUpdateCapacityScope',
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
#
# def test_alarm_non_public(self):
# self.computer.edit(allocation_scope='open/personal')
# self.tic()
# self._simulateComputer_checkAndUpdateCapacityScope()
# try:
# self.portal.portal_alarms.slapos_update_computer_capacity_scope.activeSense()
# self.tic()
# finally:
# self._dropComputer_checkAndUpdateCapacityScope()
# self.assertNotEqual(
# 'Visited by Computer_checkAndUpdateCapacityScope',
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
#
# def test_alarm_invalidated(self):
# self.computer.invalidate()
# self.tic()
# self._simulateComputer_checkAndUpdateCapacityScope()
# try:
# self.portal.portal_alarms.slapos_update_computer_capacity_scope.activeSense()
# self.tic()
# finally:
# self._dropComputer_checkAndUpdateCapacityScope()
# self.assertNotEqual(
# 'Visited by Computer_checkAndUpdateCapacityScope',
# self.computer.workflow_history['edit_workflow'][-1]['comment'])
master/bt5/slapos_slap_tool/bt/revision
View file @
117a957c
13
\ No newline at end of file
14
\ No newline at end of file
master/bt5/slapos_slap_tool/bt/template_test_id_list
View file @
117a957c
testSlapOSSlapTool
\ No newline at end of file
testSlapOSSlapTool
testSlapOSCoreComputerUpdateFromDict
\ 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