mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-12 19:16:40 +00:00
Time interval field - Extra validation improvements and tests (#3432)
This commit is contained in:
@@ -220,14 +220,16 @@ def validate_time_between_check_has_values(form):
|
|||||||
Custom validation function for TimeBetweenCheckForm.
|
Custom validation function for TimeBetweenCheckForm.
|
||||||
Returns True if at least one time interval field has a value > 0.
|
Returns True if at least one time interval field has a value > 0.
|
||||||
"""
|
"""
|
||||||
return any([
|
res = any([
|
||||||
form.weeks.data and form.weeks.data > 0,
|
form.weeks.data and int(form.weeks.data) > 0,
|
||||||
form.days.data and form.days.data > 0,
|
form.days.data and int(form.days.data) > 0,
|
||||||
form.hours.data and form.hours.data > 0,
|
form.hours.data and int(form.hours.data) > 0,
|
||||||
form.minutes.data and form.minutes.data > 0,
|
form.minutes.data and int(form.minutes.data) > 0,
|
||||||
form.seconds.data and form.seconds.data > 0
|
form.seconds.data and int(form.seconds.data) > 0
|
||||||
])
|
])
|
||||||
|
|
||||||
|
return res
|
||||||
|
|
||||||
|
|
||||||
class RequiredTimeInterval(object):
|
class RequiredTimeInterval(object):
|
||||||
"""
|
"""
|
||||||
|
|||||||
@@ -1,21 +1,29 @@
|
|||||||
{% macro render_field(field) %}
|
{% macro render_field(field) %}
|
||||||
<div {% if field.errors or field.top_errors %} class="error" {% endif %}>{{ field.label }}</div>
|
<div {% if field.errors or field.top_errors %} class="error" {% endif %}>{{ field.label }}</div>
|
||||||
<div {% if field.errors or field.top_errors %} class="error" {% endif %}>{{ field(**kwargs)|safe }}
|
<div {% if field.errors or field.top_errors %} class="error" {% endif %}>{{ field(**kwargs)|safe }}
|
||||||
{% if field.top_errors %}
|
{% if field.top_errors %}
|
||||||
<ul class="errors top-errors">
|
top
|
||||||
{% for error in field.top_errors %}
|
<ul class="errors top-errors">
|
||||||
<li>{{ error }}</li>
|
{% for error in field.top_errors %}
|
||||||
{% endfor %}
|
<li>{{ error }}</li>
|
||||||
</ul>
|
{% endfor %}
|
||||||
{% endif %}
|
</ul>
|
||||||
{% if field.errors %}
|
{% endif %}
|
||||||
<ul class=errors>
|
{% if field.errors %}
|
||||||
{% for error in field.errors %}
|
<ul class=errors>
|
||||||
<li>{{ error }}</li>
|
{% if field.errors is mapping and 'form' in field.errors %}
|
||||||
{% endfor %}
|
{# and subfield form errors, such as used in RequiredFormField() for TimeBetweenCheckForm sub form #}
|
||||||
</ul>
|
{% set errors = field.errors['form'] %}
|
||||||
{% endif %}
|
{% else %}
|
||||||
</div>
|
{# regular list of errors with this field #}
|
||||||
|
{% set errors = field.errors %}
|
||||||
|
{% endif %}
|
||||||
|
{% for error in errors %}
|
||||||
|
<li>{{ error }}</li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
{% endmacro %}
|
{% endmacro %}
|
||||||
|
|
||||||
{% macro render_checkbox_field(field) %}
|
{% macro render_checkbox_field(field) %}
|
||||||
|
|||||||
@@ -2,6 +2,103 @@
|
|||||||
|
|
||||||
from flask import url_for
|
from flask import url_for
|
||||||
from .util import set_original_response, set_modified_response, live_server_setup, wait_for_all_checks
|
from .util import set_original_response, set_modified_response, live_server_setup, wait_for_all_checks
|
||||||
|
from ..forms import REQUIRE_ATLEAST_ONE_TIME_PART_WHEN_NOT_GLOBAL_DEFAULT, REQUIRE_ATLEAST_ONE_TIME_PART_MESSAGE_DEFAULT
|
||||||
|
|
||||||
|
|
||||||
|
def test_recheck_time_field_validation_global_settings(client, live_server):
|
||||||
|
"""
|
||||||
|
Tests that the global settings time field has atleast one value for week/day/hours/minute/seconds etc entered
|
||||||
|
class globalSettingsRequestForm(Form):
|
||||||
|
time_between_check = RequiredFormField(TimeBetweenCheckForm)
|
||||||
|
"""
|
||||||
|
res = client.post(
|
||||||
|
url_for("settings.settings_page"),
|
||||||
|
data={
|
||||||
|
"requests-time_between_check-weeks": '',
|
||||||
|
"requests-time_between_check-days": '',
|
||||||
|
"requests-time_between_check-hours": '',
|
||||||
|
"requests-time_between_check-minutes": '',
|
||||||
|
"requests-time_between_check-seconds": '',
|
||||||
|
},
|
||||||
|
follow_redirects=True
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
assert REQUIRE_ATLEAST_ONE_TIME_PART_MESSAGE_DEFAULT.encode('utf-8') in res.data
|
||||||
|
|
||||||
|
|
||||||
|
def test_recheck_time_field_validation_single_watch(client, live_server):
|
||||||
|
"""
|
||||||
|
Tests that the global settings time field has atleast one value for week/day/hours/minute/seconds etc entered
|
||||||
|
class globalSettingsRequestForm(Form):
|
||||||
|
time_between_check = RequiredFormField(TimeBetweenCheckForm)
|
||||||
|
"""
|
||||||
|
test_url = url_for('test_endpoint', _external=True)
|
||||||
|
|
||||||
|
# Add our URL to the import page
|
||||||
|
res = client.post(
|
||||||
|
url_for("imports.import_page"),
|
||||||
|
data={"urls": test_url},
|
||||||
|
follow_redirects=True
|
||||||
|
)
|
||||||
|
|
||||||
|
assert b"1 Imported" in res.data
|
||||||
|
|
||||||
|
res = client.post(
|
||||||
|
url_for("ui.ui_edit.edit_page", uuid="first"),
|
||||||
|
data={
|
||||||
|
"url": test_url,
|
||||||
|
'fetch_backend': "html_requests",
|
||||||
|
"time_between_check_use_default": "", # OFF
|
||||||
|
"time_between_check-weeks": '',
|
||||||
|
"time_between_check-days": '',
|
||||||
|
"time_between_check-hours": '',
|
||||||
|
"time_between_check-minutes": '',
|
||||||
|
"time_between_check-seconds": '',
|
||||||
|
},
|
||||||
|
follow_redirects=True
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
assert REQUIRE_ATLEAST_ONE_TIME_PART_WHEN_NOT_GLOBAL_DEFAULT.encode('utf-8') in res.data
|
||||||
|
|
||||||
|
# Now set some time
|
||||||
|
res = client.post(
|
||||||
|
url_for("ui.ui_edit.edit_page", uuid="first"),
|
||||||
|
data={
|
||||||
|
"url": test_url,
|
||||||
|
'fetch_backend': "html_requests",
|
||||||
|
"time_between_check_use_default": "", # OFF
|
||||||
|
"time_between_check-weeks": '',
|
||||||
|
"time_between_check-days": '',
|
||||||
|
"time_between_check-hours": '',
|
||||||
|
"time_between_check-minutes": '5',
|
||||||
|
"time_between_check-seconds": '',
|
||||||
|
},
|
||||||
|
follow_redirects=True
|
||||||
|
)
|
||||||
|
|
||||||
|
assert b"Updated watch." in res.data
|
||||||
|
assert REQUIRE_ATLEAST_ONE_TIME_PART_WHEN_NOT_GLOBAL_DEFAULT.encode('utf-8') not in res.data
|
||||||
|
|
||||||
|
# Now set to use defaults
|
||||||
|
res = client.post(
|
||||||
|
url_for("ui.ui_edit.edit_page", uuid="first"),
|
||||||
|
data={
|
||||||
|
"url": test_url,
|
||||||
|
'fetch_backend': "html_requests",
|
||||||
|
"time_between_check_use_default": "y", # ON YES
|
||||||
|
"time_between_check-weeks": '',
|
||||||
|
"time_between_check-days": '',
|
||||||
|
"time_between_check-hours": '',
|
||||||
|
"time_between_check-minutes": '',
|
||||||
|
"time_between_check-seconds": '',
|
||||||
|
},
|
||||||
|
follow_redirects=True
|
||||||
|
)
|
||||||
|
|
||||||
|
assert b"Updated watch." in res.data
|
||||||
|
assert REQUIRE_ATLEAST_ONE_TIME_PART_WHEN_NOT_GLOBAL_DEFAULT.encode('utf-8') not in res.data
|
||||||
|
|
||||||
def test_checkbox_open_diff_in_new_tab(client, live_server):
|
def test_checkbox_open_diff_in_new_tab(client, live_server):
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user