summaryrefslogtreecommitdiff
path: root/ishtar_common/tests.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2023-04-11 12:27:23 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2023-04-17 15:47:16 +0200
commit367059ddef14a495e277f68ceaf3455c092f839d (patch)
treeae625ff0265fecd122946c71d3a2d6afefae4817 /ishtar_common/tests.py
parentff5aee7158bd46e4ae22bc431adadd7060a6e277 (diff)
downloadIshtar-367059ddef14a495e277f68ceaf3455c092f839d.tar.bz2
Ishtar-367059ddef14a495e277f68ceaf3455c092f839d.zip
bandit checker: mark false security issues - fix security issues (low severity)
Diffstat (limited to 'ishtar_common/tests.py')
-rw-r--r--ishtar_common/tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py
index 97002f13d..7328a5f95 100644
--- a/ishtar_common/tests.py
+++ b/ishtar_common/tests.py
@@ -171,7 +171,8 @@ def create_superuser():
return username, password, user
-def create_user(username="username678", password="dcbqj756aaa456!@%"):
+# nosec: hard coded password used for test
+def create_user(username="username678", password="dcbqj756aaa456!@%"): # nosec
q = User.objects.filter(username=username)
if q.count():
return username, password, q.all()[0]
@@ -245,7 +246,8 @@ class SearchText:
SEARCH_URL = ""
def _test_search(self, client, result, context=""):
- assert self.SEARCH_URL
+ if not self.SEARCH_URL:
+ raise NotImplementedError("No SEARCH_URL defined.")
for q, expected_result in result:
search = {"search_vector": q}
response = client.get(reverse(self.SEARCH_URL), search)