|
|
@ -2,7 +2,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
import time
|
|
|
|
import time
|
|
|
|
from flask import url_for
|
|
|
|
from flask import url_for
|
|
|
|
from .util import live_server_setup, wait_for_all_checks, extract_rss_token_from_UI, get_UUID_for_tag_name
|
|
|
|
from .util import live_server_setup, wait_for_all_checks, extract_rss_token_from_UI, get_UUID_for_tag_name, extract_UUID_from_client
|
|
|
|
import os
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -154,6 +154,10 @@ def test_tag_add_in_ui(client, live_server):
|
|
|
|
)
|
|
|
|
)
|
|
|
|
assert b"Tag added" in res.data
|
|
|
|
assert b"Tag added" in res.data
|
|
|
|
assert b"new-test-tag" in res.data
|
|
|
|
assert b"new-test-tag" in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("tags.delete_all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'All tags deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
@ -219,12 +223,10 @@ def test_group_tag_notification(client, live_server):
|
|
|
|
assert "test-tag" in notification_submission
|
|
|
|
assert "test-tag" in notification_submission
|
|
|
|
assert "other-tag" in notification_submission
|
|
|
|
assert "other-tag" in notification_submission
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#@todo Test that multiple notifications fired
|
|
|
|
#@todo Test that multiple notifications fired
|
|
|
|
#@todo Test that each of multiple notifications with different settings
|
|
|
|
#@todo Test that each of multiple notifications with different settings
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
def test_limit_tag_ui(client, live_server):
|
|
|
|
def test_limit_tag_ui(client, live_server):
|
|
|
|
#live_server_setup(live_server)
|
|
|
|
#live_server_setup(live_server)
|
|
|
@ -260,3 +262,61 @@ def test_limit_tag_ui(client, live_server):
|
|
|
|
assert b'test-tag' in res.data
|
|
|
|
assert b'test-tag' in res.data
|
|
|
|
assert res.data.count(b'processor-text_json_diff') == 20
|
|
|
|
assert res.data.count(b'processor-text_json_diff') == 20
|
|
|
|
assert b"object at" not in res.data
|
|
|
|
assert b"object at" not in res.data
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
res = client.get(url_for("tags.delete_all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'All tags deleted' in res.data
|
|
|
|
|
|
|
|
def test_clone_tag_on_import(client, live_server):
|
|
|
|
|
|
|
|
#live_server_setup(live_server)
|
|
|
|
|
|
|
|
test_url = url_for('test_endpoint', _external=True)
|
|
|
|
|
|
|
|
res = client.post(
|
|
|
|
|
|
|
|
url_for("import_page"),
|
|
|
|
|
|
|
|
data={"urls": test_url + " test-tag, another-tag\r\n"},
|
|
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert b"1 Imported" in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
|
|
|
|
assert b'test-tag' in res.data
|
|
|
|
|
|
|
|
assert b'another-tag' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
watch_uuid = extract_UUID_from_client(client)
|
|
|
|
|
|
|
|
res = client.get(url_for("form_clone", uuid=watch_uuid), follow_redirects=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert b'Cloned' in res.data
|
|
|
|
|
|
|
|
# 2 times plus the top link to tag
|
|
|
|
|
|
|
|
assert res.data.count(b'test-tag') == 3
|
|
|
|
|
|
|
|
assert res.data.count(b'another-tag') == 3
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_clone_tag_on_quickwatchform_add(client, live_server):
|
|
|
|
|
|
|
|
#live_server_setup(live_server)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test_url = url_for('test_endpoint', _external=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res = client.post(
|
|
|
|
|
|
|
|
url_for("form_quick_watch_add"),
|
|
|
|
|
|
|
|
data={"url": test_url, "tags": ' test-tag, another-tag '},
|
|
|
|
|
|
|
|
follow_redirects=True
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert b"Watch added" in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
|
|
|
|
assert b'test-tag' in res.data
|
|
|
|
|
|
|
|
assert b'another-tag' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
watch_uuid = extract_UUID_from_client(client)
|
|
|
|
|
|
|
|
res = client.get(url_for("form_clone", uuid=watch_uuid), follow_redirects=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert b'Cloned' in res.data
|
|
|
|
|
|
|
|
# 2 times plus the top link to tag
|
|
|
|
|
|
|
|
assert res.data.count(b'test-tag') == 3
|
|
|
|
|
|
|
|
assert res.data.count(b'another-tag') == 3
|
|
|
|
|
|
|
|
res = client.get(url_for("form_delete", uuid="all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'Deleted' in res.data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
res = client.get(url_for("tags.delete_all"), follow_redirects=True)
|
|
|
|
|
|
|
|
assert b'All tags deleted' in res.data
|