Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Feature: Create an account on Studio
And I see the *Basic information* section containing the following fields: First name, Last name, Email, Password and Confirm password
And I see the *How do you plan on using Kolibri Studio (check all that apply)*, *Where do you plan to use Kolibri Studio? (check all that apply)*, *How did you hear about us?* and *I have read and agree to terms of service and the privacy policy* sections
And I see the *View Privacy Policy* and *View Terms of Service* links
When I input all the required fields
When I fill in all of the required fields
And I click the *Finish* button
Then I see the *Activation link sent* page
And I see *Thank you for creating an account! To complete the process, please check your email for the activation link we sent you.*
Expand All @@ -31,3 +31,10 @@ Feature: Create an account on Studio
And I click the *Finish* button
Then I see the *Activation link sent* page
And I see *Thank you for creating an account! To complete the process, please check your email for the activation link we sent you.*

Scenario: Attempt to create an account with an already existing email
Given I have filled in all the required fields
And I have entered an already existing email in the *Email* field
When I click the *Finish* button
Then I see the *Please fix the errors below* alert under the main heading
And I see an *An account with this email already exists* error notification under the *Email* field
16 changes: 16 additions & 0 deletions integration_testing/features/administration/admin-channels.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Feature: Administration - Manage channels
A Kolibri Studio administrator should be able to view and manage channels related data

Background:
Given Kolibri Studio is accessible at https://studio.learningequality.org/ or any of the test environments
And I am signed in as an administrator user
And I am at *Administration > Channels*

Scenario: See the channels table
When I look at the *Administration > Channels* page
Then I see the table with all of the available channels
And I see an *N channels* label with the total number of created channels
And I see a *Channel type* filter with *All channels* set as the default value
And I see a *Channel status* filter with *Live* set as the default value
And I see a *Language* filter with no selected value
And I see a *Search for a channel...* field
18 changes: 18 additions & 0 deletions integration_testing/features/administration/admin-users.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Feature: Administration - Manage users
A Kolibri Studio administrator should be able to view and manage users related data

Background:
Given Kolibri Studio is accessible at https://studio.learningequality.org/ or any of the test environments
And I am signed in as an administrator user
And I am at *Administration > Users*

Scenario: See the users table
When I look at the *Administration > Users* page
Then I see the table with all of the available users
And I see an *N users* label with the total number of registered users
And I see a *User type* filter with no selected default value
And I see a *Target location* filter with no selected default value
And I see a *Joined within* filter with *Any time* set as a default value
And I see an *Active within* filter with *Any time* set as a default value
And I see a *Search for a user...* field
And I see the *Has published a channel* and *Has Studio edits* checkboxes
21 changes: 21 additions & 0 deletions integration_testing/features/common/browser-compatibility.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Feature: Browser compatibility testing of all pages and resource types

Background:
Given I am signed in to Kolibri Studio
And I have created a channel with all supported resource types

Scenario: Browse through the available pages in all supported browsers
When I visit each page in the following browsers and operating systems
- Firefox/Chrome/Edge on Windows
- Firefox/Chrome on Linux
- Firefox/Chrome/Safari on Mac OS
Then I can see that each page is displayed correctly
And I can interact with all of the available options and features of each page

Scenario: View .mp3, .bloompub, .bloomd, .pdf, .epub, .h5p, html, .mp4, .webm, .kpub resources in all supported browsers
When I open one of the supported resource types in the following browsers and operating systems
- Firefox/Chrome/Edge on Windows
- Firefox/Chrome on Linux
- Firefox/Chrome/Safari on Mac OS
Then I can see that the resource is displayed correctly
And I can interact with all of the available options and features of each resource
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ User needs to be able to open and close the sidebar menu and the user menu
Scenario: Open and close the sidebar menu
When I click the hamburger menu button in the upper left screen corner
Then I see the sidebar menu
And I can see the following options: *Channels*, *Settings*, *Change language*, *Help and support*, *Sign out*, the LE logo, *© 2025 Learning Equality", *Give feedback*
And I can see the following options: *Notifications*, *Channels*, *Settings*, *Change language*, *Help and support*, *Sign out*, the LE logo, *© 2026 Learning Equality", *Give feedback*
And I can click any of the options inside
When I click the *X* button, or anywhere on the browser screen
Then I don't see the sidebar menu anymore

Scenario: Open and close the user menu
When I click the user menu button in the upper right screen corner
Then I see the user menu
And I can see the following options: *Settings*, *Change language*, *Help and support*, *Sign out*
And I can see the following options: *Notifications*, *Settings*, *Change language*, *Help and support*, *Sign out*
And I can click any of the options inside
When I click the user menu button again, or anywhere on the browser screen
Then I don't see the user menu anymore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,29 @@ Feature: Get channel token after publishing the channel
Scenario: Get channel token after publishing the channel
When I click on the ellipsis button in the top right corner
And I click on the *Get token* menu option
Then I see the *Copy channel token*
And I see the channel token e.g. hufim-lolib
Then I see the *Copy channel token* modal
And I see the channel token e.g. nakav-mafak
When I click on the copy button
Then I see a *Token copied* snackbar message
When I click the *Close* button
Then the modal closes

