Skip to content
Snippets Groups Projects
Commit 21a839ee authored by Mario Raciti's avatar Mario Raciti
Browse files

TMSS-445-merge: Improve test for transformed_output_dataproduct action

parent 527496b0
No related branches found
No related tags found
1 merge request!378Resolve TMSS-445 "Merge"
...@@ -313,11 +313,10 @@ class SystemPermissionTestCase(unittest.TestCase): ...@@ -313,11 +313,10 @@ class SystemPermissionTestCase(unittest.TestCase):
self.assertTrue(user.has_perm('tmssapp.process_feedback_and_set_to_finished_if_complete_subtask')) self.assertTrue(user.has_perm('tmssapp.process_feedback_and_set_to_finished_if_complete_subtask'))
# Try to process_feedback_and_set_to_finished_if_complete subtask and assert Paulus can do it within the TO observer group permissions.
with tmss_test_env.create_tmss_client() as client: with tmss_test_env.create_tmss_client() as client:
client.set_subtask_status(self.obs_subtask_id, 'finishing') client.set_subtask_status(self.obs_subtask_id, 'finishing')
response = POST_and_assert_expected_response(self, BASE_URL + '/subtask/%s/process_feedback_and_set_to_finished_if_complete/' % self.obs_subtask_id,
# Try to process_feedback_and_set_to_finished_if_complete subtask and assert Paulus can do it within the TO observer group permissions.
response = POST_and_assert_expected_response(self, BASE_URL + '/subtask/%s/process_feedback_and_set_to_finished_if_complete/' % self.obs_subtask_id,
{}, 200, {}, {}, 200, {},
auth=self.test_data_creator.auth) auth=self.test_data_creator.auth)
...@@ -530,11 +529,12 @@ class SystemPermissionTestCase(unittest.TestCase): ...@@ -530,11 +529,12 @@ class SystemPermissionTestCase(unittest.TestCase):
# Try to transformed_output_dataproduct subtask and assert Paulus can do it within the TO observer group permissions. # Try to transformed_output_dataproduct subtask and assert Paulus can do it within the TO observer group permissions.
with tmss_test_env.create_tmss_client() as client: with tmss_test_env.create_tmss_client() as client:
# NOTE: A 404 error is returned because of missing input_dataproducts, not related to user's permissions. idps_n = len(client.get_subtask_input_dataproducts(self.obs_subtask_id))
self.assertEqual(len(client.get_subtask_input_dataproducts(self.obs_subtask_id)), 0) # NOTE: A 404 Not found error is returned if input_dataproducts are missing. It is not related to user's permissions.
expected_status_code = 404 if idps_n is 0 else 200
response = GET_and_assert_equal_expected_code(self, BASE_URL + '/subtask/%s/transformed_output_dataproduct?input_dataproduct_id=%s' % ( response = GET_and_assert_equal_expected_code(self, BASE_URL + '/subtask/%s/transformed_output_dataproduct?input_dataproduct_id=%s' % (
self.obs_subtask_id, 1), self.obs_subtask_id, 1),
404, expected_status_code,
auth=self.test_data_creator.auth) auth=self.test_data_creator.auth)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment