mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- The operations create backup, restore, delete and download are done based on the name of the backup archive. - Using select-all to uncheck all checkboxes for a minor speedup while creating backups. - Using the new name-based tests for backups for 3 apps Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> [sunil: Minor indentation fix] [sunil: Use older API for searching links in Splinter, no advantage with new] [sunil: Update patch for coturn and coquelicot] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org> test use name fixes Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
26 lines
851 B
Gherkin
26 lines
851 B
Gherkin
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
@security @essential @system
|
|
Feature: Security
|
|
Configure security options.
|
|
|
|
Background:
|
|
Given I'm a logged in user
|
|
|
|
Scenario: Disable restricted console logins
|
|
Given restricted console logins are enabled
|
|
When I disable restricted console logins
|
|
Then restricted console logins should be disabled
|
|
|
|
Scenario: Backup and restore security
|
|
When I enable restricted console logins
|
|
And I create a backup of the security app data with name test_security
|
|
And I disable restricted console logins
|
|
And I restore the security app data backup with name test_security
|
|
Then restricted console logins should be enabled
|
|
|
|
Scenario: Enable restricted console logins
|
|
Given restricted console logins are disabled
|
|
When I enable restricted console logins
|
|
Then restricted console logins should be enabled
|