-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CONTRIB-9485: Backport registration code to v3.0 (#624)
* Warning when test-install/test-moodle used
- Loading branch information
Showing
16 changed files
with
125 additions
and
39 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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,48 @@ | ||
@mod @mod_bigbluebuttonbn @javascript | ||
Feature: I can create a bigbluebuttonbn instance with default server | ||
In case the BigBlueButton server has not been configured | ||
As a user | ||
I want to see a notification message | ||
|
||
Background: Make sure that a course is created | ||
Given the following "courses" exist: | ||
| fullname | shortname | category | | ||
| Test course | Test course | 0 | | ||
And the following "users" exist: | ||
| username | firstname | lastname | email | | ||
| user1 | User1G1 | 1 | user1@example.com | | ||
| teacher1 | TeacherG1 | 1 | teacher1@example.com | | ||
And the following "course enrolments" exist: | ||
| user | course | role | | ||
| user1 | Test course | student | | ||
| teacher1 | Test course | editingteacher | | ||
And the following "activities" exist: | ||
| activity | course | name | type | | ||
| bigbluebuttonbn | Test course | BBB Instance name | 0 | | ||
| bigbluebuttonbn | Test course | BBB Instance name 2 | 1 | | ||
| bigbluebuttonbn | Test course | BBB Instance name 3 | 2 | | ||
And I am on the "Test course" "course" page logged in as "admin" | ||
|
||
Scenario Outline: Add an activity using default server for the three types of instance types | ||
When I turn editing mode on | ||
And I change window size to "large" | ||
And I add a "BigBlueButton" to section "1" | ||
And I select "<type>" from the "Instance type" singleselect | ||
Then I should see "Restrict access" | ||
|
||
Examples: | ||
| type | | ||
| Room with recordings | | ||
| Room only | | ||
| Recordings only | | ||
|
||
Scenario Outline: Users should see a notification message when accessing activities if the default server is used | ||
When I am on the "BBB Instance name" Activity page logged in as <user> | ||
Then "Join session" "link" should exist | ||
And I <messageexist> "<shouldseemessage>" | ||
|
||
Examples: | ||
| user | shouldseemessage | messageexist | | ||
| user1 | The use of default server credentials will soon expire.| should not see | | ||
| teacher1 | The use of default server credentials will soon expire.| should see | | ||
| admin | Default BigBlueButton plugin credentials will soon expire.| should see | |
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
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
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
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
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
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
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
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
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