|
|
|
@ -3,6 +3,7 @@
|
|
|
|
|
import time
|
|
|
|
|
from flask import url_for
|
|
|
|
|
from urllib.request import urlopen
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Unit test of the stripper
|
|
|
|
@ -12,9 +13,9 @@ def test_strip_text_func():
|
|
|
|
|
test_content = """
|
|
|
|
|
Some content
|
|
|
|
|
is listed here
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
but sometimes we want to remove the lines.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
but not always."""
|
|
|
|
|
|
|
|
|
|
original_length = len(test_content.splitlines())
|
|
|
|
@ -32,7 +33,7 @@ def test_strip_text_func():
|
|
|
|
|
assert "Some content" in stripped_content
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_original_response():
|
|
|
|
|
def set_original_ignore_response():
|
|
|
|
|
test_return_data = """<html>
|
|
|
|
|
<body>
|
|
|
|
|
Some initial text</br>
|
|
|
|
@ -49,7 +50,7 @@ def set_original_response():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Is the same but includes ZZZZZ, 'ZZZZZ' is the last line in ignore_text
|
|
|
|
|
def set_modified_response():
|
|
|
|
|
def set_modified_ignore_response():
|
|
|
|
|
test_return_data = """<html>
|
|
|
|
|
<body>
|
|
|
|
|
Some initial text</br>
|
|
|
|
@ -70,21 +71,13 @@ def test_check_ignore_text_functionality(client, live_server):
|
|
|
|
|
sleep_time_for_fetch_thread = 5
|
|
|
|
|
|
|
|
|
|
ignore_text = "XXXXX\nYYYYY\nZZZZZ"
|
|
|
|
|
set_original_response()
|
|
|
|
|
|
|
|
|
|
@live_server.app.route('/test-ignore-endpoint')
|
|
|
|
|
def test_ignore_endpoint():
|
|
|
|
|
# Tried using a global var here but didn't seem to work, so reading from a file instead.
|
|
|
|
|
with open("test-datastore/output.txt", "r") as f:
|
|
|
|
|
return f.read()
|
|
|
|
|
|
|
|
|
|
live_server.start()
|
|
|
|
|
set_original_ignore_response()
|
|
|
|
|
|
|
|
|
|
# Give the endpoint time to spin up
|
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
|
|
# Add our URL to the import page
|
|
|
|
|
test_url = url_for('test_ignore_endpoint', _external=True)
|
|
|
|
|
test_url = url_for('test_endpoint', _external=True)
|
|
|
|
|
res = client.post(
|
|
|
|
|
url_for("import_page"),
|
|
|
|
|
data={"urls": test_url},
|
|
|
|
@ -116,9 +109,9 @@ def test_check_ignore_text_functionality(client, live_server):
|
|
|
|
|
# It should report nothing found (no new 'unviewed' class)
|
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
|
assert b'unviewed' not in res.data
|
|
|
|
|
assert b'/test-ignore-endpoint' in res.data
|
|
|
|
|
assert b'/test-endpoint' in res.data
|
|
|
|
|
|
|
|
|
|
set_modified_response()
|
|
|
|
|
set_modified_ignore_response()
|
|
|
|
|
|
|
|
|
|
# Trigger a check
|
|
|
|
|
client.get(url_for("api_watch_checknow"), follow_redirects=True)
|
|
|
|
@ -129,7 +122,6 @@ def test_check_ignore_text_functionality(client, live_server):
|
|
|
|
|
# It should report nothing found (no new 'unviewed' class)
|
|
|
|
|
res = client.get(url_for("index"))
|
|
|
|
|
assert b'unviewed' not in res.data
|
|
|
|
|
assert b'/test-ignore-endpoint' in res.data
|
|
|
|
|
assert b'/test-endpoint' in res.data
|
|
|
|
|
|
|
|
|
|
live_server.stop()
|
|
|
|
|
|
|
|
|
|