Sunil Mohan Adapa ca984a2b24
functional_tests: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:56 +02:00

36 lines
1.1 KiB
Gherkin

# SPDX-License-Identifier: AGPL-3.0-or-later
@apps @deluge @backups
Feature: Deluge BitTorrent Client
Run the Deluge BitTorrent client.
Background:
Given I'm a logged in user
Given the deluge application is installed
Scenario: Enable deluge application
Given the deluge application is disabled
When I enable the deluge application
Then the deluge site should be available
Scenario: Upload a torrent to deluge
Given the deluge application is enabled
When all torrents are removed from deluge
And I upload a sample torrent to deluge
Then there should be 1 torrents listed in deluge
Scenario: Backup and restore deluge
Given the deluge application is enabled
When all torrents are removed from deluge
And I upload a sample torrent to deluge
And I create a backup of the deluge app data
And all torrents are removed from deluge
And I restore the deluge app data backup
Then the deluge service should be running
And there should be 1 torrents listed in deluge
Scenario: Disable deluge application
Given the deluge application is enabled
When I disable the deluge application
Then the deluge site should not be available