-
Notifications
You must be signed in to change notification settings - Fork 699
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9130 from pcenov/optionsini-scenarios
Additional gherkin scenarios for the options.ini file
- Loading branch information
Showing
2 changed files
with
82 additions
and
23 deletions.
There are no files selected for viewing
82 changes: 82 additions & 0 deletions
82
...ion_testing/features/super-admin/commands/super-admin-customizes-kolibri-settings.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
Feature: Super admin customizes the Kolibri settings with the options.ini file | ||
Super admin needs to be able to customize the Kolibri settings by modifying the options.ini file | ||
|
||
Background: | ||
Given that the Kolibri server is not running | ||
And I have opened the "options.ini" file which is located inside the ".kolibri" folder | ||
And there are the following sections: [Cache], [Database], [Server], [Paths], [Urls], [Deployment], [Python], [Tasks], [Learn] | ||
|
||
Scenario: Change the default HTTP port | ||
When I add "HTTP_PORT = <port number>" under the [Deployment] section | ||
And I save my changes | ||
And I run the "kolibri start" command in the terminal or command prompt | ||
Then I see that the Kolibri server is running at <port number> port | ||
|
||
Scenario: Configure Kolibri to display a specific set of languages | ||
When I add "LANGUAGES = '<language intl_code>','<language intl_code>'" under the [Deployment] section | ||
And I save my changes | ||
And I run the "kolibri start" command in the terminal or command prompt | ||
And I go to the *Sign in* page and click the language selector | ||
Then I see only the specified languages in the language selector modal window | ||
And I can select a language and see the Kolibri UI displayed in the selected language | ||
|
||
Scenario: Change the default Content directory | ||
When I add "CONTENT_DIR = <content folder>" under the [Paths] section | ||
And I save my changes | ||
And I run the "kolibri manage content movedirectory <destination>" command in the terminal or command prompt | ||
Then I can see the content moved in the destination folder | ||
|
||
Scenario: Change the default central content base URL | ||
When I add "CENTRAL_CONTENT_BASE_URL = <content base URL>" under the [Urls] section | ||
And I save my changes | ||
And I run the "kolibri start" command in the terminal or command prompt | ||
And I go to *Device > Channels* | ||
And I click the *Import* button | ||
Then I see the *Select a source* modal | ||
And I see the *Kolibri Studio (online)* option selected | ||
When I click the *Continue* button | ||
Then I see the *Select resources for import* page | ||
And I can see all the available resources | ||
|
||
Scenario: Change the default Data portal syncing base URL | ||
Given my facility is registered to a Project on Kolibri Data Portal | ||
When I add "DATA_PORTAL_SYNCING_BASE_URL = <data portal URL>" under the [Urls] section | ||
And I save my changes | ||
And I run the "kolibri start" command in the terminal or command prompt | ||
And I go to *Device > Facilities* | ||
And I click the *Sync* button | ||
Then I see the *Select a source* modal | ||
When I select *Kolibri Data Portal* | ||
And I click *Continue* | ||
Then I see the list of facilities | ||
And I see a *Syncing* message under <facility> | ||
And I see an indeterminate spinner | ||
And I see there is a new task in *Device > Tasks* | ||
When the <facility> is done syncing | ||
Then I see a message under the <facility> *Last synced: just now* | ||
|
||
Scenario: Enable custom channel navigation | ||
When I add "ENABLE_CUSTOM_CHANNEL_NAV = True" under the [Learn] section | ||
And I save my changes | ||
And I run the "kolibri start" command in the terminal or command prompt | ||
And I go to *Device > Channels* | ||
And I click the *Import* button | ||
Then I see the *Select a source* modal | ||
And I see the *Kolibri Studio (online)* option selected | ||
When I click the *Continue* button | ||
Then I see the *Select resources for import* page | ||
And I can see all the available resources | ||
When I click *Import with token* | ||
Then I see the *Enter channel token* modal | ||
When I input a token for a channel with custom navigation such as "bovir-dubov" | ||
And I click *Continue* | ||
Then I see the imported channel | ||
When I go to the *Learn > Library* page | ||
And I click on the channel with custom navigation | ||
Then I am at the *Browse channel* modal window | ||
And I can interact with the contents of the channel | ||
|
||
|
||
Examples: | ||
| port number | language intl_code | content folder | content fallback folder | content base URL | | ||
| 8081 | en | C:\Users\IEUser\.kolibri\content | C:\Users\IEUser\.kolibri\| https://hotfixes.studio.learningequality.org/ | |
23 changes: 0 additions & 23 deletions
23
integration_testing/features/super-admin/commands/super-admin-set-kolibri-port.feature
This file was deleted.
Oops, something went wrong.