forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
group_test.py
204 lines (184 loc) · 10.3 KB
/
group_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import sys
import unittest
from base_test_class import BaseTestCase
from selenium.common.exceptions import NoSuchElementException, TimeoutException
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import Select, WebDriverWait
from user_test import UserTest
class GroupTest(BaseTestCase):
def test_create_group(self):
# Login to the site.
driver = self.driver
# Navigate to the Group managegement page
driver.get(self.base_url + "group")
# "Click" the dropdown button to see options
driver.find_element(By.ID, "dropdownMenu1").click()
# "Click" the add group button
driver.find_element(By.LINK_TEXT, "New Group").click()
# Fill in the Necessary group Details
# name
driver.find_element(By.ID, "id_name").clear()
driver.find_element(By.ID, "id_name").send_keys("Group Name")
# "Click" the submit button to complete the transaction
driver.find_element(By.CSS_SELECTOR, "input.btn.btn-primary").click()
# Assert status is success
self.assertTrue(self.is_success_message_present(text="Group was added successfully."))
def test_group_edit_name_and_global_role(self):
# Login to the site. Password will have to be modified
# to match an admin password in your own container
driver = self.driver
# Navigate to Group Management page
driver.get(self.base_url + "group")
# Select the previously created group to edit
# The name is not clickable
# so we would have to select specific group by filtering list of groups
driver.find_element(By.ID, "show-filters").click()
# Insert name to filter by into name box
driver.find_element(By.ID, "id_name").clear()
driver.find_element(By.ID, "id_name").send_keys("Group Name")
# click on 'apply filter' button
driver.find_element(By.CSS_SELECTOR, "button.btn.btn-sm.btn-secondary").click()
# only the needed group is now available, proceed with opening the context menu and clicking 'Edit' button
driver.find_element(By.ID, "dropdownMenuGroup").click()
driver.find_element(By.ID, "editGroup").click()
# Edit name
driver.find_element(By.ID, "id_name").clear()
driver.find_element(By.ID, "id_name").send_keys("Another Name")
# Select the role 'Reader'
Select(driver.find_element(By.ID, "id_role")).select_by_visible_text("Reader")
# "Click" the submit button to complete the transaction
driver.find_element(By.CSS_SELECTOR, "input.btn.btn-primary").click()
# Assert status is success
self.assertTrue(self.is_success_message_present(text="Group saved successfully."))
def test_add_group_member(self):
# Login to the site. Password will have to be modified
# to match an admin password in your own container
driver = self.driver
# Navigate to Group Management page
driver.get(self.base_url + "group")
# Select and click on the particular group to view
driver.find_element(By.LINK_TEXT, "Another Name").click()
# Open the menu to add users and click the 'Add' button
driver.find_element(By.ID, "dropdownMenuAddGroupMember").click()
driver.find_element(By.ID, "addGroupMember").click()
# Select the user 'propersahm'
try:
WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.ID, "id_users")))
except TimeoutException:
self.fail("Timed out waiting for products dropdown to initialize ")
driver.execute_script("document.getElementsByName('users')[0].style.display = 'inline'")
element = driver.find_element(By.XPATH, "//select[@name='users']")
user_option = element.find_elements(By.TAG_NAME, "option")[0]
Select(element).select_by_value(user_option.get_attribute("value"))
# Select the role 'Reader'
Select(driver.find_element(By.ID, "id_role")).select_by_visible_text("Reader")
# "Click" the submit button to complete the transaction
driver.find_element(By.CSS_SELECTOR, "input.btn.btn-primary").click()
# Assert the message to determine success status
self.assertTrue(self.is_success_message_present(text="Group members added successfully."))
# Query the site to determine if the member has been added
self.assertEqual(driver.find_elements(By.NAME, "member_user")[1].text, "Proper Samuel (propersahm)")
self.assertEqual(driver.find_elements(By.NAME, "member_role")[1].text, "Reader")
def test_edit_group_member(self):
# Login to the site. Password will have to be modified
# to match an admin password in your own container
driver = self.driver
# Navigate to Group Management page
driver.get(self.base_url + "group")
# Select and click on the particular group to view
driver.find_element(By.LINK_TEXT, "Another Name").click()
# Open the menu to manage members and click the 'Edit' button
driver.find_elements(By.NAME, "dropdownManageGroupMembers")[1].click()
driver.find_elements(By.NAME, "editGroupMember")[1].click()
# Select the role 'Maintainer'
Select(driver.find_element(By.ID, "id_role")).select_by_visible_text("Maintainer")
# "Click" the submit button to complete the transaction
driver.find_element(By.CSS_SELECTOR, "input.btn.btn-primary").click()
# Assert the message to determine success status
self.assertTrue(self.is_success_message_present(text="Group member updated successfully"))
# Query the site to determine if the member has been edited
self.assertEqual(driver.find_elements(By.NAME, "member_user")[1].text, "Proper Samuel (propersahm)")
self.assertEqual(driver.find_elements(By.NAME, "member_role")[1].text, "Maintainer")
def test_delete_group_member(self):
# Login to the site. Password will have to be modified
# to match an admin password in your own container
driver = self.driver
# Navigate to Group Management page
driver.get(self.base_url + "group")
# Select and click on the particular group to view
driver.find_element(By.LINK_TEXT, "Another Name").click()
# Open the menu to manage members and click the 'Delete' button
driver.find_elements(By.NAME, "dropdownManageGroupMembers")[1].click()
driver.find_elements(By.NAME, "deleteGroupMember")[1].click()
# "Click" the submit button to complete the transaction
driver.find_element(By.CSS_SELECTOR, "input.btn.btn-danger").click()
# Assert the message to determine success status
self.assertTrue(self.is_success_message_present(text="Group member deleted successfully."))
def test_group_delete(self):
# Login to the site. Password will have to be modified
# to match an admin password in your own container
driver = self.driver
# Navigate to the Group management page
driver.get(self.base_url + "group")
# Select the previously created group to edit
# The name is not clickable
# so we would have to select specific group by filtering list of groups
driver.find_element(By.ID, "show-filters").click()
# Insert name to filter by into name box
driver.find_element(By.ID, "id_name").clear()
driver.find_element(By.ID, "id_name").send_keys("Another Name")
# click on 'apply filter' button
driver.find_element(By.CSS_SELECTOR, "button.btn.btn-sm.btn-secondary").click()
# only the needed group is now available, proceed with clicking 'Delete' button
driver.find_element(By.ID, "dropdownMenuGroup").click()
driver.find_element(By.ID, "deleteGroup").click()
# confirm deletion, by clicking delete a second time
driver.find_element(By.CSS_SELECTOR, "button.btn.btn-danger").click()
# Assert status is success
self.assertTrue(self.is_success_message_present(text="Group and relationships successfully removed."))
def test_group_edit_configuration(self):
# Login as standard user and check the user menu does not exist
driver = self.driver
self.login_standard_page()
with self.assertRaises(NoSuchElementException):
driver.find_element(By.ID, "id_group_menu")
# Login as superuser and activate view user configuration for group with standard user
self.login_page()
# Navigate to Group Management page
driver.get(self.base_url + "group")
# Select and click on the particular group to view
driver.find_element(By.LINK_TEXT, "Another Name").click()
# Open the menu to manage members and click the 'Edit' button
# Select view user permission
driver.find_element(By.ID, "id_view_group").click()
# Login as standard user and check the user menu does exist now
self.login_standard_page()
driver.find_element(By.ID, "id_group_menu")
# Navigate to User Management page
driver.get(self.base_url + "group")
# Select and click on the particular group to view
driver.find_element(By.LINK_TEXT, "Another Name").click()
# Check user cannot edit configuration permissions
self.assertFalse(self.driver.find_element(By.ID, "id_add_development_environment").is_enabled())
def suite():
suite = unittest.TestSuite()
# Add each test the the suite to be run
# success and failure is output by the test
suite.addTest(BaseTestCase("test_login"))
suite.addTest(UserTest("test_create_user"))
suite.addTest(GroupTest("test_create_group"))
suite.addTest(GroupTest("test_group_edit_name_and_global_role"))
suite.addTest(GroupTest("test_add_group_member"))
suite.addTest(GroupTest("test_group_edit_configuration"))
suite.addTest(BaseTestCase("test_login"))
suite.addTest(GroupTest("test_edit_group_member"))
suite.addTest(GroupTest("test_delete_group_member"))
suite.addTest(GroupTest("test_group_delete"))
suite.addTest(UserTest("test_user_delete"))
return suite
if __name__ == "__main__":
runner = unittest.TextTestRunner(descriptions=True, failfast=True, verbosity=2)
ret = not runner.run(suite()).wasSuccessful()
BaseTestCase.tearDownDriver()
sys.exit(ret)