-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#200 - Fixing test_archive_license_requests_feature and test_unarchive_license_requests_feature #457
base: main
Are you sure you want to change the base?
#200 - Fixing test_archive_license_requests_feature and test_unarchive_license_requests_feature #457
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -3,6 +3,7 @@ | |||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
from django.test import TestCase | ||||||||||||||||||||||||||||||||
from unittest import skipIf | ||||||||||||||||||||||||||||||||
from unittest.mock import patch | ||||||||||||||||||||||||||||||||
from src.secret import getAccessToken, getGithubUserId, getGithubUserName | ||||||||||||||||||||||||||||||||
from django.contrib.auth.models import User | ||||||||||||||||||||||||||||||||
from django.conf import settings | ||||||||||||||||||||||||||||||||
|
@@ -31,6 +32,33 @@ | |||||||||||||||||||||||||||||||
def getExamplePath(filename): | ||||||||||||||||||||||||||||||||
return os.path.join(settings.EXAMPLES_DIR, filename) | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
class TestUtil(TestCase): | ||||||||||||||||||||||||||||||||
def gitHubLogin(self): | ||||||||||||||||||||||||||||||||
TEST_LOGIN_INFO = { | ||||||||||||||||||||||||||||||||
"provider": "github", | ||||||||||||||||||||||||||||||||
"uid": str(getGithubUserId()), | ||||||||||||||||||||||||||||||||
"access_token": getAccessToken(), | ||||||||||||||||||||||||||||||||
"login": getGithubUserName(), | ||||||||||||||||||||||||||||||||
"id": getGithubUserId(), | ||||||||||||||||||||||||||||||||
"password": 'pass' | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
# login first | ||||||||||||||||||||||||||||||||
self.user = User.objects.create(username=TEST_LOGIN_INFO["login"], | ||||||||||||||||||||||||||||||||
is_active=True, | ||||||||||||||||||||||||||||||||
is_superuser=True) | ||||||||||||||||||||||||||||||||
self.user.set_password(TEST_LOGIN_INFO["password"]) | ||||||||||||||||||||||||||||||||
self.user.save() | ||||||||||||||||||||||||||||||||
social_auth = UserSocialAuth.objects.create(provider=TEST_LOGIN_INFO["provider"], | ||||||||||||||||||||||||||||||||
uid=TEST_LOGIN_INFO["uid"], | ||||||||||||||||||||||||||||||||
extra_data=TEST_LOGIN_INFO, | ||||||||||||||||||||||||||||||||
user=self.user) | ||||||||||||||||||||||||||||||||
self.user = authenticate(username=TEST_LOGIN_INFO["login"], | ||||||||||||||||||||||||||||||||
password=TEST_LOGIN_INFO["password"]) | ||||||||||||||||||||||||||||||||
login = self.client.login(username=TEST_LOGIN_INFO["login"], | ||||||||||||||||||||||||||||||||
password=TEST_LOGIN_INFO["password"]) | ||||||||||||||||||||||||||||||||
return login | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
class IndexViewsTestCase(TestCase): | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
def test_index(self): | ||||||||||||||||||||||||||||||||
|
@@ -1106,40 +1134,52 @@ def test_error_archive_license_requests(self): | |||||||||||||||||||||||||||||||
@skipIf(not getAccessToken() and not getGithubUserId() and not getGithubUserName(), "You need to set gihub parameters in the secret.py file for this test to be executed properly.") | ||||||||||||||||||||||||||||||||
def test_archive_license_requests_feature(self): | ||||||||||||||||||||||||||||||||
"""Check if the license is shifted to archive requests when archive button is pressed""" | ||||||||||||||||||||||||||||||||
login = TestUtil.gitHubLogin(self) | ||||||||||||||||||||||||||||||||
self.assertTrue(login) | ||||||||||||||||||||||||||||||||
cookie = self.client.cookies['sessionid'] | ||||||||||||||||||||||||||||||||
driver = self.selenium | ||||||||||||||||||||||||||||||||
driver.get(self.live_server_url+'/app/license_requests/') | ||||||||||||||||||||||||||||||||
table_contents = driver.find_element_by_css_selector('tbody').text | ||||||||||||||||||||||||||||||||
self.assertEqual(table_contents, "No data available in table") | ||||||||||||||||||||||||||||||||
license_obj = LicenseRequest.objects.create(fullname="BSD Zero Clause License-00", shortIdentifier="0BSD") | ||||||||||||||||||||||||||||||||
driver.refresh() | ||||||||||||||||||||||||||||||||
license_name = driver.find_element_by_css_selector('td').text | ||||||||||||||||||||||||||||||||
self.assertEqual(license_name, "BSD Zero Clause License-00") | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=license_obj.id).archive, False) | ||||||||||||||||||||||||||||||||
if driver.find_element_by_id('archive_button' + str(license_obj.id)): | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('archive_button' + str(license_obj.id)).click() | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('confirm_archive').click() | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=license_obj.id).archive, True) | ||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||
with patch('app.utils.checkPermission') as mock_checkPermission: | ||||||||||||||||||||||||||||||||
mock_checkPermission.return_value = True | ||||||||||||||||||||||||||||||||
driver.get(self.live_server_url+'/app/license_requests/') | ||||||||||||||||||||||||||||||||
driver.add_cookie({'name': 'sessionid', 'value': cookie.value, 'secure': False, 'path': '/'}) | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. E501: line too long (105 > 79 characters) ❗❗ 11 similar findings have been found in this PR 🔎 Expand here to view all instances of this finding
Showing 10 of 11 findings. Visit the Lift Web Console to see all. ℹ️ Expand to see all @sonatype-lift commandsYou can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
Note: When talking to LiftBot, you need to refresh the page to see its response. Help us improve LIFT! (Sonatype LiftBot external survey) Was this a good recommendation for you? Answering this survey will not impact your Lift settings. [ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ] There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sonatype-lift ignoreall There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ignoreall command is active on this PR, all the existing Lift issues are ignored. |
||||||||||||||||||||||||||||||||
table_contents = driver.find_element_by_css_selector('tbody').text | ||||||||||||||||||||||||||||||||
self.assertEqual(table_contents, "No data available in table") | ||||||||||||||||||||||||||||||||
license_obj = LicenseRequest.objects.create(fullname="BSD Zero Clause License-00", shortIdentifier="0BSD") | ||||||||||||||||||||||||||||||||
driver.refresh() | ||||||||||||||||||||||||||||||||
license_name = driver.find_element_by_css_selector('td').text | ||||||||||||||||||||||||||||||||
self.assertEqual(license_name, "BSD Zero Clause License-00") | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=license_obj.id).archive, False) | ||||||||||||||||||||||||||||||||
if driver.find_element_by_id('archive_button' + str(license_obj.id)): | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('archive_button' + str(license_obj.id)).click() | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('confirm_archive').click() | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=license_obj.id).archive, True) | ||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
@skipIf(not getAccessToken() and not getGithubUserId() and not getGithubUserName(), "You need to set gihub parameters in the secret.py file for this test to be executed properly.") | ||||||||||||||||||||||||||||||||
def test_unarchive_license_requests_feature(self): | ||||||||||||||||||||||||||||||||
"""Check if license is shifted back to license requests when unarchive button is pressed""" | ||||||||||||||||||||||||||||||||
login = TestUtil.gitHubLogin(self) | ||||||||||||||||||||||||||||||||
self.assertTrue(login) | ||||||||||||||||||||||||||||||||
cookie = self.client.cookies['sessionid'] | ||||||||||||||||||||||||||||||||
driver = self.selenium | ||||||||||||||||||||||||||||||||
driver.get(self.live_server_url+'/app/archive_requests/') | ||||||||||||||||||||||||||||||||
table_contents = driver.find_element_by_css_selector('tbody').text | ||||||||||||||||||||||||||||||||
self.assertEqual(table_contents, "No data available in table") | ||||||||||||||||||||||||||||||||
archive_license_obj = LicenseRequest.objects.create(fullname="BSD Zero Clause License-00", shortIdentifier="0BSD", archive="True") | ||||||||||||||||||||||||||||||||
driver.refresh() | ||||||||||||||||||||||||||||||||
license_name = driver.find_element_by_css_selector('td').text | ||||||||||||||||||||||||||||||||
self.assertEqual(license_name, "BSD Zero Clause License-00") | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=archive_license_obj.id).archive, True) | ||||||||||||||||||||||||||||||||
if driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)): | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)).click() | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('confirm_unarchive').click() | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=archive_license_obj.id).archive, False) | ||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||
with patch('app.utils.checkPermission') as mock_checkPermission: | ||||||||||||||||||||||||||||||||
mock_checkPermission.return_value = True | ||||||||||||||||||||||||||||||||
driver.get(self.live_server_url+'/app/archive_requests/') | ||||||||||||||||||||||||||||||||
driver.add_cookie({'name': 'sessionid', 'value': cookie.value, 'secure': False, 'path': '/'}) | ||||||||||||||||||||||||||||||||
table_contents = driver.find_element_by_css_selector('tbody').text | ||||||||||||||||||||||||||||||||
self.assertEqual(table_contents, "No data available in table") | ||||||||||||||||||||||||||||||||
archive_license_obj = LicenseRequest.objects.create(fullname="BSD Zero Clause License-00", shortIdentifier="0BSD", archive="True") | ||||||||||||||||||||||||||||||||
driver.refresh() | ||||||||||||||||||||||||||||||||
license_name = driver.find_element_by_css_selector('td').text | ||||||||||||||||||||||||||||||||
self.assertEqual(license_name, "BSD Zero Clause License-00") | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=archive_license_obj.id).archive, True) | ||||||||||||||||||||||||||||||||
if driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)): | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('unarchive_button' + str(archive_license_obj.id)).click() | ||||||||||||||||||||||||||||||||
driver.find_element_by_id('confirm_unarchive').click() | ||||||||||||||||||||||||||||||||
self.assertEqual(LicenseRequest.objects.get(id=archive_license_obj.id).archive, False) | ||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
class SubmitNewLicenseViewsTestCase(TestCase): | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
E302: expected 2 blank lines, found 1
ℹ️ Expand to see all @sonatype-lift commands
You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
@sonatype-lift ignore
@sonatype-lift ignoreall
@sonatype-lift exclude <file|issue|path|tool>
file|issue|path|tool
from Lift findings by updating your config.toml fileNote: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.
Help us improve LIFT! (Sonatype LiftBot external survey)
Was this a good recommendation for you? Answering this survey will not impact your Lift settings.
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]