2021-05-30 21:47:36 +02:00
|
|
|
import arrow
|
2021-05-05 14:29:13 +02:00
|
|
|
import pytest
|
2021-07-07 11:19:37 +02:00
|
|
|
from unittest.mock import patch
|
2021-05-04 22:58:00 +02:00
|
|
|
|
2021-07-07 11:41:13 +02:00
|
|
|
|
2021-08-16 10:49:52 +02:00
|
|
|
from mobilizon_reshare.config.config import get_settings
|
|
|
|
from mobilizon_reshare.event.event_selection_strategies import (
|
2021-07-07 11:41:13 +02:00
|
|
|
SelectNextEventStrategy,
|
|
|
|
select_event_to_publish,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def set_break_window_config(desired_break_window_days):
|
2021-07-12 22:17:49 +02:00
|
|
|
get_settings().update(
|
2021-07-07 11:41:13 +02:00
|
|
|
{
|
|
|
|
"selection.strategy_options.break_between_events_in_minutes": desired_break_window_days
|
|
|
|
* 24
|
|
|
|
* 60
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def set_strategy(strategy_name):
|
2021-07-12 22:17:49 +02:00
|
|
|
get_settings().update({"selection.strategy": strategy_name})
|
2021-05-04 22:58:00 +02:00
|
|
|
|
2021-05-05 14:29:13 +02:00
|
|
|
|
2021-07-07 11:19:37 +02:00
|
|
|
@pytest.fixture
|
|
|
|
def mock_publication_window(publication_window):
|
|
|
|
begin, end = publication_window
|
2021-07-12 22:17:49 +02:00
|
|
|
get_settings().update(
|
|
|
|
{"publishing.window.begin": begin, "publishing.window.end": end}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-07-18 18:23:30 +02:00
|
|
|
@pytest.mark.parametrize("current_hour", [15])
|
|
|
|
def test_window_no_event(mock_arrow_now):
|
2021-07-12 22:17:49 +02:00
|
|
|
selected_event = SelectNextEventStrategy().select([], [])
|
|
|
|
assert selected_event is None
|
2021-07-07 11:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [10])
|
2021-05-05 14:29:13 +02:00
|
|
|
@pytest.mark.parametrize(
|
2021-05-30 21:47:36 +02:00
|
|
|
"desired_break_window_days,days_passed_from_publication", [[2, 1], [3, 2]]
|
2021-05-05 14:29:13 +02:00
|
|
|
)
|
2021-07-12 22:17:49 +02:00
|
|
|
def test_window_simple_no_event_in_window(
|
2021-07-07 11:19:37 +02:00
|
|
|
event_generator,
|
|
|
|
desired_break_window_days,
|
|
|
|
days_passed_from_publication,
|
2021-07-07 11:41:13 +02:00
|
|
|
set_break_window_config,
|
2021-07-07 11:19:37 +02:00
|
|
|
mock_arrow_now,
|
2021-05-05 14:29:13 +02:00
|
|
|
):
|
|
|
|
"Testing that the break between events is respected"
|
|
|
|
unpublished_events = [
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
2021-05-30 21:47:36 +02:00
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=30),
|
2021-05-05 14:29:13 +02:00
|
|
|
)
|
|
|
|
]
|
|
|
|
published_events = [
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
2021-07-05 23:07:12 +02:00
|
|
|
publication_time={
|
|
|
|
"telegram": arrow.now().shift(days=-days_passed_from_publication)
|
|
|
|
},
|
2021-05-05 14:29:13 +02:00
|
|
|
)
|
|
|
|
]
|
|
|
|
|
2021-07-07 11:41:13 +02:00
|
|
|
selected_event = SelectNextEventStrategy().select(
|
|
|
|
published_events, unpublished_events
|
|
|
|
)
|
2021-05-05 14:29:13 +02:00
|
|
|
assert selected_event is None
|
|
|
|
|
|
|
|
|
2021-07-07 11:19:37 +02:00
|
|
|
@pytest.mark.parametrize("current_hour", [15])
|
2021-05-05 14:29:13 +02:00
|
|
|
@pytest.mark.parametrize(
|
2021-05-30 21:47:36 +02:00
|
|
|
"desired_break_window_days,days_passed_from_publication", [[1, 2], [2, 10], [4, 4]]
|
2021-05-04 22:58:00 +02:00
|
|
|
)
|
2021-07-07 11:41:13 +02:00
|
|
|
@pytest.mark.parametrize("strategy_name", ["next_event"])
|
|
|
|
def test_window_simple_event_found(
|
2021-07-05 23:07:12 +02:00
|
|
|
event_generator,
|
|
|
|
desired_break_window_days,
|
|
|
|
days_passed_from_publication,
|
2021-07-07 11:41:13 +02:00
|
|
|
set_break_window_config,
|
|
|
|
set_strategy,
|
2021-07-07 11:19:37 +02:00
|
|
|
mock_arrow_now,
|
2021-05-05 14:29:13 +02:00
|
|
|
):
|
2021-05-05 14:37:19 +02:00
|
|
|
"Testing that the break between events is respected and an event is found"
|
2021-05-05 14:29:13 +02:00
|
|
|
unpublished_events = [
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
2021-05-30 21:47:36 +02:00
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=30),
|
2021-05-05 14:29:13 +02:00
|
|
|
)
|
|
|
|
]
|
|
|
|
published_events = [
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
2021-07-05 23:07:12 +02:00
|
|
|
publication_time={
|
|
|
|
"telegram": arrow.now().shift(days=-days_passed_from_publication)
|
|
|
|
},
|
2021-05-05 14:29:13 +02:00
|
|
|
)
|
|
|
|
]
|
|
|
|
|
2021-07-07 11:41:13 +02:00
|
|
|
selected_event = select_event_to_publish(published_events, unpublished_events)
|
2021-05-05 14:29:13 +02:00
|
|
|
assert selected_event is unpublished_events[0]
|
2021-05-05 14:37:19 +02:00
|
|
|
|
|
|
|
|
2021-07-18 18:23:30 +02:00
|
|
|
@pytest.mark.parametrize("current_hour", [15])
|
|
|
|
@pytest.mark.parametrize("strategy_name", ["next_event"])
|
|
|
|
def test_window_simple_no_published_events(
|
2021-08-28 13:17:39 +02:00
|
|
|
event_generator,
|
|
|
|
set_strategy,
|
|
|
|
mock_arrow_now,
|
2021-07-18 18:23:30 +02:00
|
|
|
):
|
|
|
|
"Testing that if no event is published, the function takes the first available unpublished event"
|
|
|
|
unpublished_events = [
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=30),
|
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=50),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
selected_event = select_event_to_publish([], unpublished_events)
|
|
|
|
assert selected_event is unpublished_events[0]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [15])
|
|
|
|
@pytest.mark.parametrize("strategy_name", ["next_event"])
|
|
|
|
def test_window_simple_event_too_recent(
|
2021-08-28 13:17:39 +02:00
|
|
|
event_generator,
|
|
|
|
set_strategy,
|
|
|
|
mock_arrow_now,
|
2021-07-18 18:23:30 +02:00
|
|
|
):
|
|
|
|
"Testing that if an event has been published too recently, no event is selected for publication"
|
|
|
|
unpublished_events = [
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=30),
|
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=50),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
published_events = [
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
|
|
|
publication_time={"telegram": arrow.now().shift(minutes=-5)},
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
selected_event = select_event_to_publish(published_events, unpublished_events)
|
|
|
|
assert selected_event is None
|
|
|
|
|
|
|
|
|
2021-07-07 11:19:37 +02:00
|
|
|
@pytest.mark.parametrize("current_hour", [15])
|
2021-05-05 14:37:19 +02:00
|
|
|
@pytest.mark.parametrize(
|
2021-05-30 21:47:36 +02:00
|
|
|
"desired_break_window_days,days_passed_from_publication", [[1, 2], [2, 10], [4, 4]]
|
2021-05-05 14:37:19 +02:00
|
|
|
)
|
2021-07-07 11:41:13 +02:00
|
|
|
@pytest.mark.parametrize("strategy_name", ["next_event"])
|
|
|
|
def test_window_multi_event_found(
|
2021-07-05 23:07:12 +02:00
|
|
|
event_generator,
|
|
|
|
desired_break_window_days,
|
|
|
|
days_passed_from_publication,
|
2021-07-07 11:41:13 +02:00
|
|
|
set_break_window_config,
|
|
|
|
set_strategy,
|
2021-07-07 11:19:37 +02:00
|
|
|
mock_arrow_now,
|
2021-05-05 14:37:19 +02:00
|
|
|
):
|
|
|
|
"Testing that the break between events is respected when there are multiple events"
|
|
|
|
unpublished_events = [
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
2021-05-30 21:47:36 +02:00
|
|
|
begin_date=arrow.Arrow(year=2022, month=1, day=5, hour=11, minute=30),
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
2021-05-30 21:47:36 +02:00
|
|
|
begin_date=arrow.Arrow(year=2022, month=3, day=5, hour=11, minute=30),
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=False,
|
2021-05-30 21:47:36 +02:00
|
|
|
begin_date=arrow.Arrow(year=2021, month=1, day=5, hour=11, minute=30),
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
]
|
|
|
|
published_events = [
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
2021-07-05 23:07:12 +02:00
|
|
|
publication_time={
|
|
|
|
"telegram": arrow.now().shift(days=-days_passed_from_publication)
|
|
|
|
},
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
2021-07-05 23:07:12 +02:00
|
|
|
publication_time={
|
|
|
|
"telegram": arrow.now().shift(days=-days_passed_from_publication - 2)
|
|
|
|
},
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
event_generator(
|
|
|
|
published=True,
|
2021-07-05 23:07:12 +02:00
|
|
|
publication_time={
|
|
|
|
"telegram": arrow.now().shift(days=-days_passed_from_publication - 4)
|
|
|
|
},
|
2021-05-05 14:37:19 +02:00
|
|
|
),
|
|
|
|
]
|
|
|
|
|
2021-07-07 11:41:13 +02:00
|
|
|
selected_event = select_event_to_publish(published_events, unpublished_events)
|
2021-05-05 14:37:19 +02:00
|
|
|
assert selected_event is unpublished_events[0]
|
2021-07-07 11:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def mock_arrow_now(current_hour):
|
|
|
|
def mock_now():
|
|
|
|
return arrow.Arrow(year=2021, month=1, day=1, hour=current_hour)
|
|
|
|
|
|
|
|
with patch("arrow.now", mock_now):
|
|
|
|
yield
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [14, 15, 16, 18])
|
|
|
|
@pytest.mark.parametrize("publication_window", [(14, 19)])
|
|
|
|
def test_publishing_inner_window_true(mock_arrow_now, mock_publication_window):
|
|
|
|
"""
|
|
|
|
Testing that the window check correctly returns True when in an inner publishing window.
|
|
|
|
"""
|
2021-07-07 11:41:13 +02:00
|
|
|
assert SelectNextEventStrategy().is_in_publishing_window()
|
2021-07-07 11:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [2, 10, 11, 19])
|
|
|
|
@pytest.mark.parametrize("publication_window", [(14, 19)])
|
|
|
|
def test_publishing_inner_window_false(mock_arrow_now, mock_publication_window):
|
|
|
|
"""
|
|
|
|
Testing that the window check correctly returns False when not in an inner publishing window.
|
|
|
|
"""
|
2021-07-07 11:41:13 +02:00
|
|
|
assert not SelectNextEventStrategy().is_in_publishing_window()
|
2021-07-07 11:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [2, 10, 11, 19])
|
|
|
|
@pytest.mark.parametrize("publication_window", [(19, 14)])
|
|
|
|
def test_publishing_outer_window_true(mock_arrow_now, mock_publication_window):
|
|
|
|
"""
|
|
|
|
Testing that the window check correctly returns True when in an outer publishing window.
|
|
|
|
"""
|
2021-07-07 11:41:13 +02:00
|
|
|
assert SelectNextEventStrategy().is_in_publishing_window()
|
2021-07-07 11:19:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("current_hour", [14, 15, 16, 18])
|
|
|
|
@pytest.mark.parametrize("publication_window", [(19, 14)])
|
|
|
|
def test_publishing_outer_window_false(mock_arrow_now, mock_publication_window):
|
|
|
|
"""
|
|
|
|
Testing that the window check correctly returns False when not in an outer publishing window.
|
|
|
|
"""
|
2021-07-07 11:41:13 +02:00
|
|
|
assert not SelectNextEventStrategy().is_in_publishing_window()
|