-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,6 +60,7 @@ | |
) | ||
from superset.commands.report.log_prune import AsyncPruneReportScheduleLogCommand | ||
from superset.exceptions import SupersetException | ||
from superset.key_value.models import KeyValueEntry | ||
from superset.models.core import Database | ||
from superset.models.dashboard import Dashboard | ||
from superset.models.slice import Slice | ||
|
@@ -82,6 +83,9 @@ | |
load_birth_names_dashboard_with_slices, # noqa: F401 | ||
load_birth_names_data, # noqa: F401 | ||
) | ||
from tests.integration_tests.fixtures.tabbed_dashboard import ( | ||
tabbed_dashboard, # noqa: F401 | ||
) | ||
from tests.integration_tests.fixtures.world_bank_dashboard import ( | ||
load_world_bank_dashboard_with_slices_module_scope, # noqa: F401 | ||
load_world_bank_data, # noqa: F401 | ||
|
@@ -91,6 +95,7 @@ | |
create_report_notification, | ||
CSV_FILE, | ||
DEFAULT_OWNER_EMAIL, | ||
reset_key_values, | ||
SCREENSHOT_FILE, | ||
TEST_ID, | ||
) | ||
|
@@ -1064,6 +1069,93 @@ def test_email_dashboard_report_schedule( | |
statsd_mock.assert_called_once_with("reports.email.send.ok", 1) | ||
|
||
|
||
@pytest.mark.usefixtures("tabbed_dashboard") | ||
@patch("superset.utils.screenshots.DashboardScreenshot.get_screenshot") | ||
@patch("superset.reports.notifications.email.send_email_smtp") | ||
@patch.dict( | ||
"superset.extensions.feature_flag_manager._feature_flags", ALERT_REPORT_TABS=True | ||
) | ||
def test_email_dashboard_report_schedule_with_tab_anchor( | ||
_email_mock, | ||
_screenshot_mock, | ||
): | ||
""" | ||
ExecuteReport Command: Test dashboard email report schedule with tab metadata | ||
""" | ||
with freeze_time("2020-01-01T00:00:00Z"): | ||
with patch.object(current_app.config["STATS_LOGGER"], "gauge") as statsd_mock: | ||
# get tabbed dashboard fixture | ||
dashboard = db.session.query(Dashboard).all()[1] | ||
# build report_schedule | ||
report_schedule = create_report_notification( | ||
email_target="[email protected]", | ||
dashboard=dashboard, | ||
extra={"dashboard": {"anchor": "TAB-L2AB"}}, | ||
) | ||
AsyncExecuteReportScheduleCommand( | ||
TEST_ID, report_schedule.id, datetime.utcnow() | ||
).run() | ||
|
||
# Assert logs are correct | ||
assert_log(ReportState.SUCCESS) | ||
statsd_mock.assert_called_once_with("reports.email.send.ok", 1) | ||
|
||
pl = ( | ||
db.session.query(KeyValueEntry) | ||
.order_by(KeyValueEntry.id.desc()) | ||
.first() | ||
) | ||
|
||
value = json.loads(pl.value) | ||
# test that report schedule extra json matches permalink state | ||
assert report_schedule.extra["dashboard"] == value["state"] | ||
|
||
# remove report_schedule | ||
cleanup_report_schedule(report_schedule) | ||
# remove permalink kvalues | ||
reset_key_values() | ||
|
||
|
||
@pytest.mark.usefixtures("tabbed_dashboard") | ||
@patch("superset.utils.screenshots.DashboardScreenshot.get_screenshot") | ||
@patch("superset.reports.notifications.email.send_email_smtp") | ||
@patch.dict( | ||
"superset.extensions.feature_flag_manager._feature_flags", ALERT_REPORT_TABS=False | ||
) | ||
def test_email_dashboard_report_schedule_disabled_tabs( | ||
_email_mock, | ||
_screenshot_mock, | ||
): | ||
""" | ||
ExecuteReport Command: Test dashboard email report schedule with tab metadata | ||
""" | ||
with freeze_time("2020-01-01T00:00:00Z"): | ||
with patch.object(current_app.config["STATS_LOGGER"], "gauge") as statsd_mock: | ||
# get tabbed dashboard fixture | ||
dashboard = db.session.query(Dashboard).all()[1] | ||
# build report_schedule | ||
report_schedule = create_report_notification( | ||
email_target="[email protected]", | ||
dashboard=dashboard, | ||
extra={"dashboard": {"anchor": "TAB-L2AB"}}, | ||
) | ||
AsyncExecuteReportScheduleCommand( | ||
TEST_ID, report_schedule.id, datetime.utcnow() | ||
).run() | ||
|
||
# Assert logs are correct | ||
assert_log(ReportState.SUCCESS) | ||
statsd_mock.assert_called_once_with("reports.email.send.ok", 1) | ||
|
||
permalinks = db.session.query(KeyValueEntry).all() | ||
|
||
# test that report schedule extra json matches permalink state | ||
assert len(permalinks) == 0 | ||
|
||
# remove report_schedule | ||
cleanup_report_schedule(report_schedule) | ||
|
||
|
||
@pytest.mark.usefixtures( | ||
"load_birth_names_dashboard_with_slices", | ||
"create_report_email_dashboard_force_screenshot", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters