-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidation.py
More file actions
52 lines (37 loc) · 1.2 KB
/
validation.py
File metadata and controls
52 lines (37 loc) · 1.2 KB
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
from dataclasses import dataclass
from typing import Callable, List
# =========================
# Validation Result
# =========================
@dataclass
class ValidationResult:
is_valid: bool
message: str = ""
# =========================
# Types
# =========================
Validator = Callable[[str], ValidationResult]
# =========================
# Validation Engine
# =========================
def validate(value: str, validators: List[Validator]) -> ValidationResult:
for v in validators:
result = v(value)
if not result.is_valid:
return result
return ValidationResult(True)
# =========================
# Validators
# =========================
def is_not_empty(value: str) -> ValidationResult:
if not value:
return ValidationResult(False, "Input cannot be empty")
return ValidationResult(True)
def is_alpha(value: str) -> ValidationResult:
if not value.isalpha():
return ValidationResult(False, "Only letters allowed")
return ValidationResult(True)
def is_single_char(value: str) -> ValidationResult:
if len(value) != 1:
return ValidationResult(False, "Enter exactly one character")
return ValidationResult(True)