forked from google/it-cert-automation-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fce5976
commit 8dba0df
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import re | ||
|
||
def validate_user(username, minlen): | ||
"""Checks if the received username matches the required conditions.""" | ||
if type(username) != str: | ||
raise TypeError("username must be a string") | ||
if minlen < 1: | ||
raise ValueError("minlen must be at least 1") | ||
|
||
# Usernames can't be shorter than minlen | ||
if len(username) < minlen: | ||
return False | ||
# Usernames can only use letters, numbers, dots and underscores | ||
if not re.match('^[a-z0-9._]*$', username): | ||
return False | ||
# Usernames can't begin with a number | ||
if username[0].isnumeric(): | ||
return False | ||
return True | ||
|
||
|
||
|