Scenario: Copy the channel token for a draft channel
Given I have published a draft version of the channel
When I click on the ellipsis button in the top right corner
And I click on the *Copy token for a draft channel* menu option
Then I see the *Preview your draft channel in Kolibri* modal
And I see the draft channel token e.g. nakav-mafak
When I click on the copy button
Then I see a *Token copied* snackbar message
When I click the *Close* button
Then the modal closes

Scenario: Share the channel token after publishing the channel
When I click the *Share* button
And I click on the *Share token* menu option
Then I see the *Copy channel token* modal
And I see the channel token e.g. nakav-mafak
When I click on the copy button
Then I see a *Token copied* snackbar message
When I click the *Close* button
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
Feature: Share channels
A user needs to be able to invite collaborators to view or edit channels
A user needs to be able to invite collaborators to edit or view channels

Background:
Given I am signed in to Studio
And I am on the channel editor page
When I click the *...* (options) button in the topbar
And select the *Share channel* option
Then I am at the *Sharing* tab for the channel
And I am at the channel editor page

Scenario: Invite collaborators with *Can edit* permissions
When I click the *Share* button
And select the *Invite collaborators* option #alternatively I can click the *...* (options) button in the top toolbar and select the *Share channel* option
Then I am at the *Sharing* tab for the channel
When I type the email of the person I want to invite
And I leave the preselected *Can edit* option in the drop-down
And I leave the default *Can edit* option in the drop-down
And I click the *Send invitation* button
Then the collaborator will be notified on their *My Channels* page, where they can accept or reject the pending invitation
And the collaborator will receive an email allowing them to accept/reject the pending invitation

Scenario: Invite collaborators with *Can view* permissions
Given I am at the *Sharing* tab for the channel
When I type the email of the person I want to invite
And I select the *Can view* option in the drop-down
And I click the *Send invitation* button
Expand Down
20 changes: 8 additions & 12 deletions integration_testing/features/studio-critical-workflows.feature
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@ Feature: Kolibri Studio critical workflows
Then the interface language changes to the selected language

Scenario: Open and close the sidebar menu
Given I am signed-in to Kolibri Studio
Given I am signed in to Studio
When I click the hamburger menu button in the upper left screen corner
Then I see the sidebar menu
And I can see the following options: *Channels*, *Settings*, *Change language*, *Help and support*, *Sign out*, the LE logo, *© 2026 Learning Equality*, *Give feedback*
And I can see the following options: *Notifications*, *Channels*, *Settings*, *Change language*, *Help and support*, *Sign out*, the LE logo, *© 2026 Learning Equality", *Give feedback*
And I can click any of the options inside
When I click the *X* button, or anywhere on the browser screen
Then I don't see the sidebar menu anymore

Scenario: Open and close the user menu
Given I am signed-in to Kolibri Studio
Given I am signed in to Studio
When I click the user menu button in the upper right screen corner
Then I see the user menu
And I can see the following options: *Settings*, *Change language*, *Help and support*, *Sign out*
And I can see the following options: *Notifications*, *Settings*, *Change language*, *Help and support*, *Sign out*
And I can click any of the options inside
When I click the user menu button again, or anywhere on the browser screen
Then I don't see the user menu anymore
Expand Down Expand Up @@ -287,11 +287,11 @@ Feature: Kolibri Studio critical workflows
Scenario: Invite collaborators with *Can edit* permissions
Given I am signed in to Studio
And I am at the channel editor page
When I click the *...* (options) button in the topbar
And select the *Share channel* option
When I click the *Share* button
And select the *Invite collaborators* option #alternatively I can click the *...* (options) button in the top toolbar and select the *Share channel* option
Then I am at the *Sharing* tab for the channel
When I type the email of the person I want to invite
And I don't change the preselected *Can edit* option in the drop-down
And I don't change the default *Can edit* option in the drop-down
And I click the *Send invitation* button
Then the collaborator will be notified on their *My channels* page, where they can accept or decline the pending invitation
And the collaborator will receive an email allowing them to accept/decline the pending invitation
Expand All @@ -303,11 +303,7 @@ Feature: Kolibri Studio critical workflows
And any changes made to the channel are visible by the other collaborators

Scenario: Invite collaborators with *Can view* permissions
Given I am signed in to Studio
And I am at the channel editor page
When I click the *...* (options) button in the topbar
And select the *Share channel* option
Then I am at the *Sharing* tab for the channel
Given I am at the *Sharing* tab for the channel
When I type the email of the person I want to invite
And I select the *Can view* option from the drop-down
And I click the *Send invitation* button
Expand Down
Loading
Loading