Commit 7a85f1e3 authored by Rafael Monnerat's avatar Rafael Monnerat

Py3: assertEquals is deprecated ise assertEqual instead

parent c0853f7b
...@@ -690,7 +690,7 @@ class TestSlapOSCrmSoftwareInstance_checkInstanceTreeMonitoringState(TestSlapOSC ...@@ -690,7 +690,7 @@ class TestSlapOSCrmSoftwareInstance_checkInstanceTreeMonitoringState(TestSlapOSC
content_b = instance_b.workflow_history['edit_workflow'][-1]['comment'] content_b = instance_b.workflow_history['edit_workflow'][-1]['comment']
# The alarm should group by project, so only one out of many should reached. # The alarm should group by project, so only one out of many should reached.
self.assertNotEquals(content_a, content_b) self.assertNotEqual(content_a, content_b)
self.assertIn('Visited by %s' % script_name, [content_a, content_b]) self.assertIn('Visited by %s' % script_name, [content_a, content_b])
@simulate('Project_isSupportRequestCreationClosed', '', 'return 0') @simulate('Project_isSupportRequestCreationClosed', '', 'return 0')
......
...@@ -123,7 +123,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -123,7 +123,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self.tic() self.tic()
self.logout() self.logout()
self.login() self.login()
self.assertEquals(instance_tree.getDestinationSection(), self.assertEqual(instance_tree.getDestinationSection(),
public_person2.getRelativeUrl()) public_person2.getRelativeUrl())
...@@ -136,8 +136,8 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -136,8 +136,8 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid': subscription_change_request.getResourceUid(), 'resource_uid': subscription_change_request.getResourceUid(),
} }
inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw) inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw)
self.assertEquals(1, len(inventory_list)) self.assertEqual(1, len(inventory_list))
self.assertEquals(0, inventory_list[0].total_quantity) self.assertEqual(0, inventory_list[0].total_quantity)
# Seller only sold 1 month # Seller only sold 1 month
inventory_list_kw = { inventory_list_kw = {
...@@ -149,9 +149,9 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -149,9 +149,9 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid': subscription_change_request.getResourceUid(), 'resource_uid': subscription_change_request.getResourceUid(),
} }
inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw) inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw)
self.assertEquals(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) # 2 - 0.42 (13 days of 31) - 0.1 (3 days of 31) + 1 - 0.83 (24 days of 29)
self.assertAlmostEquals(-1.65, inventory_list[0].total_quantity) self.assertAlmostEqual(-1.65, inventory_list[0].total_quantity)
inventory_list_kw = { inventory_list_kw = {
'group_by_section': False, 'group_by_section': False,
...@@ -160,12 +160,12 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -160,12 +160,12 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
'resource_uid': subscription_change_request.getResourceUid(), 'resource_uid': subscription_change_request.getResourceUid(),
} }
inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw) inventory_list = self.portal.portal_simulation.getCurrentInventoryList(**inventory_list_kw)
self.assertEquals(3, len(inventory_list)) self.assertEqual(3, len(inventory_list))
# tracking_list = instance_tree.Item_getTrackingList() # tracking_list = instance_tree.Item_getTrackingList()
# self.assertEquals(2, len(tracking_list)) # self.assertEqual(2, len(tracking_list))
# XXX TODO self.assertEquals(None, self.portal.portal_simulation.getInventoryList()) # XXX TODO self.assertEqual(None, self.portal.portal_simulation.getInventoryList())
# Ensure no unexpected object has been created # Ensure no unexpected object has been created
# 2 credential request # 2 credential request
...@@ -246,13 +246,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -246,13 +246,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self.tic() self.tic()
self.logout() self.logout()
self.login() self.login()
self.assertEquals(new_trade_condition.getDestination(), self.assertEqual(new_trade_condition.getDestination(),
owner_person.getRelativeUrl()) owner_person.getRelativeUrl())
self.assertEquals(new_trade_condition.getDestinationSection(), self.assertEqual(new_trade_condition.getDestinationSection(),
owner_organisation.getRelativeUrl()) owner_organisation.getRelativeUrl())
self.assertEquals(new_trade_condition.getPortalType(), self.assertEqual(new_trade_condition.getPortalType(),
'Sale Trade Condition') 'Sale Trade Condition')
self.assertEquals(subscription_request.getSimulationState(), self.assertEqual(subscription_request.getSimulationState(),
'cancelled') 'cancelled')
new_subscription_request = self.portal.portal_catalog.getResultValue( new_subscription_request = self.portal.portal_catalog.getResultValue(
...@@ -260,11 +260,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -260,11 +260,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
aggregate__uid=project.getUid(), aggregate__uid=project.getUid(),
simulation_state='submitted' simulation_state='submitted'
) )
self.assertEquals(new_subscription_request.getDestination(), self.assertEqual(new_subscription_request.getDestination(),
owner_person.getRelativeUrl()) owner_person.getRelativeUrl())
self.assertEquals(new_subscription_request.getDestinationSection(), self.assertEqual(new_subscription_request.getDestinationSection(),
owner_organisation.getRelativeUrl()) owner_organisation.getRelativeUrl())
self.assertEquals(new_subscription_request.getSimulationState(), self.assertEqual(new_subscription_request.getSimulationState(),
'submitted') 'submitted')
# If the script is called a second time, # If the script is called a second time,
...@@ -274,7 +274,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -274,7 +274,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
new_subscription_request.getReference(), new_subscription_request.getReference(),
None None
) )
self.assertEquals(new_subscription_request.getRelativeUrl(), self.assertEqual(new_subscription_request.getRelativeUrl(),
new_subscription_request_2.getRelativeUrl()) new_subscription_request_2.getRelativeUrl())
# Ensure no unexpected object has been created # Ensure no unexpected object has been created
...@@ -367,13 +367,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -367,13 +367,13 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
self.tic() self.tic()
self.logout() self.logout()
self.login() self.login()
self.assertEquals(new_trade_condition.getDestination(), self.assertEqual(new_trade_condition.getDestination(),
owner_person.getRelativeUrl()) owner_person.getRelativeUrl())
self.assertEquals(new_trade_condition.getDestinationSection(), self.assertEqual(new_trade_condition.getDestinationSection(),
owner_organisation.getRelativeUrl()) owner_organisation.getRelativeUrl())
self.assertEquals(new_trade_condition.getPortalType(), self.assertEqual(new_trade_condition.getPortalType(),
'Sale Trade Condition') 'Sale Trade Condition')
self.assertEquals(subscription_request.getSimulationState(), self.assertEqual(subscription_request.getSimulationState(),
'cancelled') 'cancelled')
new_subscription_request = self.portal.portal_catalog.getResultValue( new_subscription_request = self.portal.portal_catalog.getResultValue(
...@@ -381,11 +381,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -381,11 +381,11 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
aggregate__reference=compute_node_id, aggregate__reference=compute_node_id,
simulation_state='submitted' simulation_state='submitted'
) )
self.assertEquals(new_subscription_request.getDestination(), self.assertEqual(new_subscription_request.getDestination(),
owner_person.getRelativeUrl()) owner_person.getRelativeUrl())
self.assertEquals(new_subscription_request.getDestinationSection(), self.assertEqual(new_subscription_request.getDestinationSection(),
owner_organisation.getRelativeUrl()) owner_organisation.getRelativeUrl())
self.assertEquals(new_subscription_request.getSimulationState(), self.assertEqual(new_subscription_request.getSimulationState(),
'submitted') 'submitted')
# If the script is called a second time, # If the script is called a second time,
...@@ -395,7 +395,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe ...@@ -395,7 +395,7 @@ class TestSlapOSSubscriptionChangeRequestScenario(TestSlapOSSubscriptionChangeRe
new_subscription_request.getReference(), new_subscription_request.getReference(),
None None
) )
self.assertEquals(new_subscription_request.getRelativeUrl(), self.assertEqual(new_subscription_request.getRelativeUrl(),
new_subscription_request_2.getRelativeUrl()) new_subscription_request_2.getRelativeUrl())
# Ensure no unexpected object has been created # Ensure no unexpected object has been created
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment