FreedomBox/plinth/modules/deluge/tests/test_functional.py
Sunil Mohan Adapa 80dff7bf9c
tests: functional: Re-organize step definitions and helper methods
- Move non-reusable app specific step definitions and helper methods into
<app>/tests/test_functional.py.

- Merge reusable helper methods into plinth.tests.functional

- Merge reusable step definitions into plinth.tests.functional.step_definitions

- avahi, datetime, ikiwiki: Reuse common methods to avoid repetition. Avoid
mapping from app nicknames to actual app names.

- deluge, transmission: Make a copy of sample.torrent for each app to avoid
clogging common place.

- Implement functional.visit() to simplify a lot of browser.visit() calls.

- Ensure that name of the mark on functional tests for an app is same as name of
the app. This will help with predicting the mark when running tests for a
particular app.

Tests performed:

- Run all functional tests.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
2020-05-22 22:52:40 +05:30

175 lines
5.4 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Functional, browser based tests for deluge app.
"""
import os
import time
from pytest_bdd import parsers, scenarios, then, when
from plinth.tests import functional
scenarios('deluge.feature')
@when('all torrents are removed from deluge')
def deluge_remove_all_torrents(session_browser):
_remove_all_torrents(session_browser)
@when('I upload a sample torrent to deluge')
def deluge_upload_sample_torrent(session_browser):
_upload_sample_torrent(session_browser)
@then(
parsers.parse(
'there should be {torrents_number:d} torrents listed in deluge'))
def deluge_assert_number_of_torrents(session_browser, torrents_number):
assert torrents_number == _get_number_of_torrents(session_browser)
def _get_active_window_title(browser):
"""Return the title of the currently active window in Deluge."""
return browser.evaluate_script(
'Ext.WindowMgr.getActive() ? Ext.WindowMgr.getActive().title : null')
def _ensure_logged_in(browser):
"""Ensure that password dialog is answered and we can interact."""
url = functional.base_url + '/deluge'
def service_is_available():
if browser.is_element_present_by_xpath(
'//h1[text()="Service Unavailable"]'):
functional.access_url(browser, 'deluge')
return False
return True
if browser.url != url:
browser.visit(url)
# After a backup restore, service may not be available immediately
functional.eventually(service_is_available)
time.sleep(1) # Wait for Ext.js application in initialize
if _get_active_window_title(browser) != 'Login':
return
browser.find_by_id('_password').first.fill('deluge')
_click_active_window_button(browser, 'Login')
assert functional.eventually(
lambda: _get_active_window_title(browser) != 'Login')
functional.eventually(browser.is_element_not_present_by_css,
args=['#add.x-item-disabled'], timeout=0.3)
def _open_connection_manager(browser):
"""Open the connection manager dialog if not already open."""
title = 'Connection Manager'
if _get_active_window_title(browser) == title:
return
browser.find_by_css('button.x-deluge-connection-manager').first.click()
functional.eventually(lambda: _get_active_window_title(browser) == title)
def _ensure_connected(browser):
"""Type the connection password if required and start Deluge daemon."""
_ensure_logged_in(browser)
# Change Default Password window appears once.
if _get_active_window_title(browser) == 'Change Default Password':
_click_active_window_button(browser, 'No')
assert functional.eventually(browser.is_element_not_present_by_css,
args=['#add.x-item-disabled'])
def _remove_all_torrents(browser):
"""Remove all torrents from deluge."""
_ensure_connected(browser)
while browser.find_by_css('#torrentGrid .torrent-name'):
browser.find_by_css('#torrentGrid .torrent-name').first.click()
# Click remove toolbar button
browser.find_by_id('remove').first.click()
# Remove window shows up
assert functional.eventually(
lambda: _get_active_window_title(browser) == 'Remove Torrent')
_click_active_window_button(browser, 'Remove With Data')
# Remove window disappears
assert functional.eventually(
lambda: not _get_active_window_title(browser))
def _get_active_window_id(browser):
"""Return the ID of the currently active window."""
return browser.evaluate_script('Ext.WindowMgr.getActive().id')
def _click_active_window_button(browser, button_text):
"""Click an action button in the active window."""
browser.execute_script('''
active_window = Ext.WindowMgr.getActive();
active_window.buttons.forEach(function (button) {{
if (button.text == "{button_text}")
button.btnEl.dom.click()
}})'''.format(button_text=button_text))
def _upload_sample_torrent(browser):
"""Upload a sample torrent into deluge."""
_ensure_connected(browser)
number_of_torrents = _get_number_of_torrents(browser)
# Click add toolbar button
browser.find_by_id('add').first.click()
# Add window appears
functional.eventually(
lambda: _get_active_window_title(browser) == 'Add Torrents')
file_path = os.path.join(os.path.dirname(__file__), 'data',
'sample.torrent')
if browser.find_by_id('fileUploadForm'): # deluge-web 2.x
browser.attach_file('file', file_path)
else: # deluge-web 1.x
browser.find_by_css('button.x-deluge-add-file').first.click()
# Add from file window appears
functional.eventually(
lambda: _get_active_window_title(browser) == 'Add from File')
# Attach file
browser.attach_file('file', file_path)
# Click Add
_click_active_window_button(browser, 'Add')
functional.eventually(
lambda: _get_active_window_title(browser) == 'Add Torrents')
# Click Add
time.sleep(1)
_click_active_window_button(browser, 'Add')
functional.eventually(
lambda: _get_number_of_torrents(browser) > number_of_torrents)
def _get_number_of_torrents(browser):
"""Return the number torrents currently in deluge."""
_ensure_connected(browser)
return len(browser.find_by_css('#torrentGrid .torrent-name'))