0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Update slug validation rules to disallow uppercase

This commit is contained in:
Pēteris Caune 2023-06-15 09:05:26 +03:00
parent 4ccee09f73
commit ebcb060ece
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
5 changed files with 10 additions and 9 deletions

View file

@ -4,7 +4,7 @@ check = {
"type": "object",
"properties": {
"name": {"type": "string", "maxLength": 100},
"slug": {"type": "string", "pattern": "^[a-zA-Z0-9-_]*$"},
"slug": {"type": "string", "pattern": "^[a-z0-9-_]*$"},
"desc": {"type": "string"},
"tags": {"type": "string", "maxLength": 500},
"timeout": {"type": "number", "minimum": 60, "maximum": 31536000},

View file

@ -387,8 +387,9 @@ class CreateCheckTestCase(BaseTestCase):
self.assertEqual(check.slug, "")
def test_it_handles_invalid_slug(self):
r = self.post({"name": "Foo", "slug": "Hey!"}, v=3)
self.assertEqual(r.status_code, 400)
self.assertEqual(
r.json()["error"], "json validation error: slug does not match pattern"
)
for slug in ["Uppercase", "special!", "look spaces"]:
r = self.post({"name": "Foo", "slug": "Hey!"}, v=3)
self.assertEqual(r.status_code, 400)
self.assertEqual(
r.json()["error"], "json validation error: slug does not match pattern"
)

View file

@ -23,7 +23,7 @@ $(function () {
if (suggested) {
help.html(`Suggested value: <code>${suggested}</code>`);
} else {
help.text("Allowed characters: a-z, A-Z, 0-9, hyphens, underscores.");
help.text("Allowed characters: a-z, 0-9, hyphens, underscores.");
}
btn.attr("disabled", !suggested);

View file

@ -40,7 +40,7 @@
type="text"
maxlength="100"
value="{{ check.slug }}"
pattern="[a-zA-Z0-9_-]+"
pattern="[a-z0-9_-]+"
class="form-control" />
<span class="input-group-btn">
<button

View file

@ -45,7 +45,7 @@
type="text"
maxlength="100"
value="{{ check.slug }}"
pattern="[a-zA-Z0-9_-]+"
pattern="[a-z0-9_-]+"
data-src-id="update-name-input"
data-btn-id="use-suggested"
data-preview-id="slug-help"