Skip to content

Commit 0de9f9f

Browse files
committed
Merge branch 'main' of github.com:web-push-libs/vapid into main
2 parents e4c76c8 + 7c7223d commit 0de9f9f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

python/py_vapid/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def verify(cls, auth):
352352

353353
def _check_sub(sub):
354354
pattern =(
355-
r"^(mailto:.+@((localhost|[%\w]+(\.[%\w]+)+|([0-9a-f]{1,4}):+([0-9a-f]{1,4})?)))|https:\/\/(localhost|\w+\.[\w\.]+|([0-9a-f]{1,4}:+)+([0-9a-f]{1,4})?)$"
355+
r"^(mailto:.+@((localhost|[%\w-]+(\.[%\w-]+)+|([0-9a-f]{1,4}):+([0-9a-f]{1,4})?)))|https:\/\/(localhost|[\w-]+\.[\w\.-]+|([0-9a-f]{1,4}:+)+([0-9a-f]{1,4})?)$"
356356
)
357357
return re.match(pattern, sub, re.IGNORECASE) is not None
358358

python/py_vapid/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
default=False, action="store_true")
3232
parser.add_argument('--json', help="dump as json",
3333
default=False, action="store_true")
34-
parser.add_argumet('--no-strict', help='Do not be strict about "sub"',
34+
parser.add_argument('--no-strict', help='Do not be strict about "sub"',
3535
default=False, action="store_true")
3636
parser.add_argument('--applicationServerKey',
3737
help="show applicationServerKey value",

python/py_vapid/tests/test_vapid.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@ def test_sub(self):
260260
'mailto:me@1234::',
261261
'mailto:me@1234::5678',
262262
'mailto:admin@example.org',
263+
'mailto:admin-test-case@example-test-case.test.org',
263264
'https://localhost',
265+
'https://exmample-test-case.test.org',
264266
'https://8001::',
265267
'https://8001:1000:0001',
266268
'https://1.2.3.4'
@@ -277,4 +279,4 @@ def test_sub(self):
277279
for val in valid:
278280
assert _check_sub(val) is True
279281
for val in invalid:
280-
assert _check_sub(val) is False
282+
assert _check_sub(val) is False

0 commit comments

Comments
 (0)