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
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Rafael Monnerat
slapos.core
Commits
7a85f1e3
Commit
7a85f1e3
authored
Nov 26, 2024
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Py3: assertEquals is deprecated ise assertEqual instead
parent
c0853f7b
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
116 deletions
+116
-116
master/bt5/slapos_crm/TestTemplateItem/portal_components/test.erp5.testSlapOSCRMMonitoringAlarm.py
...rtal_components/test.erp5.testSlapOSCRMMonitoringAlarm.py
+1
-1
master/bt5/slapos_crm/TestTemplateItem/portal_components/test.erp5.testSlapOSCRMSkins.py
...ateItem/portal_components/test.erp5.testSlapOSCRMSkins.py
+91
-91
master/bt5/slapos_erp5/TestTemplateItem/portal_components/test.erp5.testSlapOSERP5SubscriptionChangeRequestScenario.py
...t.erp5.testSlapOSERP5SubscriptionChangeRequestScenario.py
+24
-24
No files found.
master/bt5/slapos_crm/TestTemplateItem/portal_components/test.erp5.testSlapOSCRMMonitoringAlarm.py
View file @
7a85f1e3
...
...
@@ -690,7 +690,7 @@ class TestSlapOSCrmSoftwareInstance_checkInstanceTreeMonitoringState(TestSlapOSC
content_b
=
instance_b
.
workflow_history
[
'edit_workflow'
][
-
1
][
'comment'
]
# The alarm should group by project, so only one out of many should reached.
self
.
assertNotEqual
s
(
content_a
,
content_b
)
self
.
assertNotEqual
(
content_a
,
content_b
)
self
.
assertIn
(
'Visited by %s'
%
script_name
,
[
content_a
,
content_b
])
@
simulate
(
'Project_isSupportRequestCreationClosed'
,
''
,
'return 0'
)
...
...
master/bt5/slapos_crm/TestTemplateItem/portal_components/test.erp5.testSlapOSCRMSkins.py
View file @
7a85f1e3
This diff is collapsed.
Click to expand it.
master/bt5/slapos_erp5/TestTemplateItem/portal_components/test.erp5.testSlapOSERP5SubscriptionChangeRequestScenario.py
View file @
7a85f1e3
...
...
@@ -123,7 +123,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self
.
tic
()
self
.
logout
()
self
.
login
()
self
.
assertEqual
s
(
instance_tree
.
getDestinationSection
(),
self
.
assertEqual
(
instance_tree
.
getDestinationSection
(),
public_person2
.
getRelativeUrl
())
...
...
@@ -136,8 +136,8 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid'
:
subscription_change_request
.
getResourceUid
(),
}
inventory_list
=
self
.
portal
.
portal_simulation
.
getCurrentInventoryList
(
**
inventory_list_kw
)
self
.
assertEqual
s
(
1
,
len
(
inventory_list
))
self
.
assertEqual
s
(
0
,
inventory_list
[
0
].
total_quantity
)
self
.
assertEqual
(
1
,
len
(
inventory_list
))
self
.
assertEqual
(
0
,
inventory_list
[
0
].
total_quantity
)
# Seller only sold 1 month
inventory_list_kw
=
{
...
...
@@ -149,9 +149,9 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid'
:
subscription_change_request
.
getResourceUid
(),
}
inventory_list
=
self
.
portal
.
portal_simulation
.
getCurrentInventoryList
(
**
inventory_list_kw
)
self
.
assertEqual
s
(
1
,
len
(
inventory_list
))
self
.
assertEqual
(
1
,
len
(
inventory_list
))
# 2 - 0.42 (13 days of 31) - 0.1 (3 days of 31) + 1 - 0.83 (24 days of 29)
self
.
assertAlmostEqual
s
(
-
1.65
,
inventory_list
[
0
].
total_quantity
)
self
.
assertAlmostEqual
(
-
1.65
,
inventory_list
[
0
].
total_quantity
)
inventory_list_kw
=
{
'group_by_section'
:
False
,
...
...
@@ -160,12 +160,12 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid'
:
subscription_change_request
.
getResourceUid
(),
}
inventory_list
=
self
.
portal
.
portal_simulation
.
getCurrentInventoryList
(
**
inventory_list_kw
)
self
.
assertEqual
s
(
3
,
len
(
inventory_list
))
self
.
assertEqual
(
3
,
len
(
inventory_list
))
# tracking_list = instance_tree.Item_getTrackingList()
# self.assertEqual
s
(2, len(tracking_list))
# self.assertEqual(2, len(tracking_list))
# XXX TODO self.assertEqual
s
(None, self.portal.portal_simulation.getInventoryList())
# XXX TODO self.assertEqual(None, self.portal.portal_simulation.getInventoryList())
# Ensure no unexpected object has been created
# 2 credential request
...
...
@@ -246,13 +246,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self
.
tic
()
self
.
logout
()
self
.
login
()
self
.
assertEqual
s
(
new_trade_condition
.
getDestination
(),
self
.
assertEqual
(
new_trade_condition
.
getDestination
(),
owner_person
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_trade_condition
.
getDestinationSection
(),
self
.
assertEqual
(
new_trade_condition
.
getDestinationSection
(),
owner_organisation
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_trade_condition
.
getPortalType
(),
self
.
assertEqual
(
new_trade_condition
.
getPortalType
(),
'Sale Trade Condition'
)
self
.
assertEqual
s
(
subscription_request
.
getSimulationState
(),
self
.
assertEqual
(
subscription_request
.
getSimulationState
(),
'cancelled'
)
new_subscription_request
=
self
.
portal
.
portal_catalog
.
getResultValue
(
...
...
@@ -260,11 +260,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
aggregate__uid
=
project
.
getUid
(),
simulation_state
=
'submitted'
)
self
.
assertEqual
s
(
new_subscription_request
.
getDestination
(),
self
.
assertEqual
(
new_subscription_request
.
getDestination
(),
owner_person
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_subscription_request
.
getDestinationSection
(),
self
.
assertEqual
(
new_subscription_request
.
getDestinationSection
(),
owner_organisation
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_subscription_request
.
getSimulationState
(),
self
.
assertEqual
(
new_subscription_request
.
getSimulationState
(),
'submitted'
)
# If the script is called a second time,
...
...
@@ -274,7 +274,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
new_subscription_request
.
getReference
(),
None
)
self
.
assertEqual
s
(
new_subscription_request
.
getRelativeUrl
(),
self
.
assertEqual
(
new_subscription_request
.
getRelativeUrl
(),
new_subscription_request_2
.
getRelativeUrl
())
# Ensure no unexpected object has been created
...
...
@@ -367,13 +367,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self
.
tic
()
self
.
logout
()
self
.
login
()
self
.
assertEqual
s
(
new_trade_condition
.
getDestination
(),
self
.
assertEqual
(
new_trade_condition
.
getDestination
(),
owner_person
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_trade_condition
.
getDestinationSection
(),
self
.
assertEqual
(
new_trade_condition
.
getDestinationSection
(),
owner_organisation
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_trade_condition
.
getPortalType
(),
self
.
assertEqual
(
new_trade_condition
.
getPortalType
(),
'Sale Trade Condition'
)
self
.
assertEqual
s
(
subscription_request
.
getSimulationState
(),
self
.
assertEqual
(
subscription_request
.
getSimulationState
(),
'cancelled'
)
new_subscription_request
=
self
.
portal
.
portal_catalog
.
getResultValue
(
...
...
@@ -381,11 +381,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
aggregate__reference
=
compute_node_id
,
simulation_state
=
'submitted'
)
self
.
assertEqual
s
(
new_subscription_request
.
getDestination
(),
self
.
assertEqual
(
new_subscription_request
.
getDestination
(),
owner_person
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_subscription_request
.
getDestinationSection
(),
self
.
assertEqual
(
new_subscription_request
.
getDestinationSection
(),
owner_organisation
.
getRelativeUrl
())
self
.
assertEqual
s
(
new_subscription_request
.
getSimulationState
(),
self
.
assertEqual
(
new_subscription_request
.
getSimulationState
(),
'submitted'
)
# If the script is called a second time,
...
...
@@ -395,7 +395,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
new_subscription_request
.
getReference
(),
None
)
self
.
assertEqual
s
(
new_subscription_request
.
getRelativeUrl
(),
self
.
assertEqual
(
new_subscription_request
.
getRelativeUrl
(),
new_subscription_request_2
.
getRelativeUrl
())
# Ensure no unexpected object has been created
...
...
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