1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2024-12-22 15:57:34 +00:00
vorta/tests/test_notifications.py
Manu 82844a17b4
Add macOS notarization, use Github Workflows for testing (#407)
* Improve macOS packaging, add notarization.
* Properly use QApplication while testing, remove workarounds.
* Use Github Workflows instead of Travis.
* Remove outdated test workaround.
2020-03-03 13:19:36 +08:00

20 lines
734 B
Python

import sys
import pytest
from PyQt5 import QtDBus
import vorta.borg
import vorta.models
import vorta.notifications
@pytest.mark.skipif(sys.platform != 'linux', reason="DBus notifications only on Linux")
def test_linux_background_notifications(qapp, mocker):
"""We can't see notifications, but we watch for exceptions and errors."""
notifier = vorta.notifications.VortaNotifications.pick()
assert isinstance(notifier, vorta.notifications.DBusNotifications)
notifier.deliver('Vorta Test', 'test notification', level='error')
mocker.spy(QtDBus.QDBusInterface, 'call')
notifier.deliver('Vorta Test', 'test notification', level='info') # fails if called.
assert QtDBus.QDBusInterface.call.call_count == 0