allow regexes only on strings

This commit is contained in:
Jakob Ketterl 2021-01-24 22:28:00 +01:00
parent a880b1f6f9
commit d126c3acef
2 changed files with 5 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class RegexValidator(Validator):
self.regex = regex
def isValid(self, value):
return self.regex.match(value) is not None
return isinstance(value, str) and self.regex.match(value) is not None
validator_types = {

View File

@ -11,3 +11,7 @@ class RegexValidatorTest(TestCase):
def testDoesntMatchRegex(self):
validator = RegexValidator(re.compile("abc"))
self.assertFalse(validator.isValid("xyz"))
def testFailsIfValueIsNoString(self):
validator = RegexValidator(re.compile("abc"))
self.assertFalse(validator.isValid(42))