FreedomBox/functional_tests/features/monkeysphere.feature
Joseph Nuthalapati 874dcdf282
monkeysphere: Skip functional tests until bugs are resolved
Currently, monkeysphere does not get installed properly unless FreedomBox
security is disabled. Skip these tests until the monkeysphere is patched
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=911907 .

Another way to enable these tests is to disable restricted logins (write steps
to do that) before running them.

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2018-10-29 23:22:40 -04:00

52 lines
2.1 KiB
Gherkin

#
# This file is part of FreedomBox.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# XXX: Enable tests after Debian Bug #911907 is fixed.
@apps @monkeysphere @backups @skip
Feature: Monkeysphere
Import and publish OpenPGP keys for SSH and HTTPS keys
Background:
Given I'm a logged in user
And the monkeysphere application is installed
And the domain name is set to mydomain.example
Scenario: Import SSH keys
When I import SSH key for mydomain.example in monkeysphere
Then the SSH key should imported for mydomain.example in monkeysphere
Scenario: Import HTTPS keys
When I import HTTPS key for mydomain.example in monkeysphere
Then the HTTPS key should imported for mydomain.example in monkeysphere
Scenario: Publish SSH keys
Given the SSH key for mydomain.example is imported in monkeysphere
Then I should be able to publish SSH key for mydomain.example in monkeysphere
Scenario: Publish HTTPS keys
Given the HTTPS key for mydomain.example is imported in monkeysphere
Then I should be able to publish HTTPS key for mydomain.example in monkeysphere
Scenario: Backup and restore monkeysphere
When I import SSH key for mydomain.example in monkeysphere
And I import HTTPS key for mydomain.example in monkeysphere
And I create a backup of the monkeysphere app data
And I export the monkeysphere app data backup
And I restore the monkeysphere app data backup
Then the SSH key should imported for mydomain.example in monkeysphere
And the HTTPS key should imported for mydomain.example in monkeysphere