mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-04 08:53:42 +00:00
Domain name is not case sensitive, but Let's Encrypt certificate paths use lower-case domain name. Closes: #1964. Tests: Config functional tests passed. Signed-off-by: James Valleroy <jvalleroy@mailbox.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
28 lines
771 B
Gherkin
28 lines
771 B
Gherkin
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
@system @essential @config
|
|
Feature: Configuration
|
|
Configure the system.
|
|
|
|
Background:
|
|
Given I'm a logged in user
|
|
|
|
Scenario: Change hostname
|
|
When I change the hostname to mybox
|
|
Then the hostname should be mybox
|
|
|
|
Scenario: Change domain name
|
|
When I change the domain name to mydomain.example
|
|
Then the domain name should be mydomain.example
|
|
|
|
Scenario: Capitalized domain name
|
|
When I change the domain name to Mydomain.example
|
|
Then the domain name should be mydomain.example
|
|
|
|
Scenario: Change webserver home page
|
|
Given the syncthing application is installed
|
|
And the syncthing application is enabled
|
|
And the home page is syncthing
|
|
When I change the home page to plinth
|
|
Then the home page should be plinth
|