You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
156 lines
4.4 KiB
156 lines
4.4 KiB
import time
|
|
from flask import url_for
|
|
from urllib.request import urlopen
|
|
from . util import set_original_response, set_modified_response, live_server_setup
|
|
|
|
|
|
def test_check_watch_field_storage(client, live_server):
|
|
set_original_response()
|
|
live_server_setup(live_server)
|
|
|
|
test_url = "http://somerandomsitewewatch.com"
|
|
|
|
res = client.post(
|
|
url_for("import_page"),
|
|
data={"urls": test_url},
|
|
follow_redirects=True
|
|
)
|
|
assert b"1 Imported" in res.data
|
|
|
|
|
|
res = client.post(
|
|
url_for("edit_page", uuid="first"),
|
|
data={ "notification_urls": "json://127.0.0.1:30000\r\njson://128.0.0.1\r\n",
|
|
"time_between_check-minutes": 126,
|
|
"include_filters" : ".fooclass",
|
|
"title" : "My title",
|
|
"ignore_text" : "ignore this",
|
|
"url": test_url,
|
|
"tag": "woohoo",
|
|
"headers": "curl:foo",
|
|
'fetch_backend': "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
assert b"Updated watch." in res.data
|
|
|
|
res = client.get(
|
|
url_for("edit_page", uuid="first"),
|
|
follow_redirects=True
|
|
)
|
|
# checks that we dont get an error when using blank lines in the field value
|
|
assert not b"json://127.0.0.1\n\njson" in res.data
|
|
assert not b"json://127.0.0.1\r\n\njson" in res.data
|
|
assert not b"json://127.0.0.1\r\n\rjson" in res.data
|
|
|
|
assert b"json://127.0.0.1" in res.data
|
|
assert b"json://128.0.0.1" in res.data
|
|
|
|
assert b"126" in res.data
|
|
assert b".fooclass" in res.data
|
|
assert b"My title" in res.data
|
|
assert b"ignore this" in res.data
|
|
assert b"http://somerandomsitewewatch.com" in res.data
|
|
assert b"woohoo" in res.data
|
|
assert b"curl: foo" in res.data
|
|
|
|
|
|
|
|
# Re https://github.com/dgtlmoon/changedetection.io/issues/110
|
|
def test_check_recheck_global_setting(client, live_server):
|
|
|
|
res = client.post(
|
|
url_for("settings_page"),
|
|
data={
|
|
"requests-time_between_check-minutes": 1566,
|
|
'application-fetch_backend': "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
assert b"Settings updated." in res.data
|
|
|
|
# Now add a record
|
|
|
|
test_url = "http://somerandomsitewewatch.com"
|
|
|
|
res = client.post(
|
|
url_for("import_page"),
|
|
data={"urls": test_url},
|
|
follow_redirects=True
|
|
)
|
|
assert b"1 Imported" in res.data
|
|
|
|
# Now visit the edit page, it should have the default minutes
|
|
|
|
res = client.get(
|
|
url_for("edit_page", uuid="first"),
|
|
follow_redirects=True
|
|
)
|
|
|
|
# Should show the default minutes
|
|
assert b"change to another value if you want to be specific" in res.data
|
|
assert b"1566" in res.data
|
|
|
|
res = client.post(
|
|
url_for("settings_page"),
|
|
data={
|
|
"requests-time_between_check-minutes": 222,
|
|
'application-fetch_backend': "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
assert b"Settings updated." in res.data
|
|
|
|
res = client.get(
|
|
url_for("edit_page", uuid="first"),
|
|
follow_redirects=True
|
|
)
|
|
|
|
# Should show the default minutes
|
|
assert b"change to another value if you want to be specific" in res.data
|
|
assert b"222" in res.data
|
|
|
|
# Now change it specifically, it should show the new minutes
|
|
res = client.post(
|
|
url_for("edit_page", uuid="first"),
|
|
data={"url": test_url,
|
|
"time_between_check-minutes": 55,
|
|
'fetch_backend': "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
|
|
res = client.get(
|
|
url_for("edit_page", uuid="first"),
|
|
follow_redirects=True
|
|
)
|
|
assert b"55" in res.data
|
|
|
|
# Now submit an empty field, it should give back the default global minutes
|
|
res = client.post(
|
|
url_for("settings_page"),
|
|
data={
|
|
"requests-time_between_check-minutes": 666,
|
|
"application-fetch_backend": "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
assert b"Settings updated." in res.data
|
|
|
|
res = client.post(
|
|
url_for("edit_page", uuid="first"),
|
|
data={"url": test_url,
|
|
"time_between_check-minutes": "",
|
|
'fetch_backend': "html_requests"
|
|
},
|
|
follow_redirects=True
|
|
)
|
|
|
|
assert b"Updated watch." in res.data
|
|
|
|
res = client.get(
|
|
url_for("edit_page", uuid="first"),
|
|
follow_redirects=True
|
|
)
|
|
assert b"666" in res.data
|