new: Method `sharing_group_exists`

pull/779/head
Jakub Onderka 2021-06-22 17:20:13 +02:00 committed by Raphaël Vinot
parent b963c41716
commit 9e71e859e9
1 changed files with 4 additions and 0 deletions

View File

@ -2099,6 +2099,10 @@ class TestComprehensive(unittest.TestCase):
r = self.admin_misp_connector.update_sharing_group({"releasability": "Testing updated"}, sharing_group)
self.assertEqual(sharing_group.releasability, 'Testing updated')
# Test `sharing_group_exists` method
self.assertTrue(self.admin_misp_connector.sharing_group_exists(sharing_group))
self.assertTrue(self.admin_misp_connector.sharing_group_exists(sharing_group.id))
self.assertTrue(self.admin_misp_connector.sharing_group_exists(sharing_group.uuid))
# add org
r = self.admin_misp_connector.add_org_to_sharing_group(sharing_group,
self.test_org, extend=True)